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

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

--
-- Current Database: `velburry_ecom`
--


--
-- Table structure for table `addons`
--

DROP TABLE IF EXISTS `addons`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `addons` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf32_unicode_ci DEFAULT NULL,
  `unique_identifier` varchar(255) COLLATE utf32_unicode_ci DEFAULT NULL,
  `version` varchar(255) COLLATE utf32_unicode_ci DEFAULT NULL,
  `activated` int(1) NOT NULL DEFAULT '1',
  `image` varchar(1000) COLLATE utf32_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf32 COLLATE=utf32_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `addons`
--

LOCK TABLES `addons` WRITE;
/*!40000 ALTER TABLE `addons` DISABLE KEYS */;
INSERT INTO `addons` (`id`, `name`, `unique_identifier`, `version`, `activated`, `image`, `created_at`, `updated_at`) VALUES (1,'Point of Sale','pos_system','1.5',1,'pos_banner.jpg','2021-01-07 03:50:57','2021-01-07 03:50:57');
/*!40000 ALTER TABLE `addons` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `addresses`
--

DROP TABLE IF EXISTS `addresses`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `addresses` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `address` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `country` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `city` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `postal_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `phone` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `set_default` int(1) NOT NULL DEFAULT '0',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `addresses`
--

LOCK TABLES `addresses` WRITE;
/*!40000 ALTER TABLE `addresses` DISABLE KEYS */;
INSERT INTO `addresses` (`id`, `user_id`, `address`, `country`, `city`, `postal_code`, `phone`, `set_default`, `created_at`, `updated_at`) VALUES (1,12,'test','fsd','fsd','38000','1234',0,'2021-01-21 09:45:51','2021-01-21 09:45:51');
/*!40000 ALTER TABLE `addresses` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `app_settings`
--

DROP TABLE IF EXISTS `app_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `app_settings` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `logo` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `currency_id` int(11) DEFAULT NULL,
  `currency_format` char(10) COLLATE utf8_unicode_ci DEFAULT NULL,
  `facebook` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `twitter` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `instagram` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `youtube` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `google_plus` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `app_settings`
--

LOCK TABLES `app_settings` WRITE;
/*!40000 ALTER TABLE `app_settings` DISABLE KEYS */;
INSERT INTO `app_settings` (`id`, `name`, `logo`, `currency_id`, `currency_format`, `facebook`, `twitter`, `instagram`, `youtube`, `google_plus`, `created_at`, `updated_at`) VALUES (1,'Active eCommerce','uploads/logo/matggar.png',1,'symbol','https://facebook.com','https://twitter.com','https://instagram.com','https://youtube.com','https://google.com','2019-08-04 16:39:15','2019-08-04 16:39:18');
/*!40000 ALTER TABLE `app_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `attribute_translations`
--

DROP TABLE IF EXISTS `attribute_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `attribute_translations` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `attribute_id` bigint(20) NOT NULL,
  `name` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `lang` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `attribute_translations`
--

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

--
-- Table structure for table `attributes`
--

DROP TABLE IF EXISTS `attributes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `attributes` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf32_unicode_ci DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf32 COLLATE=utf32_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `attributes`
--

LOCK TABLES `attributes` WRITE;
/*!40000 ALTER TABLE `attributes` DISABLE KEYS */;
INSERT INTO `attributes` (`id`, `name`, `created_at`, `updated_at`) VALUES (1,'Size','2020-02-24 05:55:07','2020-02-24 05:55:07'),(2,'Fabric','2020-02-24 05:55:13','2020-02-24 05:55:13');
/*!40000 ALTER TABLE `attributes` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `banners`
--

DROP TABLE IF EXISTS `banners`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `banners` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `photo` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `url` varchar(1000) COLLATE utf8_unicode_ci DEFAULT NULL,
  `position` int(11) NOT NULL DEFAULT '1',
  `published` int(1) NOT NULL DEFAULT '0',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `banners`
--

LOCK TABLES `banners` WRITE;
/*!40000 ALTER TABLE `banners` DISABLE KEYS */;
INSERT INTO `banners` (`id`, `photo`, `url`, `position`, `published`, `created_at`, `updated_at`) VALUES (4,'uploads/banners/banner.jpg','#',1,1,'2019-03-12 05:58:23','2019-06-11 04:56:50'),(5,'uploads/banners/banner.jpg','#',1,1,'2019-03-12 05:58:41','2019-03-12 05:58:57'),(6,'uploads/banners/banner.jpg','#',2,1,'2019-03-12 05:58:52','2019-03-12 05:58:57'),(7,'uploads/banners/banner.jpg','#',2,1,'2019-05-26 05:16:38','2019-05-26 05:17:34'),(8,'uploads/banners/banner.jpg','#',2,1,'2019-06-11 05:00:06','2019-06-11 05:00:27'),(9,'uploads/banners/banner.jpg','#',1,1,'2019-06-11 05:00:15','2019-06-11 05:00:29'),(10,'uploads/banners/banner.jpg','#',1,0,'2019-06-11 05:00:24','2019-06-11 05:01:56');
/*!40000 ALTER TABLE `banners` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `brand_translations`
--

DROP TABLE IF EXISTS `brand_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `brand_translations` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `brand_id` bigint(20) NOT NULL,
  `name` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `lang` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `brand_translations`
--

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

--
-- Table structure for table `brands`
--

DROP TABLE IF EXISTS `brands`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `brands` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `logo` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
  `top` int(1) NOT NULL DEFAULT '0',
  `slug` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `meta_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `meta_description` text COLLATE utf8_unicode_ci,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `brands`
--

LOCK TABLES `brands` WRITE;
/*!40000 ALTER TABLE `brands` DISABLE KEYS */;
INSERT INTO `brands` (`id`, `name`, `logo`, `top`, `slug`, `meta_title`, `meta_description`, `created_at`, `updated_at`) VALUES (1,'Demo brand','uploads/brands/brand.jpg',1,'Demo-brand-12','Demo brand',NULL,'2019-03-12 06:05:56','2019-08-06 06:52:40'),(2,'Demo brand1','uploads/brands/brand.jpg',1,'Demo-brand1','Demo brand1',NULL,'2019-03-12 06:06:13','2019-08-06 06:07:26');
/*!40000 ALTER TABLE `brands` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `business_settings`
--

DROP TABLE IF EXISTS `business_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `business_settings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
  `value` longtext COLLATE utf8_unicode_ci,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=110 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `business_settings`
--

LOCK TABLES `business_settings` WRITE;
/*!40000 ALTER TABLE `business_settings` DISABLE KEYS */;
INSERT INTO `business_settings` (`id`, `type`, `value`, `created_at`, `updated_at`) VALUES (1,'home_default_currency','1','2018-10-16 01:35:52','2019-01-28 01:26:53'),(2,'system_default_currency','29','2018-10-16 01:36:58','2021-01-07 03:49:51'),(3,'currency_format','1','2018-10-17 03:01:59','2018-10-17 03:01:59'),(4,'symbol_format','2','2018-10-17 03:01:59','2021-01-14 08:13:53'),(5,'no_of_decimals','0','2018-10-17 03:01:59','2021-01-14 08:12:22'),(6,'product_activation','1','2018-10-28 01:38:37','2019-02-04 01:11:41'),(7,'vendor_system_activation','1','2018-10-28 07:44:16','2019-02-04 01:11:38'),(8,'show_vendors','1','2018-10-28 07:44:47','2019-02-04 01:11:13'),(9,'paypal_payment','0','2018-10-28 07:45:16','2019-01-31 05:09:10'),(10,'stripe_payment','0','2018-10-28 07:45:47','2018-11-14 01:51:51'),(11,'cash_payment','1','2018-10-28 07:46:05','2019-01-24 03:40:18'),(12,'payumoney_payment','0','2018-10-28 07:46:27','2019-03-05 05:41:36'),(13,'best_selling','1','2018-12-24 08:13:44','2019-02-14 05:29:13'),(14,'paypal_sandbox','0','2019-01-16 12:44:18','2019-01-16 12:44:18'),(15,'sslcommerz_sandbox','1','2019-01-16 12:44:18','2019-03-14 00:07:26'),(16,'sslcommerz_payment','0','2019-01-24 09:39:07','2019-01-29 06:13:46'),(17,'vendor_commission','20','2019-01-31 06:18:04','2019-04-13 06:49:26'),(18,'verification_form','[{\"type\":\"text\",\"label\":\"Your name\"},{\"type\":\"text\",\"label\":\"Shop name\"},{\"type\":\"text\",\"label\":\"Email\"},{\"type\":\"text\",\"label\":\"License No\"},{\"type\":\"text\",\"label\":\"Full Address\"},{\"type\":\"text\",\"label\":\"Phone Number\"},{\"type\":\"file\",\"label\":\"Tax Papers\"}]','2019-02-03 11:36:58','2019-02-16 06:14:42'),(19,'google_analytics','0','2019-02-06 12:22:35','2019-02-06 12:22:35'),(20,'facebook_login','1','2019-02-07 12:51:59','2021-01-21 06:25:28'),(21,'google_login','1','2019-02-07 12:52:10','2021-01-21 06:18:54'),(22,'twitter_login','0','2019-02-07 12:52:20','2019-02-08 02:32:56'),(23,'payumoney_payment','1','2019-03-05 11:38:17','2019-03-05 11:38:17'),(24,'payumoney_sandbox','1','2019-03-05 11:38:17','2019-03-05 05:39:18'),(36,'facebook_chat','0','2019-04-15 11:45:04','2019-04-15 11:45:04'),(37,'email_verification','0','2019-04-30 07:30:07','2019-04-30 07:30:07'),(38,'wallet_system','0','2019-05-19 08:05:44','2019-05-19 02:11:57'),(39,'coupon_system','0','2019-06-11 09:46:18','2019-06-11 09:46:18'),(40,'current_version','3.8','2019-06-11 09:46:18','2019-06-11 09:46:18'),(41,'instamojo_payment','0','2019-07-06 09:58:03','2019-07-06 09:58:03'),(42,'instamojo_sandbox','1','2019-07-06 09:58:43','2019-07-06 09:58:43'),(43,'razorpay','0','2019-07-06 09:58:43','2019-07-06 09:58:43'),(44,'paystack','0','2019-07-21 13:00:38','2019-07-21 13:00:38'),(45,'pickup_point','0','2019-10-17 11:50:39','2019-10-17 11:50:39'),(46,'maintenance_mode','0','2019-10-17 11:51:04','2019-10-17 11:51:04'),(47,'voguepay','0','2019-10-17 11:51:24','2019-10-17 11:51:24'),(48,'voguepay_sandbox','0','2019-10-17 11:51:38','2019-10-17 11:51:38'),(50,'category_wise_commission','0','2020-01-21 07:22:47','2020-01-21 07:22:47'),(51,'conversation_system','1','2020-01-21 07:23:21','2020-01-21 07:23:21'),(52,'guest_checkout_active','1','2020-01-22 07:36:38','2020-01-22 07:36:38'),(53,'facebook_pixel','0','2020-01-22 11:43:58','2020-01-22 11:43:58'),(55,'classified_product','0','2020-05-13 13:01:05','2020-05-13 13:01:05'),(56,'pos_activation_for_seller','1','2020-06-11 09:45:02','2020-06-11 09:45:02'),(57,'shipping_type','product_wise_shipping','2020-07-01 13:49:56','2020-07-01 13:49:56'),(58,'flat_rate_shipping_cost','0','2020-07-01 13:49:56','2020-07-01 13:49:56'),(59,'shipping_cost_admin','0','2020-07-01 13:49:56','2020-07-01 13:49:56'),(60,'payhere_sandbox','0','2020-07-30 18:23:53','2020-07-30 18:23:53'),(61,'payhere','0','2020-07-30 18:23:53','2020-07-30 18:23:53'),(62,'google_recaptcha','0','2020-08-17 07:13:37','2020-08-17 07:13:37'),(63,'ngenius','0','2020-09-22 10:58:21','2020-09-22 10:58:21'),(64,'header_logo','1979','2020-11-16 07:26:36','2021-01-22 05:13:10'),(65,'show_language_switcher',NULL,'2020-11-16 07:26:36','2021-01-13 01:12:14'),(66,'show_currency_switcher',NULL,'2020-11-16 07:26:36','2021-01-13 01:12:14'),(67,'header_stikcy','on','2020-11-16 07:26:36','2020-11-16 07:26:36'),(68,'footer_logo','1852','2020-11-16 07:26:36','2021-01-21 08:40:57'),(69,'about_us_description',NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(70,'contact_address','Millat Chowk Faisalabad, Pakistan','2020-11-16 07:26:36','2021-01-11 01:38:34'),(71,'contact_phone','+92 300 4192038','2020-11-16 07:26:36','2021-01-11 01:38:34'),(72,'contact_email','support@velburry.com','2020-11-16 07:26:36','2021-01-11 01:38:34'),(73,'widget_one_labels','[\"Delivery and Shipping\",\"FAQ\"]','2020-11-16 07:26:36','2021-01-14 04:19:56'),(74,'widget_one_links','[\"https:\\/\\/www.velburry.com\\/deliveryandshipping\",\"https:\\/\\/www.velburry.com\\/FAQ\"]','2020-11-16 07:26:36','2021-01-14 04:19:56'),(75,'widget_one','CUSTOMER SERVICES','2020-11-16 07:26:36','2021-01-14 04:19:56'),(76,'frontend_copyright_text',NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(77,'show_social_links',NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(78,'facebook_link',NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(79,'twitter_link',NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(80,'instagram_link',NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(81,'youtube_link',NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(82,'linkedin_link',NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(83,'payment_method_images',NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(84,'home_slider_images','[\"1082\",\"1078\",\"1110\",\"1114\"]','2020-11-16 07:26:36','2021-01-14 05:38:51'),(85,'home_slider_links','[\"https:\\/\\/www.velburry.com\\/category\\/Perfumes-dHHjn\",\"https:\\/\\/www.velburry.com\\/category\\/Skin-Care-LZYrL\",null,null]','2020-11-16 07:26:36','2021-01-14 05:38:51'),(86,'home_banner1_images','[\"2064\",\"2068\",\"2067\"]','2020-11-16 07:26:36','2021-01-23 07:36:30'),(87,'home_banner1_links','[null,null,null]','2020-11-16 07:26:36','2021-01-11 07:27:46'),(88,'home_banner2_images','[\"2068\",\"2067\",\"2064\"]','2020-11-16 07:26:36','2021-01-23 07:36:49'),(89,'home_banner2_links','[null,null,null]','2020-11-16 07:26:36','2021-01-23 04:50:09'),(90,'home_categories','[\"51\",\"19\",\"24\",\"29\"]','2020-11-16 07:26:36','2021-01-23 04:52:23'),(91,'top10_categories','[\"15\",\"16\",\"7\",\"11\",\"19\",\"24\",\"51\"]','2020-11-16 07:26:36','2021-01-23 04:53:25'),(92,'top10_brands','[\"1\"]','2020-11-16 07:26:36','2021-01-11 07:27:03'),(93,'website_name','Online Shopping Store','2020-11-16 07:26:36','2021-01-11 01:49:44'),(94,'site_motto','Velburry','2020-11-16 07:26:36','2021-01-23 07:44:16'),(95,'site_icon',NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(96,'base_color','#E62E04','2020-11-16 07:26:36','2021-01-21 08:26:23'),(97,'base_hov_color','#E62E04','2020-11-16 07:26:36','2021-01-21 08:26:23'),(98,'meta_title',NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(99,'meta_description',NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(100,'meta_keywords',NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(101,'meta_image',NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(102,'site_name',NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(103,'system_logo_white',NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(104,'system_logo_black',NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(105,'timezone',NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(106,'admin_login_background',NULL,'2020-11-16 07:26:36','2020-11-16 07:26:36'),(107,'iyzico_sandbox','1','2020-12-30 16:45:56','2020-12-30 16:45:56'),(108,'iyzico','1','2020-12-30 16:45:56','2020-12-30 16:45:56'),(109,'decimal_separator','1','2020-12-30 16:45:56','2020-12-30 16:45:56');
/*!40000 ALTER TABLE `business_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `carts`
--

DROP TABLE IF EXISTS `carts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `carts` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(11) DEFAULT NULL,
  `product_id` int(11) DEFAULT NULL,
  `variation` text COLLATE utf8_unicode_ci,
  `price` double(20,2) DEFAULT NULL,
  `tax` double(20,2) DEFAULT NULL,
  `shipping_cost` double(20,2) DEFAULT NULL,
  `quantity` int(11) NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `carts`
--

LOCK TABLES `carts` WRITE;
/*!40000 ALTER TABLE `carts` DISABLE KEYS */;
INSERT INTO `carts` (`id`, `user_id`, `product_id`, `variation`, `price`, `tax`, `shipping_cost`, `quantity`, `created_at`, `updated_at`) VALUES (2,12,768,'32',2080.00,0.00,0.00,1,'2021-01-21 09:49:40','2021-01-21 09:49:40');
/*!40000 ALTER TABLE `carts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `categories`
--

DROP TABLE IF EXISTS `categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `categories` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `parent_id` int(11) DEFAULT '0',
  `level` int(11) NOT NULL DEFAULT '0',
  `name` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `commision_rate` double(8,2) NOT NULL DEFAULT '0.00',
  `banner` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
  `icon` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
  `featured` int(1) NOT NULL DEFAULT '0',
  `top` int(1) NOT NULL DEFAULT '0',
  `digital` int(1) NOT NULL DEFAULT '0',
  `slug` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `meta_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `meta_description` text COLLATE utf8_unicode_ci,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=197 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `categories`
--

LOCK TABLES `categories` WRITE;
/*!40000 ALTER TABLE `categories` DISABLE KEYS */;
INSERT INTO `categories` (`id`, `parent_id`, `level`, `name`, `commision_rate`, `banner`, `icon`, `featured`, `top`, `digital`, `slug`, `meta_title`, `meta_description`, `created_at`, `updated_at`) VALUES (6,0,0,'Fragrance',0.00,'1189','1096',1,0,0,'fragrance-kbo7b21',NULL,NULL,'2021-01-14 15:27:27','2021-01-14 10:27:27'),(7,0,0,'School Accessories',0.00,'1186','1102',1,0,0,'school-accessories-kbo7b21',NULL,NULL,'2021-01-14 15:28:50','2021-01-14 10:28:50'),(8,7,1,'Water bottles',0.00,'1703',NULL,0,0,0,'water-bottles-kbo7b22',NULL,NULL,'2021-01-19 14:00:03','2021-01-19 09:00:03'),(9,7,1,'Lunch Boxes',0.00,'1705',NULL,0,0,0,'lunch-boxes-kbo7b22',NULL,NULL,'2021-01-19 14:03:08','2021-01-19 09:03:08'),(10,7,1,'Bottles & Lunch Boxes',0.00,'1704',NULL,0,0,0,'bottles-&-lunch boxes-kbo7b22',NULL,NULL,'2021-01-19 14:01:24','2021-01-19 09:01:24'),(11,0,0,'Diapers',0.00,'1182','1183',1,0,0,'diapers-kbo7b21',NULL,NULL,'2021-01-14 15:30:02','2021-01-14 10:30:02'),(15,6,1,'Men\'s Perfume',0.00,'1706',NULL,0,0,0,'men\'s-perfume-kbo7b22',NULL,NULL,'2021-01-19 14:24:59','2021-01-19 09:24:59'),(16,6,1,'women\'s perfume',0.00,'1708',NULL,0,0,0,'women\'s-perfume-kbo7b22',NULL,NULL,'2021-01-19 14:45:31','2021-01-19 09:45:31'),(17,6,1,'Men\'s body Spray',0.00,'1160',NULL,0,0,0,'men\'s-body-spray-kbo7b22',NULL,NULL,'2021-01-14 15:48:43','2021-01-14 10:48:43'),(18,6,1,'Women Body Spray',0.00,'1710',NULL,0,0,0,'women-body-spray-kbo7b22',NULL,NULL,'2021-01-19 15:06:05','2021-01-19 10:06:05'),(19,0,0,'Hair Care',0.00,'1181','1184',1,0,0,'hair-care-kbo7b21',NULL,NULL,'2021-01-14 15:34:34','2021-01-14 10:34:34'),(24,0,0,'Skin Care',0.00,'1179','1185',1,0,0,'skin-care-kbo7b21',NULL,NULL,'2021-01-14 15:35:08','2021-01-14 10:35:08'),(29,11,1,'Pampers',0.00,'1168',NULL,0,0,0,'college-uniforms-kbo7b21',NULL,NULL,'2021-01-14 15:14:35','2021-01-14 10:14:35'),(30,11,1,'Molfix Diapers',0.00,'1167',NULL,0,0,0,'molfix-diapers-kbo7b22',NULL,NULL,'2021-01-14 16:00:30','2021-01-14 11:00:30'),(31,11,1,'Canbebe Diapers',0.00,'1093',NULL,0,0,0,'canbebe-diapers-kbo7b22',NULL,NULL,'2021-01-14 15:59:58','2021-01-14 10:59:58'),(39,11,1,'Rocket Diapers',0.00,'1165',NULL,0,0,0,'rocket-diapers-kbo7b22',NULL,NULL,'2021-01-14 16:01:07','2021-01-14 11:01:07'),(48,8,2,'Lion Star Water bottles',0.00,NULL,NULL,0,0,0,'Lion-Star-Water-bottles-u7gqg',NULL,NULL,'2021-01-13 07:11:36','2021-01-13 07:11:36'),(49,9,2,'Lion Star Lunch Box',0.00,NULL,NULL,0,0,0,'Lion-Star-Lunch-Box-NNptT',NULL,NULL,'2021-01-13 07:12:17','2021-01-13 07:12:17'),(50,10,2,'Lion Star water bottle & lunch Box',0.00,NULL,NULL,0,0,0,'Lion-Star-water-bottle--lunch-Box-wgunV',NULL,NULL,'2021-01-13 07:14:10','2021-01-13 07:14:10'),(51,0,0,'School Uniforms',0.00,'1180','1187',1,0,0,'school-uniforms-kbo7b21',NULL,NULL,'2021-01-14 15:32:38','2021-01-14 10:32:38'),(52,51,1,'Divisional Public School',0.00,'1677',NULL,0,0,0,'divisional-public-school-kbo7b22',NULL,NULL,'2021-01-19 08:30:46','2021-01-19 03:28:20'),(53,52,2,'DPS - Shirts',0.00,NULL,NULL,0,0,0,'uniforms-x0qnr',NULL,NULL,'2021-01-14 08:39:11','2021-01-14 03:39:11'),(54,54,-288438,'DPS - Pents',0.00,'1178','1188',0,0,0,'general-uniforms-kbo7b29',NULL,NULL,'2021-01-16 10:38:11','2021-01-16 05:38:11'),(55,52,2,'DPS - Girls uniform',0.00,NULL,NULL,0,0,0,'DPS---Girls-uniform-I7W1u',NULL,NULL,'2021-01-14 03:39:49','2021-01-14 03:39:49'),(56,52,2,'DPS - Accessories',0.00,NULL,NULL,0,0,0,'DPS---Accessories-C88jw',NULL,NULL,'2021-01-14 03:40:23','2021-01-14 03:40:23'),(57,127,1,'Punjab group of colleges',0.00,'1658',NULL,0,0,0,'punjab-group-of-colleges-kbo7b22',NULL,NULL,'2021-01-19 13:05:04','2021-01-19 08:05:04'),(58,57,2,'PGC - Shirts',0.00,NULL,NULL,0,0,0,'PGC---Shirts-FKH0C',NULL,NULL,'2021-01-14 03:42:15','2021-01-14 03:42:15'),(59,57,2,'PGC - Pents',0.00,NULL,NULL,0,0,0,'PGC---Pents-tAXm4',NULL,NULL,'2021-01-14 03:43:24','2021-01-14 03:43:24'),(60,57,2,'PGC - Girls Uniform',0.00,NULL,NULL,0,0,0,'PGC---Girls-Uniform-Vxnqg',NULL,NULL,'2021-01-14 03:45:17','2021-01-14 03:45:17'),(61,57,2,'PGC - Accessories',0.00,NULL,NULL,0,0,0,'PGC---Accessories-U8dvr',NULL,NULL,'2021-01-14 03:45:46','2021-01-14 03:45:46'),(62,127,1,'Kips College',0.00,'1663',NULL,0,0,0,'kips-college-kbo7b22',NULL,NULL,'2021-01-19 13:06:00','2021-01-19 08:06:00'),(63,62,2,'KC - Shirts',0.00,NULL,NULL,0,0,0,'KC---Shirts-lX7d9',NULL,NULL,'2021-01-14 03:48:27','2021-01-14 03:48:27'),(64,62,2,'KC - Pents',0.00,NULL,NULL,0,0,0,'KC---Pents-XaGuf',NULL,NULL,'2021-01-14 03:49:18','2021-01-14 03:49:18'),(65,62,2,'KC - Girls Uniform',0.00,NULL,NULL,0,0,0,'KC---Girls-Uniform-KeBg2',NULL,NULL,'2021-01-14 03:49:41','2021-01-14 03:49:41'),(66,62,2,'KC - Accessories',0.00,NULL,NULL,0,0,0,'KC---Accessories-m6ztu',NULL,NULL,'2021-01-14 03:50:10','2021-01-14 03:50:10'),(67,127,1,'Superior college',0.00,'1662',NULL,0,0,0,'superior-college-kbo7b22',NULL,NULL,'2021-01-19 13:07:42','2021-01-19 08:07:42'),(68,67,2,'SC - Shirts',0.00,NULL,NULL,0,0,0,'SC---Shirts-ynQrr',NULL,NULL,'2021-01-14 03:51:21','2021-01-14 03:51:21'),(69,67,2,'SC - Pents',0.00,NULL,NULL,0,0,0,'SC---Pents-Escdp',NULL,NULL,'2021-01-14 03:53:31','2021-01-14 03:53:31'),(70,67,2,'SC - Girls Uniform',0.00,NULL,NULL,0,0,0,'SC---Girls-Uniform-hnd3O',NULL,NULL,'2021-01-14 03:54:20','2021-01-14 03:54:20'),(71,67,2,'SC - Accessories',0.00,NULL,NULL,0,0,0,'SC---Accessories-WgivG',NULL,NULL,'2021-01-14 03:54:45','2021-01-14 03:54:45'),(72,51,1,'Allied School',0.00,'1671',NULL,0,0,0,'allied-school-kbo7b22',NULL,NULL,'2021-01-19 10:43:08','2021-01-19 05:43:08'),(73,72,2,'AS - shirts',0.00,NULL,NULL,0,0,0,'AS---shirts-t11xR',NULL,NULL,'2021-01-14 03:56:50','2021-01-14 03:56:50'),(74,72,2,'AS - Pents',0.00,NULL,NULL,0,0,0,'AS---Pents-CtlEO',NULL,NULL,'2021-01-14 03:57:09','2021-01-14 03:57:09'),(75,72,2,'AS - Girls Uniform',0.00,NULL,NULL,0,0,0,'AS---Girls-Uniform-eElIc',NULL,NULL,'2021-01-14 03:57:40','2021-01-14 03:57:40'),(76,72,2,'AS - Accessories',0.00,NULL,NULL,0,0,0,'AS---Accessories-XiRlX',NULL,NULL,'2021-01-14 03:58:34','2021-01-14 03:58:34'),(77,51,1,'Dar-e-Arqam School',0.00,'1667',NULL,0,0,0,'dar-e-arqam-school-kbo7b22',NULL,NULL,'2021-01-19 10:45:01','2021-01-19 05:45:01'),(78,77,2,'DA- shirts',0.00,NULL,NULL,0,0,0,'DA--shirts-3dWei',NULL,NULL,'2021-01-14 04:01:53','2021-01-14 04:01:53'),(79,77,2,'DA - Pents',0.00,NULL,NULL,0,0,0,'DA---Pents-LFcEq',NULL,NULL,'2021-01-14 04:02:20','2021-01-14 04:02:20'),(80,77,2,'DA - Girls Uniform',0.00,NULL,NULL,0,0,0,'DA---Girls-Uniform-xR1NE',NULL,NULL,'2021-01-14 04:12:22','2021-01-14 04:12:22'),(81,77,2,'DA - Accessories',0.00,NULL,NULL,0,0,0,'DA---Accessories-C04uN',NULL,NULL,'2021-01-14 04:12:47','2021-01-14 04:12:47'),(82,51,1,'The Arqam School',0.00,'1670',NULL,0,0,0,'the-arqam-school-kbo7b22',NULL,NULL,'2021-01-19 10:45:40','2021-01-19 05:45:40'),(83,82,2,'TAS - Shirts',0.00,NULL,NULL,0,0,0,'TAS---Shirts-Dk4pY',NULL,NULL,'2021-01-14 04:14:33','2021-01-14 04:14:33'),(84,82,2,'TAS - Pents',0.00,NULL,NULL,0,0,0,'TAS---Pents-Ze7ye',NULL,NULL,'2021-01-14 04:14:50','2021-01-14 04:14:50'),(85,82,2,'TAS - Girls uniform',0.00,NULL,NULL,0,0,0,'TAS---Girls-uniform-XVI3q',NULL,NULL,'2021-01-14 04:15:19','2021-01-14 04:15:19'),(86,82,2,'TAS - Accessories',0.00,NULL,NULL,0,0,0,'TAS---Accessories-LEwsR',NULL,NULL,'2021-01-14 04:15:43','2021-01-14 04:15:43'),(87,51,1,'The Educator School',0.00,'1666',NULL,0,0,0,'the-educator-school-kbo7b22',NULL,NULL,'2021-01-19 10:49:25','2021-01-19 05:49:25'),(88,87,2,'TES - Shirts',0.00,NULL,NULL,0,0,0,'TES---Shirts-OqNKy',NULL,NULL,'2021-01-14 04:16:58','2021-01-14 04:16:58'),(89,87,2,'TES - Pents',0.00,NULL,NULL,0,0,0,'TES---Pents-8vdAD',NULL,NULL,'2021-01-14 04:17:18','2021-01-14 04:17:18'),(90,87,2,'TES - Girls Uniform',0.00,NULL,NULL,0,0,0,'TES---Girls-Uniform-HUogn',NULL,NULL,'2021-01-14 04:17:46','2021-01-14 04:17:46'),(91,87,2,'TES - Accessories',0.00,NULL,NULL,0,0,0,'TES---Accessories-n7qV4',NULL,NULL,'2021-01-14 04:18:22','2021-01-14 04:18:22'),(97,51,1,'Punjab Worker Welfare School',0.00,'1672',NULL,0,0,0,'punjab-worker-welfare-school-kbo7b22',NULL,NULL,'2021-01-19 10:55:39','2021-01-19 05:55:39'),(98,97,2,'PWWS - Shirts',0.00,NULL,NULL,0,0,0,'PWWS---Shirts-7wQtI',NULL,NULL,'2021-01-14 04:23:37','2021-01-14 04:23:37'),(99,97,2,'PWWS - Pents',0.00,NULL,NULL,0,0,0,'PWWS---Pents-ZtlAZ',NULL,NULL,'2021-01-14 04:24:14','2021-01-14 04:24:14'),(100,97,2,'PWWS - Girls Uniform',0.00,NULL,NULL,0,0,0,'PWWS---Girls-Uniform-T9UXz',NULL,NULL,'2021-01-14 04:24:35','2021-01-14 04:24:35'),(101,97,2,'PWWS - Accessories',0.00,NULL,NULL,0,0,0,'PWWS---Accessories-OeUv5',NULL,NULL,'2021-01-14 04:25:02','2021-01-14 04:25:02'),(107,51,1,'Divisional Model School',0.00,'1664',NULL,0,0,0,'general-school-uniforms-0djaw',NULL,NULL,'2021-01-19 10:58:12','2021-01-19 05:58:12'),(108,107,2,'DMC - Shirts',0.00,NULL,NULL,0,0,0,'DMC---Shirts-0d3gh',NULL,NULL,'2021-01-14 04:28:46','2021-01-14 04:28:46'),(109,107,2,'DMC - Pents',0.00,NULL,NULL,0,0,0,'DMC---Pents-wGWa3',NULL,NULL,'2021-01-14 04:29:46','2021-01-14 04:29:46'),(110,107,2,'DMC - Girls Uniform',0.00,NULL,NULL,0,0,0,'DMC---Girls-Uniform-ihkF6',NULL,NULL,'2021-01-14 04:30:15','2021-01-14 04:30:15'),(111,107,2,'DMC - Accessories',0.00,NULL,NULL,0,0,0,'DMC---Accessories-vxqMI',NULL,NULL,'2021-01-14 04:30:45','2021-01-14 04:30:45'),(112,51,1,'Sunny Ideal School',0.00,'1668',NULL,0,0,0,'sunny-ideal-school-kbo7b22',NULL,NULL,'2021-01-19 10:58:45','2021-01-19 05:58:45'),(113,112,2,'SIS - Shirts',0.00,NULL,NULL,0,0,0,'SIS---Shirts-gYqT3',NULL,NULL,'2021-01-14 04:31:48','2021-01-14 04:31:48'),(114,112,2,'SIS - Pents',0.00,NULL,NULL,0,0,0,'SIS---Pents-j6Sux',NULL,NULL,'2021-01-14 04:32:08','2021-01-14 04:32:08'),(115,112,2,'SIS - Girls Uniform',0.00,NULL,NULL,0,0,0,'SIS---Girls-Uniform-f7slP',NULL,NULL,'2021-01-14 04:32:38','2021-01-14 04:32:38'),(116,112,2,'SIS - Accessories',0.00,NULL,NULL,0,0,0,'SIS---Accessories-PDr08',NULL,NULL,'2021-01-14 04:32:58','2021-01-14 04:32:58'),(117,51,1,'City High School',0.00,'1659',NULL,0,0,0,'city-high-school-kbo7b22',NULL,NULL,'2021-01-19 10:59:28','2021-01-19 05:59:28'),(118,117,2,'CHS - Shirts',0.00,NULL,NULL,0,0,0,'CHS---Shirts-PCkH6',NULL,NULL,'2021-01-14 04:35:51','2021-01-14 04:35:51'),(119,117,2,'CHS - Pents',0.00,NULL,NULL,0,0,0,'CHS---Pents-bI3ez',NULL,NULL,'2021-01-14 04:36:11','2021-01-14 04:36:11'),(120,117,2,'CHS - Girls Uniform',0.00,NULL,NULL,0,0,0,'CHS---Girls-Uniform-sq3Cn',NULL,NULL,'2021-01-14 04:36:39','2021-01-14 04:36:39'),(121,117,2,'CHS - Accessories',0.00,NULL,NULL,0,0,0,'CHS---Accessories-as7op',NULL,NULL,'2021-01-14 04:37:08','2021-01-14 04:37:08'),(122,51,1,'The ACE School System',0.00,'1657',NULL,0,0,0,'the-ace-school-system-kbo7b22',NULL,NULL,'2021-01-19 10:59:59','2021-01-19 05:59:59'),(123,122,2,'TASS - Shirst',0.00,NULL,NULL,0,0,0,'TASS---Shirst-TMVBM',NULL,NULL,'2021-01-14 04:40:45','2021-01-14 04:40:45'),(124,122,2,'TASS - Pents',0.00,NULL,NULL,0,0,0,'TASS---Pents-mRBsG',NULL,NULL,'2021-01-14 04:41:05','2021-01-14 04:41:05'),(125,122,2,'TASS - Girls Uniform',0.00,NULL,NULL,0,0,0,'TASS---Girls-Uniform-VLXxm',NULL,NULL,'2021-01-14 04:41:30','2021-01-14 04:41:30'),(126,122,2,'TASS - Accessories',0.00,NULL,NULL,0,0,0,'TASS---Accessories-qtZbb',NULL,NULL,'2021-01-14 04:41:56','2021-01-14 04:41:56'),(127,0,0,'College Uniforms',0.00,'1178','1188',1,0,0,'college-uniforms-kbo7b29',NULL,NULL,'2021-01-14 16:28:22','2021-01-14 11:28:22'),(128,127,1,'Aspire Group of College',0.00,'1669',NULL,0,0,0,'aspire-group-of-college-kbo7b22',NULL,NULL,'2021-01-19 13:08:56','2021-01-19 08:08:56'),(129,128,2,'AC- Shirts',0.00,NULL,NULL,0,0,0,'AC--Shirts-eAMtV',NULL,NULL,'2021-01-14 07:07:54','2021-01-14 07:07:54'),(130,128,2,'AC- Pents',0.00,NULL,NULL,0,0,0,'AC--Pents-pntw6',NULL,NULL,'2021-01-14 07:08:13','2021-01-14 07:08:13'),(131,128,2,'AC- Girls Uniform',0.00,NULL,NULL,0,0,0,'AC--Girls-Uniform-drkQ2',NULL,NULL,'2021-01-14 07:08:33','2021-01-14 07:08:33'),(132,128,2,'AC- Accessories',0.00,NULL,NULL,0,0,0,'AC--Accessories-wc25J',NULL,NULL,'2021-01-14 07:08:54','2021-01-14 07:08:54'),(134,51,1,'The Smart School',0.00,'1665',NULL,0,0,0,'the-smart-school-kbo7b22',NULL,NULL,'2021-01-19 11:00:36','2021-01-19 06:00:36'),(135,134,2,'TSS - Shirts',0.00,NULL,NULL,0,0,0,'TSS---Shirts-QZXGz',NULL,NULL,'2021-01-14 08:50:42','2021-01-14 08:50:42'),(136,134,2,'TSS - Pents',0.00,NULL,NULL,0,0,0,'TSS---Pents-LlaA8',NULL,NULL,'2021-01-14 08:51:07','2021-01-14 08:51:07'),(137,134,2,'TSS - Girls Uniform',0.00,NULL,NULL,0,0,0,'college-uniforms-kbo7b',NULL,NULL,'2021-01-14 13:52:09','2021-01-14 08:52:09'),(138,134,2,'TSS - Accessories',0.00,NULL,NULL,0,0,0,'college-uniforms-kbo7b',NULL,NULL,'2021-01-14 13:52:49','2021-01-14 08:52:49'),(139,127,1,'Islamia College for Boys',0.00,'1654',NULL,0,0,0,'islamia-college-for-boys-usxgv',NULL,NULL,'2021-01-19 13:09:45','2021-01-19 08:09:45'),(140,139,2,'IC - Shirts',0.00,NULL,NULL,0,0,0,'IC---Shirts-Bm6VY',NULL,NULL,'2021-01-15 05:54:42','2021-01-15 05:54:42'),(141,139,2,'IC - Pents',0.00,NULL,NULL,0,0,0,'IC---Pents-vYiOl',NULL,NULL,'2021-01-15 05:55:01','2021-01-15 05:55:01'),(142,0,0,'General Uniforms(School+College+University)',0.00,'1693','1697',1,0,0,'general-uniforms-kbo7b229',NULL,NULL,'2021-01-19 13:24:29','2021-01-19 08:24:29'),(143,142,1,'General Uniform Shirts',0.00,'1700','1188',0,0,0,'general-uniforms-kbo7b29',NULL,NULL,'2021-01-19 13:41:31','2021-01-19 08:41:31'),(144,142,1,'General Uniform Pents',0.00,'1701','1188',0,0,0,'general-uniforms-kbo7b29',NULL,NULL,'2021-01-19 13:43:15','2021-01-19 08:43:15'),(145,142,1,'General Girls Uniform',0.00,'1702','1188',0,0,0,'general-uniforms-kbo7b29',NULL,NULL,'2021-01-19 13:55:43','2021-01-19 08:55:43'),(146,51,1,'Army Public School And College System',0.00,'1656',NULL,0,0,0,'army-public-school-and-college-system-csyde',NULL,NULL,'2021-01-19 11:02:07','2021-01-19 06:02:07'),(147,146,2,'APSACS - Shirts',0.00,NULL,NULL,0,0,0,'APSACS---Shirts-fEyAM',NULL,NULL,'2021-01-16 02:19:32','2021-01-16 02:19:32'),(148,146,2,'APSACS - Pents',0.00,NULL,NULL,0,0,0,'APSACS---Pents-shV2S',NULL,NULL,'2021-01-16 02:20:05','2021-01-16 02:20:05'),(149,146,2,'APSACS - Girls Uniform',0.00,NULL,NULL,0,0,0,'APSACS---Girls-Uniform-ygB6Y',NULL,NULL,'2021-01-16 02:21:12','2021-01-16 02:21:12'),(150,146,2,'APSACS - Accessories',0.00,NULL,NULL,0,0,0,'APSACS---Accessories-uT2R8',NULL,NULL,'2021-01-16 02:22:15','2021-01-16 02:22:15'),(151,51,1,'White Rose School System',0.00,'1653',NULL,0,0,0,'white-rose-school-system-yh9np',NULL,NULL,'2021-01-19 11:02:45','2021-01-19 06:02:45'),(152,151,2,'WRSS - shirts',0.00,NULL,NULL,0,0,0,'WRSS---shirts-BpIen',NULL,NULL,'2021-01-16 02:23:45','2021-01-16 02:23:45'),(153,151,2,'WRSS - Pents',0.00,NULL,NULL,0,0,0,'WRSS---Pents-nXner',NULL,NULL,'2021-01-16 02:25:00','2021-01-16 02:25:00'),(154,151,2,'WRSS - Girls Uniform',0.00,NULL,NULL,0,0,0,'WRSS---Girls-Uniform-mnOOR',NULL,NULL,'2021-01-16 02:25:26','2021-01-16 02:25:26'),(155,151,2,'WRSS - Accessories',0.00,NULL,NULL,0,0,0,'WRSS---Accessories-tViEJ',NULL,NULL,'2021-01-16 02:26:34','2021-01-16 02:26:34'),(156,51,1,'Green Dot Public School',0.00,'1655',NULL,0,0,0,'green-dot-public-school-nu5ji',NULL,NULL,'2021-01-19 11:03:10','2021-01-19 06:03:10'),(157,156,2,'GDPS - Shirts',0.00,NULL,NULL,0,0,0,'GDPS---Shirts-QEZ1u',NULL,NULL,'2021-01-16 02:28:26','2021-01-16 02:28:26'),(158,156,2,'GDPS - Pents',0.00,NULL,NULL,0,0,0,'GDPS---Pents-RsZMs',NULL,NULL,'2021-01-16 02:28:58','2021-01-16 02:28:58'),(159,156,2,'GDPS - Girls Uniform',0.00,NULL,NULL,0,0,0,'GDPS---Girls-Uniform-d6aUZ',NULL,NULL,'2021-01-16 02:29:26','2021-01-16 02:29:26'),(160,156,2,'GDPS - Accessories',0.00,NULL,NULL,0,0,0,'GDPS---Accessories-VYuxv',NULL,NULL,'2021-01-16 02:30:04','2021-01-16 02:30:04'),(161,52,2,'DPS - pents',0.00,NULL,NULL,0,0,0,'DPS---pents-eahSc',NULL,NULL,'2021-01-16 05:54:11','2021-01-16 05:54:11'),(162,72,2,'AS - Kids Uniform',0.00,NULL,NULL,0,0,0,'AS---Kids-Uniform-zDNVb',NULL,NULL,'2021-01-16 05:59:57','2021-01-16 05:59:57'),(163,117,2,'CHS - Kids Uniform',0.00,NULL,NULL,0,0,0,'CHS---Kids-Uniform-8SNyE',NULL,NULL,'2021-01-16 06:01:15','2021-01-16 06:01:15'),(164,77,2,'DA - Kids Uniform',0.00,NULL,NULL,0,0,0,'DA---Kids-Uniform-3yiZz',NULL,NULL,'2021-01-16 06:02:03','2021-01-16 06:02:03'),(165,107,2,'DMC - Kids Uniform',0.00,NULL,NULL,0,0,0,'DMC---Kids-Uniform-M6GnP',NULL,NULL,'2021-01-16 06:02:35','2021-01-16 06:02:35'),(166,52,2,'DPS - Kids Uniform',0.00,NULL,NULL,0,0,0,'DPS---Kids-Uniform-iXstZ',NULL,NULL,'2021-01-16 06:02:55','2021-01-16 06:02:55'),(167,87,2,'TES - Kids Uniform',0.00,NULL,NULL,0,0,0,'TES---Kids-Uniform-vKyD4',NULL,NULL,'2021-01-16 06:04:17','2021-01-16 06:04:17'),(168,122,2,'TASS - Kids Uniform',0.00,NULL,NULL,0,0,0,'TASS---Kids-Uniform-WXvpH',NULL,NULL,'2021-01-16 06:05:10','2021-01-16 06:05:10'),(169,82,2,'TAS - Kids Uniform',0.00,NULL,NULL,0,0,0,'TAS---Kids-Uniform-OPHWV',NULL,NULL,'2021-01-16 06:06:09','2021-01-16 06:06:09'),(170,134,2,'TSS - Kids Uniform',0.00,NULL,NULL,0,0,0,'TSS---Kids-Uniform-KWREu',NULL,NULL,'2021-01-16 06:06:54','2021-01-16 06:06:54'),(171,151,2,'WRSS - Kids Uniform',0.00,NULL,NULL,0,0,0,'WRSS---Kids-Uniform-DQGMa',NULL,NULL,'2021-01-16 06:07:39','2021-01-16 06:07:39'),(172,142,1,'General Uniform Jersey For Boys',0.00,NULL,NULL,0,0,0,'general-uniform-jersey-kgpvd',NULL,NULL,'2021-01-20 07:46:10','2021-01-20 02:46:10'),(173,142,1,'General Uniform Sweater For Boys & Girls',0.00,NULL,NULL,0,0,0,'general-uniform-sweater-0v2ec',NULL,NULL,'2021-01-21 09:02:33','2021-01-21 04:02:33'),(174,142,1,'General Uniform Jersey For Girls',0.00,NULL,NULL,0,0,0,'General-Uniform-Jersey-For-Girls-hkYfK',NULL,NULL,'2021-01-20 02:47:12','2021-01-20 02:47:12'),(176,142,1,'General Uniform Coat For Boys & Girls',0.00,NULL,NULL,0,0,0,'general-uniform-coat-for-boys-wdstq',NULL,NULL,'2021-01-21 09:35:47','2021-01-21 04:35:47'),(178,151,2,'WRSS - Winter Wears',0.00,NULL,NULL,0,0,0,'WRSS---Winter-Wears-h2nQC',NULL,NULL,'2021-01-20 09:18:28','2021-01-20 09:18:28'),(179,139,2,'IC - Winter Wears',0.00,NULL,NULL,0,0,0,'IC---Winter-Wears-aJBoN',NULL,NULL,'2021-01-20 09:38:44','2021-01-20 09:38:44'),(180,57,2,'PGC - Winter Wears',0.00,NULL,NULL,0,0,0,'PGC---Winter-Wears-9M7dE',NULL,NULL,'2021-01-20 09:53:13','2021-01-20 09:53:13'),(181,62,2,'KC - Winter Wears',0.00,NULL,NULL,0,0,0,'KC---Winter-Wears-C9ztV',NULL,NULL,'2021-01-20 10:00:05','2021-01-20 10:00:05'),(182,87,2,'TES - Winter Wears',0.00,NULL,NULL,0,0,0,'TES---Winter-Wears-984oi',NULL,NULL,'2021-01-20 10:03:37','2021-01-20 10:03:37'),(183,128,2,'AC - Winter Wears',0.00,NULL,NULL,0,0,0,'AC---Winter-Wears-FT5Oe',NULL,NULL,'2021-01-20 10:12:50','2021-01-20 10:12:50'),(184,72,2,'AS - Winter Wears',0.00,NULL,NULL,0,0,0,'AS---Winter-Wears-B5heY',NULL,NULL,'2021-01-20 10:17:51','2021-01-20 10:17:51'),(185,134,2,'TSS - Winter Wears',0.00,NULL,NULL,0,0,0,'TSS---Winter-Wears-BaEPR',NULL,NULL,'2021-01-20 10:21:50','2021-01-20 10:21:50'),(186,67,2,'SC - Winter Wears',0.00,NULL,NULL,0,0,0,'SC---Winter-Wears-kAkah',NULL,NULL,'2021-01-21 02:36:32','2021-01-21 02:36:32'),(187,82,2,'TAS - Winter Wears',0.00,NULL,NULL,0,0,0,'TAS---Winter-Wears-83uGF',NULL,NULL,'2021-01-21 03:21:32','2021-01-21 03:21:32'),(188,112,2,'SIS - Winter wears',0.00,NULL,NULL,0,0,0,'SIS---Winter-wears-eK33x',NULL,NULL,'2021-01-21 03:37:02','2021-01-21 03:37:02'),(189,156,2,'GDPS - Winter Wears',0.00,NULL,NULL,0,0,0,'GDPS---Winter-Wears-X4ff2',NULL,NULL,'2021-01-21 03:37:56','2021-01-21 03:37:56'),(190,77,2,'DA - Winter Wears',0.00,NULL,NULL,0,0,0,'DA---Winter-Wears-NKVTs',NULL,NULL,'2021-01-21 04:08:07','2021-01-21 04:08:07'),(191,107,2,'DMC - Winter Wears',0.00,NULL,NULL,0,0,0,'DMC---Winter-Wears-8Xhqs',NULL,NULL,'2021-01-21 04:25:41','2021-01-21 04:25:41'),(192,52,2,'DPS - Winter Wears',0.00,NULL,NULL,0,0,0,'DPS---Winter-Wears-8Wttx',NULL,NULL,'2021-01-21 04:57:27','2021-01-21 04:57:27'),(193,117,2,'CHS - Winter Wears',0.00,NULL,NULL,0,0,0,'CHS---Winter-Wears-YlSg8',NULL,NULL,'2021-01-21 05:08:02','2021-01-21 05:08:02'),(194,142,1,'General Winter School Caps',0.00,NULL,NULL,0,0,0,'General-Winter-School-Caps-2aVeX',NULL,NULL,'2021-01-21 05:24:31','2021-01-21 05:24:31'),(195,142,1,'General Girls Uniform Scarf, Dupatta & Patti',0.00,NULL,NULL,0,0,0,'girls-uniform-scarf-6v5ny',NULL,NULL,'2021-01-21 15:10:12','2021-01-21 10:10:12'),(196,142,1,'General Uniform Tie',0.00,NULL,NULL,0,0,0,'General-Uniform-Tie-f7u52',NULL,NULL,'2021-01-21 11:05:55','2021-01-21 11:05:55');
/*!40000 ALTER TABLE `categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `category_translations`
--

DROP TABLE IF EXISTS `category_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `category_translations` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `category_id` bigint(20) NOT NULL,
  `name` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `lang` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=194 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `category_translations`
--

LOCK TABLES `category_translations` WRITE;
/*!40000 ALTER TABLE `category_translations` DISABLE KEYS */;
INSERT INTO `category_translations` (`id`, `category_id`, `name`, `lang`, `created_at`, `updated_at`) VALUES (1,4,'Health & Beauty','en','2021-01-07 00:13:00','2021-01-13 07:02:03'),(2,5,'Diapering & Napping','en','2021-01-07 00:13:20','2021-01-07 00:13:20'),(3,6,'Fragrance','en','2021-01-07 00:13:44','2021-01-07 00:13:44'),(4,7,'School Accessories','en','2021-01-07 00:14:02','2021-01-07 00:14:02'),(5,8,'Water bottles','en','2021-01-08 04:21:05','2021-01-08 04:21:05'),(6,9,'Lunch Boxes','en','2021-01-08 04:21:51','2021-01-08 04:21:51'),(7,10,'Bottles & Lunch Boxes','en','2021-01-08 04:23:22','2021-01-14 07:18:06'),(8,11,'Diapers','en','2021-01-08 04:23:52','2021-01-08 04:23:52'),(12,15,'Men\'s Perfume','en','2021-01-08 04:25:57','2021-01-08 04:25:57'),(13,16,'women\'s perfume','en','2021-01-08 04:26:17','2021-01-08 04:26:17'),(14,17,'Men\'s body Spray','en','2021-01-08 04:26:42','2021-01-08 04:26:42'),(15,18,'Women Body Spray','en','2021-01-08 04:27:14','2021-01-08 04:27:14'),(16,19,'Hair Care','en','2021-01-12 02:24:48','2021-01-12 02:24:48'),(17,20,'Shampoo & Conditioner','en','2021-01-12 02:25:31','2021-01-12 02:25:31'),(18,21,'Hair Styling','en','2021-01-12 02:26:12','2021-01-12 02:26:12'),(19,22,'Hair Colors','en','2021-01-12 02:26:50','2021-01-12 02:26:50'),(20,23,'Hair Oils','en','2021-01-12 02:27:12','2021-01-12 02:27:12'),(21,24,'Skin Care','en','2021-01-12 02:28:19','2021-01-12 02:28:19'),(22,25,'Creams & Lotions','en','2021-01-12 02:29:09','2021-01-12 02:29:09'),(23,26,'Facial Cleansers','en','2021-01-12 02:29:45','2021-01-12 02:29:45'),(24,27,'Face Washes','en','2021-01-12 02:30:28','2021-01-12 02:30:28'),(25,28,'Serum & Oils','en','2021-01-12 02:31:34','2021-01-12 02:31:34'),(26,29,'Pampers','en','2021-01-13 01:58:57','2021-01-13 01:58:57'),(27,30,'Molfix Diapers','en','2021-01-13 01:59:42','2021-01-13 01:59:42'),(28,31,'Canbebe Diapers','en','2021-01-13 02:00:31','2021-01-13 02:00:31'),(36,39,'Rocket Diapers','en','2021-01-13 04:02:19','2021-01-13 04:02:19'),(37,40,'Hair Removal cream and Lotion','en','2021-01-13 05:14:16','2021-01-13 05:14:16'),(39,42,'Kids & Babies','en','2021-01-13 06:12:49','2021-01-13 06:12:49'),(41,44,'Baby Cream & Lotion','en','2021-01-13 06:15:38','2021-01-13 06:15:38'),(42,45,'Baby Shampoo','en','2021-01-13 06:16:54','2021-01-13 06:16:54'),(43,46,'Personal Care','en','2021-01-13 07:03:49','2021-01-13 07:03:49'),(45,48,'Lion Star Water bottles','en','2021-01-13 07:11:36','2021-01-13 07:11:36'),(46,49,'Lion Star Lunch Box','en','2021-01-13 07:12:17','2021-01-13 07:12:17'),(47,50,'Lion Star water bottle & lunch Box','en','2021-01-13 07:14:10','2021-01-13 07:14:10'),(48,51,'School Uniforms','en','2021-01-14 02:37:51','2021-01-14 07:02:29'),(49,52,'Divisional Public School','en','2021-01-14 02:44:51','2021-01-14 02:44:51'),(50,53,'DPS - Shirts','en','2021-01-14 03:19:57','2021-01-14 03:39:11'),(52,55,'DPS - Girls uniform','en','2021-01-14 03:39:49','2021-01-14 03:39:49'),(53,56,'DPS - Accessories','en','2021-01-14 03:40:23','2021-01-14 03:40:23'),(54,57,'Punjab group of colleges','en','2021-01-14 03:41:25','2021-01-14 03:43:02'),(55,58,'PGC - Shirts','en','2021-01-14 03:42:15','2021-01-14 03:42:15'),(56,59,'PGC - Pents','en','2021-01-14 03:43:24','2021-01-14 03:43:24'),(57,60,'PGC - Girls Uniform','en','2021-01-14 03:45:17','2021-01-14 03:45:17'),(58,61,'PGC - Accessories','en','2021-01-14 03:45:46','2021-01-14 03:45:46'),(59,62,'Kips College','en','2021-01-14 03:47:55','2021-01-14 03:47:55'),(60,63,'KC - Shirts','en','2021-01-14 03:48:27','2021-01-14 03:48:27'),(61,64,'KC - Pents','en','2021-01-14 03:49:18','2021-01-14 03:49:18'),(62,65,'KC - Girls Uniform','en','2021-01-14 03:49:41','2021-01-14 03:49:41'),(63,66,'KC - Accessories','en','2021-01-14 03:50:10','2021-01-14 03:50:10'),(64,67,'Superior college','en','2021-01-14 03:51:00','2021-01-14 03:51:00'),(65,68,'SC - Shirts','en','2021-01-14 03:51:21','2021-01-14 03:51:21'),(66,69,'SC - Pents','en','2021-01-14 03:53:31','2021-01-14 03:53:31'),(67,70,'SC - Girls Uniform','en','2021-01-14 03:54:20','2021-01-14 03:54:20'),(68,71,'SC - Accessories','en','2021-01-14 03:54:45','2021-01-14 03:54:45'),(69,72,'Allied School','en','2021-01-14 03:56:18','2021-01-14 03:56:18'),(70,73,'AS - shirts','en','2021-01-14 03:56:50','2021-01-14 03:56:50'),(71,74,'AS - Pents','en','2021-01-14 03:57:09','2021-01-14 03:57:09'),(72,75,'AS - Girls Uniform','en','2021-01-14 03:57:40','2021-01-14 03:57:40'),(73,76,'AS - Accessories','en','2021-01-14 03:58:34','2021-01-14 03:58:34'),(74,77,'Dar-e-Arqam School','en','2021-01-14 03:59:50','2021-01-14 03:59:50'),(75,78,'DA- shirts','en','2021-01-14 04:01:53','2021-01-14 04:01:53'),(76,79,'DA - Pents','en','2021-01-14 04:02:20','2021-01-14 04:02:20'),(77,80,'DA - Girls Uniform','en','2021-01-14 04:12:22','2021-01-14 04:12:22'),(78,81,'DA - Accessories','en','2021-01-14 04:12:47','2021-01-14 04:12:47'),(79,82,'The Arqam School','en','2021-01-14 04:13:48','2021-01-14 04:13:48'),(80,83,'TAS - Shirts','en','2021-01-14 04:14:33','2021-01-14 04:14:33'),(81,84,'TAS - Pents','en','2021-01-14 04:14:50','2021-01-14 04:14:50'),(82,85,'TAS - Girls uniform','en','2021-01-14 04:15:19','2021-01-14 04:15:19'),(83,86,'TAS - Accessories','en','2021-01-14 04:15:43','2021-01-14 04:15:43'),(84,87,'The Educator School','en','2021-01-14 04:16:38','2021-01-14 04:16:38'),(85,88,'TES - Shirts','en','2021-01-14 04:16:58','2021-01-14 04:16:58'),(86,89,'TES - Pents','en','2021-01-14 04:17:18','2021-01-14 04:17:18'),(87,90,'TES - Girls Uniform','en','2021-01-14 04:17:46','2021-01-14 04:17:46'),(88,91,'TES - Accessories','en','2021-01-14 04:18:22','2021-01-14 04:18:22'),(94,97,'Punjab Worker Welfare School','en','2021-01-14 04:23:01','2021-01-14 04:23:01'),(95,98,'PWWS - Shirts','en','2021-01-14 04:23:37','2021-01-14 04:23:37'),(96,99,'PWWS - Pents','en','2021-01-14 04:24:14','2021-01-14 04:24:14'),(97,100,'PWWS - Girls Uniform','en','2021-01-14 04:24:35','2021-01-14 04:24:35'),(98,101,'PWWS - Accessories','en','2021-01-14 04:25:02','2021-01-14 04:25:02'),(104,107,'Divisional Model School','en','2021-01-14 04:28:09','2021-01-15 06:05:24'),(105,108,'DMC - Shirts','en','2021-01-14 04:28:46','2021-01-14 04:28:46'),(106,109,'DMC - Pents','en','2021-01-14 04:29:46','2021-01-14 04:29:46'),(107,110,'DMC - Girls Uniform','en','2021-01-14 04:30:15','2021-01-14 04:30:15'),(108,111,'DMC - Accessories','en','2021-01-14 04:30:45','2021-01-14 04:30:45'),(109,112,'Sunny Ideal School','en','2021-01-14 04:31:27','2021-01-14 04:31:27'),(110,113,'SIS - Shirts','en','2021-01-14 04:31:48','2021-01-14 04:31:48'),(111,114,'SIS - Pents','en','2021-01-14 04:32:08','2021-01-14 04:32:08'),(112,115,'SIS - Girls Uniform','en','2021-01-14 04:32:38','2021-01-14 04:32:38'),(113,116,'SIS - Accessories','en','2021-01-14 04:32:58','2021-01-14 04:32:58'),(114,117,'City High School','en','2021-01-14 04:35:26','2021-01-14 04:35:26'),(115,118,'CHS - Shirts','en','2021-01-14 04:35:51','2021-01-14 04:35:51'),(116,119,'CHS - Pents','en','2021-01-14 04:36:11','2021-01-14 04:36:11'),(117,120,'CHS - Girls Uniform','en','2021-01-14 04:36:39','2021-01-14 04:36:39'),(118,121,'CHS - Accessories','en','2021-01-14 04:37:08','2021-01-14 04:37:08'),(119,122,'The ACE School System','en','2021-01-14 04:40:14','2021-01-14 04:40:14'),(120,123,'TASS - Shirst','en','2021-01-14 04:40:45','2021-01-14 04:40:45'),(121,124,'TASS - Pents','en','2021-01-14 04:41:05','2021-01-14 04:41:05'),(122,125,'TASS - Girls Uniform','en','2021-01-14 04:41:30','2021-01-14 04:41:30'),(123,126,'TASS - Accessories','en','2021-01-14 04:41:56','2021-01-14 04:41:56'),(124,127,'College Uniforms','en','2021-01-14 07:03:10','2021-01-14 07:03:10'),(125,128,'Aspire Group of College','en','2021-01-14 07:07:07','2021-01-14 07:07:07'),(126,129,'AC- Shirts','en','2021-01-14 07:07:54','2021-01-14 07:07:54'),(127,130,'AC- Pents','en','2021-01-14 07:08:13','2021-01-14 07:08:13'),(128,131,'AC- Girls Uniform','en','2021-01-14 07:08:33','2021-01-14 07:08:33'),(129,132,'AC- Accessories','en','2021-01-14 07:08:54','2021-01-14 07:08:54'),(131,134,'The Smart School','en','2021-01-14 08:48:43','2021-01-14 08:48:43'),(132,135,'TSS - Shirts','en','2021-01-14 08:50:42','2021-01-14 08:50:42'),(133,136,'TSS - Pents','en','2021-01-14 08:51:07','2021-01-14 08:51:07'),(134,137,'TSS - Girls Uniform','en','2021-01-14 08:51:44','2021-01-14 08:51:44'),(135,138,'TSS - Accessories','en','2021-01-14 08:52:31','2021-01-14 08:52:31'),(136,139,'Islamia College for Boys','en','2021-01-15 05:54:00','2021-01-15 05:54:00'),(137,140,'IC - Shirts','en','2021-01-15 05:54:42','2021-01-15 05:54:42'),(138,141,'IC - Pents','en','2021-01-15 05:55:01','2021-01-15 05:55:01'),(139,142,'General Uniforms(School+College+University)','en','2021-01-15 05:58:45','2021-01-19 04:38:24'),(140,143,'General Uniform Shirts','en','2021-01-15 06:00:12','2021-01-16 05:15:06'),(141,144,'General Uniform Pents','en','2021-01-15 06:00:37','2021-01-16 05:14:51'),(142,145,'General Girls Uniform','en','2021-01-15 06:01:12','2021-01-16 05:14:31'),(143,146,'Army Public School And College System','en','2021-01-16 02:18:49','2021-01-16 02:18:49'),(144,147,'APSACS - Shirts','en','2021-01-16 02:19:32','2021-01-16 02:19:32'),(145,148,'APSACS - Pents','en','2021-01-16 02:20:05','2021-01-16 02:20:05'),(146,149,'APSACS - Girls Uniform','en','2021-01-16 02:21:12','2021-01-16 02:21:12'),(147,150,'APSACS - Accessories','en','2021-01-16 02:22:15','2021-01-16 02:22:15'),(148,151,'White Rose School System','en','2021-01-16 02:23:24','2021-01-16 02:23:24'),(149,152,'WRSS - shirts','en','2021-01-16 02:23:45','2021-01-16 02:23:45'),(150,153,'WRSS - Pents','en','2021-01-16 02:25:00','2021-01-16 02:25:00'),(151,154,'WRSS - Girls Uniform','en','2021-01-16 02:25:26','2021-01-16 02:25:26'),(152,155,'WRSS - Accessories','en','2021-01-16 02:26:34','2021-01-16 02:26:34'),(153,156,'Green Dot Public School','en','2021-01-16 02:27:54','2021-01-16 02:27:54'),(154,157,'GDPS - Shirts','en','2021-01-16 02:28:26','2021-01-16 02:28:26'),(155,158,'GDPS - Pents','en','2021-01-16 02:28:58','2021-01-16 02:28:58'),(156,159,'GDPS - Girls Uniform','en','2021-01-16 02:29:26','2021-01-16 02:29:26'),(157,160,'GDPS - Accessories','en','2021-01-16 02:30:04','2021-01-16 02:30:04'),(158,161,'DPS - pents','en','2021-01-16 05:54:11','2021-01-16 05:54:11'),(159,162,'AS - Kids Uniform','en','2021-01-16 05:59:57','2021-01-16 05:59:57'),(160,163,'CHS - Kids Uniform','en','2021-01-16 06:01:15','2021-01-16 06:01:15'),(161,164,'DA - Kids Uniform','en','2021-01-16 06:02:03','2021-01-16 06:02:03'),(162,165,'DMC - Kids Uniform','en','2021-01-16 06:02:35','2021-01-16 06:02:35'),(163,166,'DPS - Kids Uniform','en','2021-01-16 06:02:55','2021-01-16 06:02:55'),(164,167,'TES - Kids Uniform','en','2021-01-16 06:04:17','2021-01-16 06:04:17'),(165,168,'TASS - Kids Uniform','en','2021-01-16 06:05:10','2021-01-16 06:05:10'),(166,169,'TAS - Kids Uniform','en','2021-01-16 06:06:09','2021-01-16 06:06:09'),(167,170,'TSS - Kids Uniform','en','2021-01-16 06:06:54','2021-01-16 06:06:54'),(168,171,'WRSS - Kids Uniform','en','2021-01-16 06:07:39','2021-01-16 06:07:39'),(169,172,'General Uniform Jersey For Boys','en','2021-01-20 02:44:05','2021-01-20 02:46:10'),(170,173,'General Uniform Sweater For Boys & Girls','en','2021-01-20 02:45:08','2021-01-21 04:02:33'),(171,174,'General Uniform Jersey For Girls','en','2021-01-20 02:47:12','2021-01-20 02:47:12'),(173,176,'General Uniform Coat For Boys & Girls','en','2021-01-20 02:50:44','2021-01-21 04:35:47'),(175,178,'WRSS - Winter Wears','en','2021-01-20 09:18:28','2021-01-20 09:18:28'),(176,179,'IC - Winter Wears','en','2021-01-20 09:38:44','2021-01-20 09:38:44'),(177,180,'PGC - Winter Wears','en','2021-01-20 09:53:13','2021-01-20 09:53:13'),(178,181,'KC - Winter Wears','en','2021-01-20 10:00:05','2021-01-20 10:00:05'),(179,182,'TES - Winter Wears','en','2021-01-20 10:03:37','2021-01-20 10:03:37'),(180,183,'AC - Winter Wears','en','2021-01-20 10:12:50','2021-01-20 10:12:50'),(181,184,'AS - Winter Wears','en','2021-01-20 10:17:51','2021-01-20 10:17:51'),(182,185,'TSS - Winter Wears','en','2021-01-20 10:21:50','2021-01-20 10:21:50'),(183,186,'SC - Winter Wears','en','2021-01-21 02:36:32','2021-01-21 02:36:32'),(184,187,'TAS - Winter Wears','en','2021-01-21 03:21:32','2021-01-21 03:21:32'),(185,188,'SIS - Winter wears','en','2021-01-21 03:37:02','2021-01-21 03:37:02'),(186,189,'GDPS - Winter Wears','en','2021-01-21 03:37:56','2021-01-21 03:37:56'),(187,190,'DA - Winter Wears','en','2021-01-21 04:08:07','2021-01-21 04:08:07'),(188,191,'DMC - Winter Wears','en','2021-01-21 04:25:41','2021-01-21 04:25:41'),(189,192,'DPS - Winter Wears','en','2021-01-21 04:57:27','2021-01-21 04:57:27'),(190,193,'CHS - Winter Wears','en','2021-01-21 05:08:02','2021-01-21 05:08:02'),(191,194,'General Winter School Caps','en','2021-01-21 05:24:31','2021-01-21 05:24:31'),(192,195,'General Girls Uniform Scarf, Dupatta & Patti','en','2021-01-21 09:13:30','2021-01-21 10:10:12'),(193,196,'General Uniform Tie','en','2021-01-21 11:05:55','2021-01-21 11:05:55');
/*!40000 ALTER TABLE `category_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `colors`
--

DROP TABLE IF EXISTS `colors`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `colors` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL,
  `code` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=144 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `colors`
--

LOCK TABLES `colors` WRITE;
/*!40000 ALTER TABLE `colors` DISABLE KEYS */;
INSERT INTO `colors` (`id`, `name`, `code`, `created_at`, `updated_at`) VALUES (1,'IndianRed','#CD5C5C','2018-11-05 02:12:26','2018-11-05 02:12:26'),(2,'LightCoral','#F08080','2018-11-05 02:12:26','2018-11-05 02:12:26'),(3,'Salmon','#FA8072','2018-11-05 02:12:26','2018-11-05 02:12:26'),(4,'DarkSalmon','#E9967A','2018-11-05 02:12:26','2018-11-05 02:12:26'),(5,'LightSalmon','#FFA07A','2018-11-05 02:12:26','2018-11-05 02:12:26'),(6,'Crimson','#DC143C','2018-11-05 02:12:26','2018-11-05 02:12:26'),(7,'Red','#FF0000','2018-11-05 02:12:26','2018-11-05 02:12:26'),(8,'FireBrick','#B22222','2018-11-05 02:12:26','2018-11-05 02:12:26'),(9,'DarkRed','#8B0000','2018-11-05 02:12:26','2018-11-05 02:12:26'),(10,'Pink','#FFC0CB','2018-11-05 02:12:26','2018-11-05 02:12:26'),(11,'LightPink','#FFB6C1','2018-11-05 02:12:26','2018-11-05 02:12:26'),(12,'HotPink','#FF69B4','2018-11-05 02:12:26','2018-11-05 02:12:26'),(13,'DeepPink','#FF1493','2018-11-05 02:12:26','2018-11-05 02:12:26'),(14,'MediumVioletRed','#C71585','2018-11-05 02:12:26','2018-11-05 02:12:26'),(15,'PaleVioletRed','#DB7093','2018-11-05 02:12:26','2018-11-05 02:12:26'),(16,'LightSalmon','#FFA07A','2018-11-05 02:12:26','2018-11-05 02:12:26'),(17,'Coral','#FF7F50','2018-11-05 02:12:26','2018-11-05 02:12:26'),(18,'Tomato','#FF6347','2018-11-05 02:12:26','2018-11-05 02:12:26'),(19,'OrangeRed','#FF4500','2018-11-05 02:12:26','2018-11-05 02:12:26'),(20,'DarkOrange','#FF8C00','2018-11-05 02:12:26','2018-11-05 02:12:26'),(21,'Orange','#FFA500','2018-11-05 02:12:26','2018-11-05 02:12:26'),(22,'Gold','#FFD700','2018-11-05 02:12:26','2018-11-05 02:12:26'),(23,'Yellow','#FFFF00','2018-11-05 02:12:26','2018-11-05 02:12:26'),(24,'LightYellow','#FFFFE0','2018-11-05 02:12:26','2018-11-05 02:12:26'),(25,'LemonChiffon','#FFFACD','2018-11-05 02:12:26','2018-11-05 02:12:26'),(26,'LightGoldenrodYellow','#FAFAD2','2018-11-05 02:12:27','2018-11-05 02:12:27'),(27,'PapayaWhip','#FFEFD5','2018-11-05 02:12:27','2018-11-05 02:12:27'),(28,'Moccasin','#FFE4B5','2018-11-05 02:12:27','2018-11-05 02:12:27'),(29,'PeachPuff','#FFDAB9','2018-11-05 02:12:27','2018-11-05 02:12:27'),(30,'PaleGoldenrod','#EEE8AA','2018-11-05 02:12:27','2018-11-05 02:12:27'),(31,'Khaki','#F0E68C','2018-11-05 02:12:27','2018-11-05 02:12:27'),(32,'DarkKhaki','#BDB76B','2018-11-05 02:12:27','2018-11-05 02:12:27'),(33,'Lavender','#E6E6FA','2018-11-05 02:12:27','2018-11-05 02:12:27'),(34,'Thistle','#D8BFD8','2018-11-05 02:12:27','2018-11-05 02:12:27'),(35,'Plum','#DDA0DD','2018-11-05 02:12:27','2018-11-05 02:12:27'),(36,'Violet','#EE82EE','2018-11-05 02:12:27','2018-11-05 02:12:27'),(37,'Orchid','#DA70D6','2018-11-05 02:12:27','2018-11-05 02:12:27'),(38,'Fuchsia','#FF00FF','2018-11-05 02:12:27','2018-11-05 02:12:27'),(39,'Magenta','#FF00FF','2018-11-05 02:12:27','2018-11-05 02:12:27'),(40,'MediumOrchid','#BA55D3','2018-11-05 02:12:27','2018-11-05 02:12:27'),(41,'MediumPurple','#9370DB','2018-11-05 02:12:27','2018-11-05 02:12:27'),(42,'Amethyst','#9966CC','2018-11-05 02:12:27','2018-11-05 02:12:27'),(43,'BlueViolet','#8A2BE2','2018-11-05 02:12:27','2018-11-05 02:12:27'),(44,'DarkViolet','#9400D3','2018-11-05 02:12:27','2018-11-05 02:12:27'),(45,'DarkOrchid','#9932CC','2018-11-05 02:12:27','2018-11-05 02:12:27'),(46,'DarkMagenta','#8B008B','2018-11-05 02:12:27','2018-11-05 02:12:27'),(47,'Purple','#800080','2018-11-05 02:12:27','2018-11-05 02:12:27'),(48,'Indigo','#4B0082','2018-11-05 02:12:27','2018-11-05 02:12:27'),(49,'SlateBlue','#6A5ACD','2018-11-05 02:12:27','2018-11-05 02:12:27'),(50,'DarkSlateBlue','#483D8B','2018-11-05 02:12:27','2018-11-05 02:12:27'),(51,'MediumSlateBlue','#7B68EE','2018-11-05 02:12:27','2018-11-05 02:12:27'),(52,'GreenYellow','#ADFF2F','2018-11-05 02:12:27','2018-11-05 02:12:27'),(53,'Chartreuse','#7FFF00','2018-11-05 02:12:27','2018-11-05 02:12:27'),(54,'LawnGreen','#7CFC00','2018-11-05 02:12:27','2018-11-05 02:12:27'),(55,'Lime','#00FF00','2018-11-05 02:12:27','2018-11-05 02:12:27'),(56,'LimeGreen','#32CD32','2018-11-05 02:12:27','2018-11-05 02:12:27'),(57,'PaleGreen','#98FB98','2018-11-05 02:12:27','2018-11-05 02:12:27'),(58,'LightGreen','#90EE90','2018-11-05 02:12:27','2018-11-05 02:12:27'),(59,'MediumSpringGreen','#00FA9A','2018-11-05 02:12:27','2018-11-05 02:12:27'),(60,'SpringGreen','#00FF7F','2018-11-05 02:12:27','2018-11-05 02:12:27'),(61,'MediumSeaGreen','#3CB371','2018-11-05 02:12:27','2018-11-05 02:12:27'),(62,'SeaGreen','#2E8B57','2018-11-05 02:12:27','2018-11-05 02:12:27'),(63,'ForestGreen','#228B22','2018-11-05 02:12:28','2018-11-05 02:12:28'),(64,'Green','#008000','2018-11-05 02:12:28','2018-11-05 02:12:28'),(65,'DarkGreen','#006400','2018-11-05 02:12:28','2018-11-05 02:12:28'),(66,'YellowGreen','#9ACD32','2018-11-05 02:12:28','2018-11-05 02:12:28'),(67,'OliveDrab','#6B8E23','2018-11-05 02:12:28','2018-11-05 02:12:28'),(68,'Olive','#808000','2018-11-05 02:12:28','2018-11-05 02:12:28'),(69,'DarkOliveGreen','#556B2F','2018-11-05 02:12:28','2018-11-05 02:12:28'),(70,'MediumAquamarine','#66CDAA','2018-11-05 02:12:28','2018-11-05 02:12:28'),(71,'DarkSeaGreen','#8FBC8F','2018-11-05 02:12:28','2018-11-05 02:12:28'),(72,'LightSeaGreen','#20B2AA','2018-11-05 02:12:28','2018-11-05 02:12:28'),(73,'DarkCyan','#008B8B','2018-11-05 02:12:28','2018-11-05 02:12:28'),(74,'Teal','#008080','2018-11-05 02:12:28','2018-11-05 02:12:28'),(75,'Aqua','#00FFFF','2018-11-05 02:12:28','2018-11-05 02:12:28'),(76,'Cyan','#00FFFF','2018-11-05 02:12:28','2018-11-05 02:12:28'),(77,'LightCyan','#E0FFFF','2018-11-05 02:12:28','2018-11-05 02:12:28'),(78,'PaleTurquoise','#AFEEEE','2018-11-05 02:12:28','2018-11-05 02:12:28'),(79,'Aquamarine','#7FFFD4','2018-11-05 02:12:28','2018-11-05 02:12:28'),(80,'Turquoise','#40E0D0','2018-11-05 02:12:28','2018-11-05 02:12:28'),(81,'MediumTurquoise','#48D1CC','2018-11-05 02:12:28','2018-11-05 02:12:28'),(82,'DarkTurquoise','#00CED1','2018-11-05 02:12:28','2018-11-05 02:12:28'),(83,'CadetBlue','#5F9EA0','2018-11-05 02:12:28','2018-11-05 02:12:28'),(84,'SteelBlue','#4682B4','2018-11-05 02:12:28','2018-11-05 02:12:28'),(85,'LightSteelBlue','#B0C4DE','2018-11-05 02:12:28','2018-11-05 02:12:28'),(86,'PowderBlue','#B0E0E6','2018-11-05 02:12:28','2018-11-05 02:12:28'),(87,'LightBlue','#ADD8E6','2018-11-05 02:12:28','2018-11-05 02:12:28'),(88,'SkyBlue','#87CEEB','2018-11-05 02:12:28','2018-11-05 02:12:28'),(89,'LightSkyBlue','#87CEFA','2018-11-05 02:12:28','2018-11-05 02:12:28'),(90,'DeepSkyBlue','#00BFFF','2018-11-05 02:12:28','2018-11-05 02:12:28'),(91,'DodgerBlue','#1E90FF','2018-11-05 02:12:28','2018-11-05 02:12:28'),(92,'CornflowerBlue','#6495ED','2018-11-05 02:12:28','2018-11-05 02:12:28'),(93,'MediumSlateBlue','#7B68EE','2018-11-05 02:12:28','2018-11-05 02:12:28'),(94,'RoyalBlue','#4169E1','2018-11-05 02:12:28','2018-11-05 02:12:28'),(95,'Blue','#0000FF','2018-11-05 02:12:28','2018-11-05 02:12:28'),(96,'MediumBlue','#0000CD','2018-11-05 02:12:28','2018-11-05 02:12:28'),(97,'DarkBlue','#00008B','2018-11-05 02:12:28','2018-11-05 02:12:28'),(98,'Navy','#000080','2018-11-05 02:12:28','2018-11-05 02:12:28'),(99,'MidnightBlue','#191970','2018-11-05 02:12:29','2018-11-05 02:12:29'),(100,'Cornsilk','#FFF8DC','2018-11-05 02:12:29','2018-11-05 02:12:29'),(101,'BlanchedAlmond','#FFEBCD','2018-11-05 02:12:29','2018-11-05 02:12:29'),(102,'Bisque','#FFE4C4','2018-11-05 02:12:29','2018-11-05 02:12:29'),(103,'NavajoWhite','#FFDEAD','2018-11-05 02:12:29','2018-11-05 02:12:29'),(104,'Wheat','#F5DEB3','2018-11-05 02:12:29','2018-11-05 02:12:29'),(105,'BurlyWood','#DEB887','2018-11-05 02:12:29','2018-11-05 02:12:29'),(106,'Tan','#D2B48C','2018-11-05 02:12:29','2018-11-05 02:12:29'),(107,'RosyBrown','#BC8F8F','2018-11-05 02:12:29','2018-11-05 02:12:29'),(108,'SandyBrown','#F4A460','2018-11-05 02:12:29','2018-11-05 02:12:29'),(109,'Goldenrod','#DAA520','2018-11-05 02:12:29','2018-11-05 02:12:29'),(110,'DarkGoldenrod','#B8860B','2018-11-05 02:12:29','2018-11-05 02:12:29'),(111,'Peru','#CD853F','2018-11-05 02:12:29','2018-11-05 02:12:29'),(112,'Chocolate','#D2691E','2018-11-05 02:12:29','2018-11-05 02:12:29'),(113,'SaddleBrown','#8B4513','2018-11-05 02:12:29','2018-11-05 02:12:29'),(114,'Sienna','#A0522D','2018-11-05 02:12:29','2018-11-05 02:12:29'),(115,'Brown','#A52A2A','2018-11-05 02:12:29','2018-11-05 02:12:29'),(116,'Maroon','#800000','2018-11-05 02:12:29','2018-11-05 02:12:29'),(117,'White','#FFFFFF','2018-11-05 02:12:29','2018-11-05 02:12:29'),(118,'Snow','#FFFAFA','2018-11-05 02:12:29','2018-11-05 02:12:29'),(119,'Honeydew','#F0FFF0','2018-11-05 02:12:29','2018-11-05 02:12:29'),(120,'MintCream','#F5FFFA','2018-11-05 02:12:29','2018-11-05 02:12:29'),(121,'Azure','#F0FFFF','2018-11-05 02:12:29','2018-11-05 02:12:29'),(122,'AliceBlue','#F0F8FF','2018-11-05 02:12:29','2018-11-05 02:12:29'),(123,'GhostWhite','#F8F8FF','2018-11-05 02:12:29','2018-11-05 02:12:29'),(124,'WhiteSmoke','#F5F5F5','2018-11-05 02:12:29','2018-11-05 02:12:29'),(125,'Seashell','#FFF5EE','2018-11-05 02:12:29','2018-11-05 02:12:29'),(126,'Beige','#F5F5DC','2018-11-05 02:12:29','2018-11-05 02:12:29'),(127,'OldLace','#FDF5E6','2018-11-05 02:12:29','2018-11-05 02:12:29'),(128,'FloralWhite','#FFFAF0','2018-11-05 02:12:29','2018-11-05 02:12:29'),(129,'Ivory','#FFFFF0','2018-11-05 02:12:30','2018-11-05 02:12:30'),(130,'AntiqueWhite','#FAEBD7','2018-11-05 02:12:30','2018-11-05 02:12:30'),(131,'Linen','#FAF0E6','2018-11-05 02:12:30','2018-11-05 02:12:30'),(132,'LavenderBlush','#FFF0F5','2018-11-05 02:12:30','2018-11-05 02:12:30'),(133,'MistyRose','#FFE4E1','2018-11-05 02:12:30','2018-11-05 02:12:30'),(134,'Gainsboro','#DCDCDC','2018-11-05 02:12:30','2018-11-05 02:12:30'),(135,'LightGrey','#D3D3D3','2018-11-05 02:12:30','2018-11-05 02:12:30'),(136,'Silver','#C0C0C0','2018-11-05 02:12:30','2018-11-05 02:12:30'),(137,'DarkGray','#A9A9A9','2018-11-05 02:12:30','2018-11-05 02:12:30'),(138,'Gray','#808080','2018-11-05 02:12:30','2018-11-05 02:12:30'),(139,'DimGray','#696969','2018-11-05 02:12:30','2018-11-05 02:12:30'),(140,'LightSlateGray','#778899','2018-11-05 02:12:30','2018-11-05 02:12:30'),(141,'SlateGray','#708090','2018-11-05 02:12:30','2018-11-05 02:12:30'),(142,'DarkSlateGray','#2F4F4F','2018-11-05 02:12:30','2018-11-05 02:12:30'),(143,'Black','#000000','2018-11-05 02:12:30','2018-11-05 02:12:30');
/*!40000 ALTER TABLE `colors` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `conversations`
--

DROP TABLE IF EXISTS `conversations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `conversations` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `sender_id` int(11) NOT NULL,
  `receiver_id` int(11) NOT NULL,
  `title` varchar(1000) COLLATE utf32_unicode_ci DEFAULT NULL,
  `sender_viewed` int(1) NOT NULL DEFAULT '1',
  `receiver_viewed` int(1) NOT NULL DEFAULT '0',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf32 COLLATE=utf32_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `conversations`
--

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

--
-- Table structure for table `countries`
--

DROP TABLE IF EXISTS `countries`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `countries` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `code` varchar(2) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `name` varchar(100) COLLATE utf8_unicode_ci NOT NULL DEFAULT '',
  `status` int(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=297 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `countries`
--

LOCK TABLES `countries` WRITE;
/*!40000 ALTER TABLE `countries` DISABLE KEYS */;
INSERT INTO `countries` (`id`, `code`, `name`, `status`, `created_at`, `updated_at`) VALUES (167,'PK','Pakistan',1,NULL,NULL);
/*!40000 ALTER TABLE `countries` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `coupon_usages`
--

DROP TABLE IF EXISTS `coupon_usages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `coupon_usages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `coupon_id` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `coupon_usages`
--

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

--
-- Table structure for table `coupons`
--

DROP TABLE IF EXISTS `coupons`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `coupons` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `code` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `details` longtext COLLATE utf8_unicode_ci NOT NULL,
  `discount` double(20,2) NOT NULL,
  `discount_type` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `start_date` int(15) NOT NULL,
  `end_date` int(15) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `coupons`
--

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

--
-- Table structure for table `currencies`
--

DROP TABLE IF EXISTS `currencies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `currencies` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `symbol` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `exchange_rate` double(10,5) NOT NULL,
  `status` int(10) NOT NULL DEFAULT '0',
  `code` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=30 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `currencies`
--

LOCK TABLES `currencies` WRITE;
/*!40000 ALTER TABLE `currencies` DISABLE KEYS */;
INSERT INTO `currencies` (`id`, `name`, `symbol`, `exchange_rate`, `status`, `code`, `created_at`, `updated_at`) VALUES (1,'U.S. Dollar','$',1.00000,1,'USD','2018-10-09 11:35:08','2018-10-17 05:50:52'),(2,'Australian Dollar','$',1.28000,1,'AUD','2018-10-09 11:35:08','2019-02-04 05:51:55'),(5,'Brazilian Real','R$',3.25000,1,'BRL','2018-10-09 11:35:08','2018-10-17 05:51:00'),(6,'Canadian Dollar','$',1.27000,1,'CAD','2018-10-09 11:35:08','2018-10-09 11:35:08'),(7,'Czech Koruna','Kč',20.65000,1,'CZK','2018-10-09 11:35:08','2018-10-09 11:35:08'),(8,'Danish Krone','kr',6.05000,1,'DKK','2018-10-09 11:35:08','2018-10-09 11:35:08'),(9,'Euro','€',0.85000,1,'EUR','2018-10-09 11:35:08','2018-10-09 11:35:08'),(10,'Hong Kong Dollar','$',7.83000,1,'HKD','2018-10-09 11:35:08','2018-10-09 11:35:08'),(11,'Hungarian Forint','Ft',255.24000,1,'HUF','2018-10-09 11:35:08','2018-10-09 11:35:08'),(12,'Israeli New Sheqel','₪',3.48000,1,'ILS','2018-10-09 11:35:08','2018-10-09 11:35:08'),(13,'Japanese Yen','¥',107.12000,1,'JPY','2018-10-09 11:35:08','2018-10-09 11:35:08'),(14,'Malaysian Ringgit','RM',3.91000,1,'MYR','2018-10-09 11:35:08','2018-10-09 11:35:08'),(15,'Mexican Peso','$',18.72000,1,'MXN','2018-10-09 11:35:08','2018-10-09 11:35:08'),(16,'Norwegian Krone','kr',7.83000,1,'NOK','2018-10-09 11:35:08','2018-10-09 11:35:08'),(17,'New Zealand Dollar','$',1.38000,1,'NZD','2018-10-09 11:35:08','2018-10-09 11:35:08'),(18,'Philippine Peso','₱',52.26000,1,'PHP','2018-10-09 11:35:08','2018-10-09 11:35:08'),(19,'Polish Zloty','zł',3.39000,1,'PLN','2018-10-09 11:35:08','2018-10-09 11:35:08'),(20,'Pound Sterling','£',0.72000,1,'GBP','2018-10-09 11:35:08','2018-10-09 11:35:08'),(21,'Russian Ruble','руб',55.93000,1,'RUB','2018-10-09 11:35:08','2018-10-09 11:35:08'),(22,'Singapore Dollar','$',1.32000,1,'SGD','2018-10-09 11:35:08','2018-10-09 11:35:08'),(23,'Swedish Krona','kr',8.19000,1,'SEK','2018-10-09 11:35:08','2018-10-09 11:35:08'),(24,'Swiss Franc','CHF',0.94000,1,'CHF','2018-10-09 11:35:08','2018-10-09 11:35:08'),(26,'Thai Baht','฿',31.39000,1,'THB','2018-10-09 11:35:08','2018-10-09 11:35:08'),(27,'Taka','৳',84.00000,1,'BDT','2018-10-09 11:35:08','2018-12-02 05:16:13'),(28,'Indian Rupee','Rs',68.45000,1,'Rupee','2019-07-07 10:33:46','2019-07-07 10:33:46'),(29,'Pakistan Rupees','Pkr',160.00000,1,'Pkr','2021-01-07 03:49:21','2021-01-07 03:49:39');
/*!40000 ALTER TABLE `currencies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `customer_package_payments`
--

DROP TABLE IF EXISTS `customer_package_payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_package_payments` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `customer_package_id` int(11) NOT NULL,
  `payment_method` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `payment_details` longtext COLLATE utf8_unicode_ci NOT NULL,
  `approval` int(1) NOT NULL,
  `offline_payment` int(1) NOT NULL COMMENT '1=offline payment\r\n2=online paymnet',
  `reciept` varchar(150) COLLATE utf8_unicode_ci NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_package_payments`
--

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

--
-- Table structure for table `customer_package_translations`
--

DROP TABLE IF EXISTS `customer_package_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_package_translations` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `customer_package_id` bigint(20) NOT NULL,
  `name` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `lang` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_package_translations`
--

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

--
-- Table structure for table `customer_packages`
--

DROP TABLE IF EXISTS `customer_packages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_packages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `amount` double(20,2) DEFAULT NULL,
  `product_upload` int(11) DEFAULT NULL,
  `logo` varchar(150) COLLATE utf8_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_packages`
--

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

--
-- Table structure for table `customer_product_translations`
--

DROP TABLE IF EXISTS `customer_product_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_product_translations` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `customer_product_id` bigint(20) NOT NULL,
  `name` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
  `unit` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
  `description` longtext COLLATE utf8_unicode_ci,
  `lang` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_product_translations`
--

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

--
-- Table structure for table `customer_products`
--

DROP TABLE IF EXISTS `customer_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customer_products` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `published` int(1) NOT NULL DEFAULT '0',
  `status` int(1) NOT NULL DEFAULT '0',
  `added_by` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
  `user_id` int(11) DEFAULT NULL,
  `category_id` int(11) DEFAULT NULL,
  `subcategory_id` int(11) DEFAULT NULL,
  `subsubcategory_id` int(11) DEFAULT NULL,
  `brand_id` int(11) DEFAULT NULL,
  `photos` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `thumbnail_img` varchar(150) COLLATE utf8_unicode_ci DEFAULT NULL,
  `conditon` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
  `location` text COLLATE utf8_unicode_ci,
  `video_provider` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
  `video_link` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
  `unit` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
  `tags` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `description` mediumtext COLLATE utf8_unicode_ci,
  `unit_price` double(20,2) DEFAULT '0.00',
  `meta_title` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
  `meta_description` varchar(500) COLLATE utf8_unicode_ci DEFAULT NULL,
  `meta_img` varchar(150) COLLATE utf8_unicode_ci DEFAULT NULL,
  `pdf` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
  `slug` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customer_products`
--

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

--
-- Table structure for table `customers`
--

DROP TABLE IF EXISTS `customers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `customers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `customers`
--

LOCK TABLES `customers` WRITE;
/*!40000 ALTER TABLE `customers` DISABLE KEYS */;
INSERT INTO `customers` (`id`, `user_id`, `created_at`, `updated_at`) VALUES (4,8,'2019-08-01 10:35:09','2019-08-01 10:35:09'),(5,10,'2021-01-21 06:19:12','2021-01-21 06:19:12'),(6,11,'2021-01-21 07:50:26','2021-01-21 07:50:26'),(7,12,'2021-01-21 08:46:52','2021-01-21 08:46:52'),(8,13,'2021-01-22 08:11:27','2021-01-22 08:11:27');
/*!40000 ALTER TABLE `customers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `flash_deal_products`
--

DROP TABLE IF EXISTS `flash_deal_products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `flash_deal_products` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `flash_deal_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  `discount` double(20,2) DEFAULT '0.00',
  `discount_type` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `flash_deal_products`
--

LOCK TABLES `flash_deal_products` WRITE;
/*!40000 ALTER TABLE `flash_deal_products` DISABLE KEYS */;
INSERT INTO `flash_deal_products` (`id`, `flash_deal_id`, `product_id`, `discount`, `discount_type`, `created_at`, `updated_at`) VALUES (20,1,613,0.00,'amount','2021-01-23 07:42:09','2021-01-23 07:42:09'),(21,1,617,0.00,'amount','2021-01-23 07:42:09','2021-01-23 07:42:09'),(22,1,618,0.00,'amount','2021-01-23 07:42:09','2021-01-23 07:42:09'),(23,1,619,0.00,'amount','2021-01-23 07:42:09','2021-01-23 07:42:09'),(24,1,620,0.00,'amount','2021-01-23 07:42:09','2021-01-23 07:42:09'),(25,1,621,0.00,'amount','2021-01-23 07:42:09','2021-01-23 07:42:09'),(26,1,624,0.00,'amount','2021-01-23 07:42:09','2021-01-23 07:42:09'),(27,1,636,0.00,'amount','2021-01-23 07:42:09','2021-01-23 07:42:09'),(28,1,637,0.00,'amount','2021-01-23 07:42:09','2021-01-23 07:42:09'),(29,1,641,0.00,'amount','2021-01-23 07:42:09','2021-01-23 07:42:09'),(30,1,720,0.00,'amount','2021-01-23 07:42:09','2021-01-23 07:42:09'),(31,1,730,0.00,'amount','2021-01-23 07:42:09','2021-01-23 07:42:09');
/*!40000 ALTER TABLE `flash_deal_products` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `flash_deal_translations`
--

DROP TABLE IF EXISTS `flash_deal_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `flash_deal_translations` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `flash_deal_id` bigint(20) NOT NULL,
  `title` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `lang` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `flash_deal_translations`
--

LOCK TABLES `flash_deal_translations` WRITE;
/*!40000 ALTER TABLE `flash_deal_translations` DISABLE KEYS */;
INSERT INTO `flash_deal_translations` (`id`, `flash_deal_id`, `title`, `lang`, `created_at`, `updated_at`) VALUES (1,1,'Brand Opening Sale','en','2021-01-13 01:26:14','2021-01-13 01:26:14');
/*!40000 ALTER TABLE `flash_deal_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `flash_deals`
--

DROP TABLE IF EXISTS `flash_deals`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `flash_deals` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `start_date` int(20) DEFAULT NULL,
  `end_date` int(20) DEFAULT NULL,
  `status` int(1) NOT NULL DEFAULT '0',
  `featured` int(1) NOT NULL DEFAULT '0',
  `background_color` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `text_color` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `banner` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `slug` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `flash_deals`
--

LOCK TABLES `flash_deals` WRITE;
/*!40000 ALTER TABLE `flash_deals` DISABLE KEYS */;
INSERT INTO `flash_deals` (`id`, `title`, `start_date`, `end_date`, `status`, `featured`, `background_color`, `text_color`, `banner`, `slug`, `created_at`, `updated_at`) VALUES (1,'Brand Opening Sale',1610496000,1613865540,1,1,'#fff','dark','1027','brand-opening-sale-1oyrs','2021-01-13 01:26:14','2021-01-13 01:28:01');
/*!40000 ALTER TABLE `flash_deals` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `general_settings`
--

DROP TABLE IF EXISTS `general_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `general_settings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `frontend_color` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'default',
  `logo` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `footer_logo` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `admin_logo` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `admin_login_background` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `admin_login_sidebar` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `favicon` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `site_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address` varchar(1000) COLLATE utf8_unicode_ci DEFAULT NULL,
  `description` mediumtext COLLATE utf8_unicode_ci NOT NULL,
  `phone` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
  `email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `facebook` varchar(1000) COLLATE utf8_unicode_ci DEFAULT NULL,
  `instagram` varchar(1000) COLLATE utf8_unicode_ci DEFAULT NULL,
  `twitter` varchar(1000) COLLATE utf8_unicode_ci DEFAULT NULL,
  `youtube` varchar(1000) COLLATE utf8_unicode_ci DEFAULT NULL,
  `google_plus` varchar(1000) COLLATE utf8_unicode_ci DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `general_settings`
--

LOCK TABLES `general_settings` WRITE;
/*!40000 ALTER TABLE `general_settings` DISABLE KEYS */;
INSERT INTO `general_settings` (`id`, `frontend_color`, `logo`, `footer_logo`, `admin_logo`, `admin_login_background`, `admin_login_sidebar`, `favicon`, `site_name`, `address`, `description`, `phone`, `email`, `facebook`, `instagram`, `twitter`, `youtube`, `google_plus`, `created_at`, `updated_at`) VALUES (1,'default','uploads/logo/pfdIuiMeXGkDAIpPEUrvUCbQrOHu484nbGfz77zB.png',NULL,'uploads/admin_logo/wCgHrz0Q5QoL1yu4vdrNnQIr4uGuNL48CXfcxOuS.png',NULL,NULL,'uploads/favicon/uHdGidSaRVzvPgDj6JFtntMqzJkwDk9659233jrb.png','Active Ecommerce CMS','Demo Address','Active eCommerce CMS is a Multi vendor system is such a platform to build a border less marketplace.','1234567890','admin@example.com','https://www.facebook.com','https://www.instagram.com','https://www.twitter.com','https://www.youtube.com','https://www.googleplus.com','2019-03-13 08:01:06','2019-03-13 02:01:06');
/*!40000 ALTER TABLE `general_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `home_categories`
--

DROP TABLE IF EXISTS `home_categories`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `home_categories` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `category_id` int(11) NOT NULL,
  `subsubcategories` varchar(1000) COLLATE utf8_unicode_ci DEFAULT NULL,
  `status` int(1) NOT NULL DEFAULT '1',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `home_categories`
--

LOCK TABLES `home_categories` WRITE;
/*!40000 ALTER TABLE `home_categories` DISABLE KEYS */;
INSERT INTO `home_categories` (`id`, `category_id`, `subsubcategories`, `status`, `created_at`, `updated_at`) VALUES (1,1,'[\"1\"]',1,'2019-03-12 06:38:23','2019-03-12 06:38:23'),(2,2,'[\"10\"]',1,'2019-03-12 06:44:54','2019-03-12 06:44:54');
/*!40000 ALTER TABLE `home_categories` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `languages`
--

DROP TABLE IF EXISTS `languages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `languages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `code` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `rtl` int(1) NOT NULL DEFAULT '0',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `languages`
--

LOCK TABLES `languages` WRITE;
/*!40000 ALTER TABLE `languages` DISABLE KEYS */;
INSERT INTO `languages` (`id`, `name`, `code`, `rtl`, `created_at`, `updated_at`) VALUES (1,'English','en',0,'2019-01-20 12:13:20','2019-01-20 12:13:20');
/*!40000 ALTER TABLE `languages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `links`
--

DROP TABLE IF EXISTS `links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `links` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `url` varchar(200) COLLATE utf8_unicode_ci NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `links`
--

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

--
-- Table structure for table `messages`
--

DROP TABLE IF EXISTS `messages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `messages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `conversation_id` int(11) NOT NULL,
  `user_id` int(11) NOT NULL,
  `message` text COLLATE utf32_unicode_ci,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf32 COLLATE=utf32_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `messages`
--

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

--
-- Table structure for table `migrations`
--

DROP TABLE IF EXISTS `migrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `migrations` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `migration` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
  `batch` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `migrations`
--

LOCK TABLES `migrations` WRITE;
/*!40000 ALTER TABLE `migrations` DISABLE KEYS */;
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1,'2014_10_12_000000_create_users_table',1),(2,'2014_10_12_100000_create_password_resets_table',1);
/*!40000 ALTER TABLE `migrations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oauth_access_tokens`
--

DROP TABLE IF EXISTS `oauth_access_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `oauth_access_tokens` (
  `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  `client_id` int(10) unsigned NOT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `scopes` text COLLATE utf8mb4_unicode_ci,
  `revoked` tinyint(1) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `expires_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `oauth_access_tokens_user_id_index` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oauth_access_tokens`
--

LOCK TABLES `oauth_access_tokens` WRITE;
/*!40000 ALTER TABLE `oauth_access_tokens` DISABLE KEYS */;
INSERT INTO `oauth_access_tokens` (`id`, `user_id`, `client_id`, `name`, `scopes`, `revoked`, `created_at`, `updated_at`, `expires_at`) VALUES ('0ef7934f992d1e49ea17c75e97d6a92b2f45dcee967da11e4f2b0e89057868e37c3815cbd9613b8c',12,1,'Personal Access Token','[]',0,'2021-01-21 08:58:45','2021-01-21 08:58:45','2022-12-22 13:58:45'),('125ce8289850f80d9fea100325bf892fbd0deba1f87dbfc2ab81fb43d57377ec24ed65f7dc560e46',1,1,'Personal Access Token','[]',0,'2019-07-30 04:51:13','2019-07-30 04:51:13','2020-07-30 10:51:13'),('293d2bb534220c070c4e90d25b5509965d23d3ddbc05b1e29fb4899ae09420ff112dbccab1c6f504',1,1,'Personal Access Token','[]',1,'2019-08-04 06:00:04','2019-08-04 06:00:04','2020-08-04 12:00:04'),('357ea046643d96e8d1d1ba8459a1fe10103b94c60b2bd3651052d4473969dcfaae0cb530b738b75b',12,1,'Personal Access Token','[]',0,'2021-01-21 09:31:20','2021-01-21 09:31:20','2022-12-22 14:31:20'),('5149195c05af87d8a3c5b09825474fa28170f2dfff78700a3d16bdecc96c3594669d426de07285f9',12,1,'Personal Access Token','[]',0,'2021-01-21 08:46:52','2021-01-21 08:46:52','2022-12-22 13:46:52'),('5363e91c7892acdd6417aa9c7d4987d83568e229befbd75be64282dbe8a88147c6c705e06c1fb2bf',1,1,'Personal Access Token','[]',0,'2019-07-13 06:44:28','2019-07-13 06:44:28','2020-07-13 12:44:28'),('681b4a4099fac5e12517307b4027b54df94cbaf0cbf6b4bf496534c94f0ccd8a79dd6af9742d076b',1,1,'Personal Access Token','[]',1,'2019-08-04 07:23:06','2019-08-04 07:23:06','2020-08-04 13:23:06'),('6d229e3559e568df086c706a1056f760abc1370abe74033c773490581a042442154afa1260c4b6f0',1,1,'Personal Access Token','[]',1,'2019-08-04 07:32:12','2019-08-04 07:32:12','2020-08-04 13:32:12'),('6efc0f1fc3843027ea1ea7cd35acf9c74282f0271c31d45a164e7b27025a315d31022efe7bb94aaa',1,1,'Personal Access Token','[]',0,'2019-08-08 02:35:26','2019-08-08 02:35:26','2020-08-08 08:35:26'),('75f22a85480a822e6f886248cf1fc33632e851eb6b8e8d29aa48e0eb18ce0c472446eff20ea16a1d',12,1,'Personal Access Token','[]',0,'2021-01-21 09:44:28','2021-01-21 09:44:28','2022-12-22 14:44:28'),('7745b763da15a06eaded371330072361b0524c41651cf48bf76fc1b521a475ece78703646e06d3b0',1,1,'Personal Access Token','[]',1,'2019-08-04 07:29:44','2019-08-04 07:29:44','2020-08-04 13:29:44'),('815b625e239934be293cd34479b0f766bbc1da7cc10d464a2944ddce3a0142e943ae48be018ccbd0',1,1,'Personal Access Token','[]',1,'2019-07-22 02:07:47','2019-07-22 02:07:47','2020-07-22 08:07:47'),('8921a4c96a6d674ac002e216f98855c69de2568003f9b4136f6e66f4cb9545442fb3e37e91a27cad',1,1,'Personal Access Token','[]',1,'2019-08-04 06:05:05','2019-08-04 06:05:05','2020-08-04 12:05:05'),('8d8b85720304e2f161a66564cec0ecd50d70e611cc0efbf04e409330086e6009f72a39ce2191f33a',1,1,'Personal Access Token','[]',1,'2019-08-04 06:44:35','2019-08-04 06:44:35','2020-08-04 12:44:35'),('bcaaebdead4c0ef15f3ea6d196fd80749d309e6db8603b235e818cb626a5cea034ff2a55b66e3e1a',1,1,'Personal Access Token','[]',1,'2019-08-04 07:14:32','2019-08-04 07:14:32','2020-08-04 13:14:32'),('c25417a5c728073ca8ba57058ded43d496a9d2619b434d2a004dd490a64478c08bc3e06ffc1be65d',1,1,'Personal Access Token','[]',1,'2019-07-30 01:45:31','2019-07-30 01:45:31','2020-07-30 07:45:31'),('c7423d85b2b5bdc5027cb283be57fa22f5943cae43f60b0ed27e6dd198e46f25e3501b3081ed0777',1,1,'Personal Access Token','[]',1,'2019-08-05 05:02:59','2019-08-05 05:02:59','2020-08-05 11:02:59'),('e76f19dbd5c2c4060719fb1006ac56116fd86f7838b4bf74e2c0a0ac9696e724df1e517dbdb357f4',1,1,'Personal Access Token','[]',1,'2019-07-15 02:53:40','2019-07-15 02:53:40','2020-07-15 08:53:40'),('ed7c269dd6f9a97750a982f62e0de54749be6950e323cdfef892a1ec93f8ddbacf9fe26e6a42180e',1,1,'Personal Access Token','[]',1,'2019-07-13 06:36:45','2019-07-13 06:36:45','2020-07-13 12:36:45'),('f6d1475bc17a27e389000d3df4da5c5004ce7610158b0dd414226700c0f6db48914637b4c76e1948',1,1,'Personal Access Token','[]',1,'2019-08-04 07:22:01','2019-08-04 07:22:01','2020-08-04 13:22:01'),('f85e4e444fc954430170c41779a4238f84cd6fed905f682795cd4d7b6a291ec5204a10ac0480eb30',1,1,'Personal Access Token','[]',1,'2019-07-30 06:38:49','2019-07-30 06:38:49','2020-07-30 12:38:49'),('f8bf983a42c543b99128296e4bc7c2d17a52b5b9ef69670c629b93a653c6a4af27be452e0c331f79',1,1,'Personal Access Token','[]',1,'2019-08-04 07:28:55','2019-08-04 07:28:55','2020-08-04 13:28:55');
/*!40000 ALTER TABLE `oauth_access_tokens` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oauth_auth_codes`
--

DROP TABLE IF EXISTS `oauth_auth_codes`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `oauth_auth_codes` (
  `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
  `user_id` int(11) NOT NULL,
  `client_id` int(10) unsigned NOT NULL,
  `scopes` text COLLATE utf8mb4_unicode_ci,
  `revoked` tinyint(1) NOT NULL,
  `expires_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oauth_auth_codes`
--

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

--
-- Table structure for table `oauth_clients`
--

DROP TABLE IF EXISTS `oauth_clients`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `oauth_clients` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(11) DEFAULT NULL,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `secret` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
  `redirect` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `personal_access_client` tinyint(1) NOT NULL,
  `password_client` tinyint(1) NOT NULL,
  `revoked` tinyint(1) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `oauth_clients_user_id_index` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oauth_clients`
--

LOCK TABLES `oauth_clients` WRITE;
/*!40000 ALTER TABLE `oauth_clients` DISABLE KEYS */;
INSERT INTO `oauth_clients` (`id`, `user_id`, `name`, `secret`, `redirect`, `personal_access_client`, `password_client`, `revoked`, `created_at`, `updated_at`) VALUES (1,NULL,'Laravel Personal Access Client','eR2y7WUuem28ugHKppFpmss7jPyOHZsMkQwBo1Jj','http://localhost',1,0,0,'2019-07-13 06:17:34','2019-07-13 06:17:34'),(2,NULL,'Laravel Password Grant Client','WLW2Ol0GozbaXEnx1NtXoweYPuKEbjWdviaUgw77','http://localhost',0,1,0,'2019-07-13 06:17:34','2019-07-13 06:17:34');
/*!40000 ALTER TABLE `oauth_clients` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oauth_personal_access_clients`
--

DROP TABLE IF EXISTS `oauth_personal_access_clients`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `oauth_personal_access_clients` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `client_id` int(10) unsigned NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `oauth_personal_access_clients_client_id_index` (`client_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oauth_personal_access_clients`
--

LOCK TABLES `oauth_personal_access_clients` WRITE;
/*!40000 ALTER TABLE `oauth_personal_access_clients` DISABLE KEYS */;
INSERT INTO `oauth_personal_access_clients` (`id`, `client_id`, `created_at`, `updated_at`) VALUES (1,1,'2019-07-13 06:17:34','2019-07-13 06:17:34');
/*!40000 ALTER TABLE `oauth_personal_access_clients` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `oauth_refresh_tokens`
--

DROP TABLE IF EXISTS `oauth_refresh_tokens`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `oauth_refresh_tokens` (
  `id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
  `access_token_id` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
  `revoked` tinyint(1) NOT NULL,
  `expires_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `oauth_refresh_tokens_access_token_id_index` (`access_token_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `oauth_refresh_tokens`
--

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

--
-- Table structure for table `order_details`
--

DROP TABLE IF EXISTS `order_details`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `order_details` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `order_id` int(11) NOT NULL,
  `seller_id` int(11) DEFAULT NULL,
  `product_id` int(11) NOT NULL,
  `variation` longtext COLLATE utf8_unicode_ci,
  `price` double(20,2) DEFAULT NULL,
  `tax` double(20,2) NOT NULL DEFAULT '0.00',
  `shipping_cost` double(20,2) NOT NULL DEFAULT '0.00',
  `quantity` int(11) DEFAULT NULL,
  `payment_status` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'unpaid',
  `delivery_status` varchar(20) COLLATE utf8_unicode_ci DEFAULT 'pending',
  `shipping_type` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `pickup_point_id` int(11) DEFAULT NULL,
  `product_referral_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `order_details`
--

LOCK TABLES `order_details` WRITE;
/*!40000 ALTER TABLE `order_details` DISABLE KEYS */;
INSERT INTO `order_details` (`id`, `order_id`, `seller_id`, `product_id`, `variation`, `price`, `tax`, `shipping_cost`, `quantity`, `payment_status`, `delivery_status`, `shipping_type`, `pickup_point_id`, `product_referral_code`, `created_at`, `updated_at`) VALUES (1,1,9,517,'',670.00,0.00,0.00,1,'unpaid','pending','home_delivery',NULL,NULL,'2021-01-10 02:59:38','2021-01-10 02:59:38'),(2,2,9,512,NULL,1040.00,0.00,0.00,1,'unpaid','pending',NULL,NULL,NULL,'2021-01-21 09:47:07','2021-01-21 09:47:07');
/*!40000 ALTER TABLE `order_details` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `orders`
--

DROP TABLE IF EXISTS `orders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `orders` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) DEFAULT NULL,
  `guest_id` int(11) DEFAULT NULL,
  `shipping_address` longtext COLLATE utf8_unicode_ci,
  `payment_type` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
  `payment_status` varchar(20) COLLATE utf8_unicode_ci DEFAULT 'unpaid',
  `payment_details` longtext COLLATE utf8_unicode_ci,
  `grand_total` double(20,2) DEFAULT NULL,
  `coupon_discount` double(20,2) NOT NULL DEFAULT '0.00',
  `code` mediumtext COLLATE utf8_unicode_ci,
  `date` int(20) NOT NULL,
  `viewed` int(1) NOT NULL DEFAULT '0',
  `delivery_viewed` int(1) NOT NULL DEFAULT '1',
  `payment_status_viewed` int(1) DEFAULT '1',
  `commission_calculated` int(11) NOT NULL DEFAULT '0',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `orders`
--

LOCK TABLES `orders` WRITE;
/*!40000 ALTER TABLE `orders` DISABLE KEYS */;
INSERT INTO `orders` (`id`, `user_id`, `guest_id`, `shipping_address`, `payment_type`, `payment_status`, `payment_details`, `grand_total`, `coupon_discount`, `code`, `date`, `viewed`, `delivery_viewed`, `payment_status_viewed`, `commission_calculated`, `created_at`, `updated_at`) VALUES (1,NULL,851486,'{\"name\":\"Saeed\",\"email\":\"saeedgill194@gmail.com\",\"address\":\"194-b gulistan colony faisalabad\",\"country\":\"Pakistan\",\"city\":\"Faisalabad\",\"postal_code\":\"38000\",\"phone\":\"03004192038\",\"checkout_type\":\"guest\"}','cash_on_delivery','unpaid',NULL,670.00,0.00,'20210110-07593845',1610265578,1,0,0,0,'2021-01-10 02:59:38','2021-01-21 06:06:36'),(2,12,NULL,'{\"name\":\"arman khan\",\"email\":\"armankhanshah@gmail.com\",\"address\":\"test\",\"country\":\"fsd\",\"city\":\"fsd\",\"postal_code\":\"38000\",\"phone\":\"1234\",\"checkout_type\":\"logged\"}','cod','unpaid',NULL,1040.00,0.00,'20210121-024707',1611240427,1,1,1,0,'2021-01-21 09:47:07','2021-01-21 09:47:38');
/*!40000 ALTER TABLE `orders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `page_translations`
--

DROP TABLE IF EXISTS `page_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `page_translations` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `page_id` bigint(20) NOT NULL,
  `title` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `content` longtext COLLATE utf8_unicode_ci NOT NULL,
  `lang` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `page_translations`
--

LOCK TABLES `page_translations` WRITE;
/*!40000 ALTER TABLE `page_translations` DISABLE KEYS */;
INSERT INTO `page_translations` (`id`, `page_id`, `title`, `content`, `lang`, `created_at`, `updated_at`) VALUES (1,6,'Privacy Policy Page','<h2><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; font-size: 13px; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>Velburry</b> respect and secure your privacy. Our team committed to assuring the privacy of every customer who visits our website. We use advanced technology and secure privacy protection controls to protect your personal information. If you are just browsing our website, you can do so anonymously. Velburry website does not ask to enter any personal information during your visit unless you place an order for services or decide to log into our customer portal to provide information or receive documents. However, we do not involve and share your personal information to third parties, except as permitted or required by law or as required for specific services as explained in this privacy statement. Further note that Velburry does not share, sell, or lease any personal information collected at our site, including membership forms or e-mail lists. Velburry considers all personal information confidential. If you want to purchase anything from our online shoe store, then don\'t be worried regarding your information. Our talented team members will store your personal data in our database and provide one of our employees to contact you when delivering.</span></p><br style=\"font-size: 13px;\"><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; font-size: 13px; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Our standard information security Policy controls helps to prevent unauthorized access to customer’s personal information. The information that we receive from our beloved customer is mandatory in fulfilling your needs and providing excellent service quality. We will give rights to authorized employees who are trained in the proper handling of customer identification information to have access to your information. Our experts technicians regularly test this secure technology and try to protect the confidentiality of information about you.</span></p><br style=\"font-size: 13px;\"><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; font-size: 13px; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">&nbsp;If you have any query or need suggestions regarding our collection, please contact us at +92 300 4192038 or email us at </span><a href=\"sales@velburry.com\">sales@velburry.com</a></p><div><span style=\"font-size: 11pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><br></span></div></h2>','en','2021-01-11 01:45:02','2021-01-14 03:17:47'),(2,5,'Term Conditions Page','<h2><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">These Terms and Conditions (\"Terms\", \"Terms and Conditions\") govern your relationship with Velburry.com website (the \"Service\") operated by Velburry.com&nbsp;(\"us\", \"we\", or \"our\").</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">Please read these Terms and Conditions carefully before using the Service.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">Your access to and use of the Service is conditioned on your acceptance of and compliance with these Terms. These Terms apply to all visitors, users and others who access or use the Service.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">By accessing or using the Service you agree to be bound by these Terms. If you disagree with any part of the terms then you may not access the Service.</p></h2><h2 style=\"line-height: 1.35; font-size: 18px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(102, 102, 102);\">Purchases</h2><h2><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">If you wish to purchase any product or service made available through the Service (\"Purchase\"), you may be asked to supply certain information relevant to your Purchase including, without limitation, your credit card number, the expiration date of your credit card, your billing address, and your shipping information. In certain cases, we may ask for additional informtation or documents to process your order.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">You represent and warrant that: (i) you have the legal right to use any credit card(s) or other payment method(s) in connection with any Purchase; and that (ii) the information you supply to us is true, correct and complete.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">By submitting such information, you grant us the right to provide the information to third parties for purposes of facilitating the completion of Purchases.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">We reserve the right to refuse or cancel your order at any time for certain reasons including but not limited to: product or service availability, errors in the description or price of the product or service, error in your order or other reasons.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">We reserve the right to refuse or cancel your order if fraud or an unauthorized or illegal transaction is suspected.</p></h2><h2 style=\"line-height: 1.35; font-size: 18px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(102, 102, 102);\">Availability, Errors and Inaccuracies</h2><h2><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">We are constantly updating our offerings of products and services on the Service. The products or services available on our Service may be mispriced, described inaccurately, or unavailable, and we may experience delays in updating information on the Service and in our advertising on other web sites.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">We cannot and do not guarantee the accuracy or completeness of any information, including prices, product images, specifications, availability, and services. We reserve the right to change or update information and to correct errors, inaccuracies, or omissions at any time without prior notice.</p></h2><h2 style=\"line-height: 1.35; font-size: 18px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(102, 102, 102);\">Contests, Sweepstakes and Promotions</h2><h2><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">Any contests, sweepstakes or other promotions (collectively, \"Promotions\") made available through the Service may be governed by rules that are separate from these Terms. If you participate in any Promotions, please review the applicable rules as well as our Privacy Policy. If the rules for a Promotion conflict with these Terms, the Promotion rules will apply.</p></h2><h2 style=\"line-height: 1.35; font-size: 18px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(102, 102, 102);\">Accounts</h2><h2><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">When you create an account with us, you must provide us information that is accurate, complete, and current at all times. Failure to do so constitutes a breach of the Terms, which may result in immediate termination of your account on our Service.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">You are responsible for safeguarding the password that you use to access the Service and for any activities or actions under your password, whether your password is with our Service or a third-party service.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">You agree not to disclose your password to any third party. You must notify us immediately upon becoming aware of any breach of security or unauthorized use of your account.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">You may not use as a username the name of another person or entity or that is not lawfully available for use, a name or trade mark that is subject to any rights of another person or entity other than you without appropriate authorization, or a name that is otherwise offensive, vulgar or obscene.</p></h2><h2 style=\"line-height: 1.35; font-size: 18px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(102, 102, 102);\">Intellectual Property</h2><h2><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">The Service and its original content, features and functionality are and will remain the exclusive property of Velburry.com&nbsp;and its licensors. The Service is protected by copyright, trademark, and other laws of both the Pakistan and foreign countries. Our trademarks and trade dress may not be used in connection with any product or service without the prior written consent of Velburry.com.</p></h2><h2 style=\"line-height: 1.35; font-size: 18px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(102, 102, 102);\">Links To Other Web Sites</h2><h2><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">Our Service may contain links to third-party web sites or services that are not owned or controlled by Velburry.com.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">Velburry.com has no control over, and assumes no responsibility for, the content, privacy policies, or practices of any third party web sites or services. You further acknowledge and agree that Velburry.com&nbsp;shall not be responsible or liable, directly or indirectly, for any damage or loss caused or alleged to be caused by or in connection with use of or reliance on any such content, goods or services available on or through any such web sites or services.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">We strongly advise you to read the terms and conditions and privacy policies of any third-party web sites or services that you visit.</p></h2><h2 style=\"line-height: 1.35; font-size: 18px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(102, 102, 102);\">Termination</h2><h2><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">We may terminate or suspend your account immediately, without prior notice or liability, for any reason whatsoever, including without limitation if you breach the Terms.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">Upon termination, your right to use the Service will immediately cease. If you wish to terminate your account, you may simply discontinue using the Service.</p></h2><h2 style=\"line-height: 1.35; font-size: 18px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(102, 102, 102);\">Governing Law</h2><h2><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">These Terms shall be governed and construed in accordance with the laws of Pakistan, without regard to its conflict of law provisions.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">Our failure to enforce any right or provision of these Terms will not be considered a waiver of those rights. If any provision of these Terms is held to be invalid or unenforceable by a court, the remaining provisions of these Terms will remain in effect. These Terms constitute the entire agreement between us regarding our Service, and supersede and replace any prior agreements we might have between us regarding the Service.</p></h2><h2 style=\"line-height: 1.35; font-size: 18px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(102, 102, 102);\">Changes</h2><h2><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">We reserve the right, at our sole discretion, to modify or replace these Terms at any time. If a revision is material we will try to provide at least 30 days notice prior to any new terms taking effect. What constitutes a material change will be determined at our sole discretion.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">By continuing to access or use our Service after those revisions become effective, you agree to be bound by the revised terms. If you do not agree to the new terms, please stop using the Service.</p></h2><h2 style=\"line-height: 1.35; font-size: 18px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(102, 102, 102);\">Contact Us</h2><h2><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">If you have any questions about these Terms, please contact us.</p></h2>','en','2021-01-11 01:45:38','2021-01-14 03:53:23'),(3,4,'Support Policy Page','<p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\">Welcome to Velburry.</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\">We’re so glad you’re here. Make yourself comfortable and have a good time, but please follow our house rules.&nbsp;</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\"><br></p><h2 open=\"\" sans\",=\"\" sans-serif;=\"\" color:=\"\" rgb(51,=\"\" 51,=\"\" 51);\"=\"\" style=\"line-height: 1.46;\">1. Accepting These Terms</h2><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\"><br></p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\">This document and the other documents that we reference below make up our house rules, or what we officially call our Terms of Use (the “Terms” for short).</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\">The Terms are a legally binding<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">contract</span>between you and Velburry.</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\">Disputes with Velburry&nbsp;contains an arbitration clause and class action waiver. By agreeing to the Terms, you<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">agree</span>to resolve all disputes through binding individual arbitration, which means that you waive any right to have those disputes decided by a<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">judge</span>or jury and that you waive your right to participate in class actions, class arbitrations, or representative actions. *</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\">This<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">contract</span>sets out your rights and responsibilities when you use Velburry, Pattern by Velburry, our mobile apps, and the other services provided by Velburry (we’ll refer to all of these collectively as our “Services”), so please read it carefully. By using any of our Services (even just browsing one of our websites), you’re agreeing to the Terms. If you don’t<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">agree</span>with the Terms, you may not use our Services.<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">Agree</span>with us? Great, read on!</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\"><br></p><h2 open=\"\" sans\",=\"\" sans-serif;=\"\" color:=\"\" rgb(51,=\"\" 51,=\"\" 51);\"=\"\" style=\"line-height: 1.46;\">2. Those Other Documents We Mentioned</h2><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\"><br></p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\">Velburry Services connect people both online and offline, to make,<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">sell,</span>&nbsp;and buy unique goods. Here’s a handy guide to help you understand the specific rules that are relevant for you, depending on how you use the Services:</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\">Our House Rules for Everyone. If you use any of our Services, you<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">agree</span>to these Terms, our Privacy Policy, and our Anti-Discrimination Policy.</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\">Our House Rules for Buyers. If you use our Services to browse or shop, these policies apply to you. You can read them here.</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\">Search and Advertising Ranking Disclosures. This is a concise summary of how Velburry&nbsp;organizes search results and advertising results that could include Your Content.</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\">All of these policies are a part of our Terms, so be sure to read the ones that are relevant for you. Of course, you’ll still want to read the rest of this document because it applies to everyone!</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\"><br></p><h2 open=\"\" sans\",=\"\" sans-serif;=\"\" color:=\"\" rgb(51,=\"\" 51,=\"\" 51);\"=\"\" style=\"line-height: 1.46;\">3. Your Privacy</h2><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\"><br></p><h2 open=\"\" sans\",=\"\" sans-serif;=\"\" color:=\"\" rgb(51,=\"\" 51,=\"\" 51);\"=\"\" style=\"line-height: 1.46;\"></h2><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\">We know your personal information is important to you, so it’s important to us. Our Privacy Policy details how your information is used when you use our Services. By using our Services, you’re also agreeing that we can process your information in the ways set out in the Privacy Policy, so please read it here.</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\">Both Velburry&nbsp;and sellers process members’ personal information (for example, buyer<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">name,</span><span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">email</span><span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">address,</span>&nbsp;and delivery<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">address)</span>&nbsp;and are therefore considered separate and independent data controllers of buyers’ personal information under POPI law. That means that each party is responsible for the personal information it processes in providing the Services. For example, if a seller accidentally discloses a buyer’s<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">name</span>and<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">email</span><span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">address</span>when fulfilling another buyer’s<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">order,</span>&nbsp;the seller, not Velburry, will be responsible for that unauthorized disclosure.&nbsp;</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\">If, however, Velburry&nbsp;and sellers are found to be joint data controllers of buyers’ personal information, and if Velburry&nbsp;is sued, fined, or otherwise incurs expenses because of something that you did as a joint data controller of buyer personal information, you<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">agree</span>to indemnify Velburry&nbsp;for the expenses it occurs in connection with your processing of buyer personal information. Indemnification (or What Happens If You Get Us Sued) below for more information about your indemnification obligations to Velburry.</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\"><br></p><h2 open=\"\" sans\",=\"\" sans-serif;=\"\" color:=\"\" rgb(51,=\"\" 51,=\"\" 51);\"=\"\" style=\"line-height: 1.46;\">4. Your Account with Velburry</h2><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\"><br></p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\">You’ll need to create an account with Velburry&nbsp;to use some of our Services. Here are a few rules about accounts with Velburry:</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\"><span style=\"font-weight: 600;\">A.</span>&nbsp;You must be 18 years or older to use our Services. Minors under 18 and at least 13 years of age are only permitted to use our Services through an account owned by a parent or legal guardian with their appropriate permission and under their direct supervision. Children under 13 years are not permitted to use Velburry&nbsp;or the Services. You are responsible for any and all account activity conducted by a minor on your account.</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\"><span style=\"font-weight: 600;\">B</span>. Be honest with us. Provide accurate information about yourself. It’s prohibited to use false information or impersonate another person or company through your account.</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\"><span style=\"font-weight: 600;\">C</span>. Choose an appropriate<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">name.</span>&nbsp;If you decide to not have your full<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">name</span>serve as the<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">name</span>associated with your account, you may not use language that is offensive, vulgar, infringes someone’s intellectual property rights, or otherwise violates the Terms.</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\"><span style=\"font-weight: 600;\">D</span>. You’re responsible for your account. You’re solely responsible for any activity on your account. If you’re sharing an account with other people, then the person whose financial information is on the account will ultimately be responsible for all activity. If you’re registering as a business entity, you personally guarantee that you have the authority to<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">agree</span>to the Terms on behalf of the business. Also, your accounts are not transferable.</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\"><span style=\"font-weight: 600;\">E</span>. Protect your<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">password.</span>&nbsp;As we mentioned above, you’re solely responsible for any activity on your account, so it’s important to keep your account<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">password</span>secure. Here’s a Help article on how to make your account more secure.</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\"><span style=\"font-weight: 600;\">F</span>. Let’s be clear about our relationship. These Terms don’t create any agency, partnership, joint venture, employment, or franchisee relationship between you and Velburry. This detailed Help article should answer any questions you may have about registering an account with Velburry.</p>','en','2021-01-14 03:24:01','2021-01-14 03:24:01'),(4,3,'Return Policy Page','<ul><p><li><span style=\"font-size: 16pt; line-height: 24.5333px;\">Vellbury is the one and only Selling brand of Pakistan which offers a lifetime return policy. We let you shop with confidence. Whatever you order, if you don’t like anything or any of our products don’t satisfy you then no worries, you can anytime return the product and refund your money.<o:p></o:p></span></li><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Manage your returns:<o:p></o:p></span></span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">You can simply ask for returns by using any of the following method:<o:p></o:p></span></span></p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left: 0.25in; text-indent: -0.25in;\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">1.<span times=\"\" new=\"\" roman\";\"=\"\" style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\">&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><span style=\"font-size: 16pt; line-height: 24.5333px;\">Call us on +92 300 4192038</span></p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left: 0.25in; text-indent: -0.25in;\"><span style=\"text-indent: -0.25in; font-weight: bolder;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">2.<span times=\"\" new=\"\" roman\";\"=\"\" style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\">&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><span style=\"text-indent: -0.25in; font-size: 16pt; line-height: 24.5333px;\">Simply log in to your account and press support button</span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Conditions of return:</span></span></p><ul style=\"margin-bottom: 1rem;\"><li style=\"margin-left: 0.25in;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">To enjoy the lifetime return policy opportunity the product must be in its original condition and unworn.<o:p></o:p></span></li><li style=\"margin-left: 0.25in;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">The packaging (box) and the product must be in an undamaged position. In case of any damage, you won’t qualify for the return.<o:p></o:p></span></li><li style=\"margin-left: 0.25in;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">You must have the invoice for your purchase.<o:p></o:p></span></li></ul><p class=\"MsoNormal\"></p><ul style=\"margin-bottom: 1rem;\"><li style=\"margin-left: 0.25in;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">If our product doesn’t satisfy you fully for any reason you can simply ask for a return by contacting us on +92 300 4192038 Or login to your account on our website and ask at our online support.<o:p></o:p></span></li></ul><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\"><o:p></o:p></span></span></p><p style=\"text-indent: -0.25in;\"><br></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Return in Sale and promotion days:<o:p></o:p></span></span></p><p class=\"MsoNormal\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">Please note, our return policy doesn’t work during the promotion or sale period. Your return request will be processed after the end of the promotion of the sale period. During this period the return may take 3-5 working days.<o:p></o:p></span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Faulty/damaged products:<o:p></o:p></span></span></p><p class=\"MsoNormal\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">If you receive a damaged, faulty, or wrong sized item, then please contact us online through our website or our contact number. You can also send back the parcel from your drop step by the delivery man at the spot.<o:p></o:p></span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Refund time:<o:p></o:p></span></span></p><p class=\"MsoNormal\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">The refund usually takes 3-5 days after we receive the item. We will refund you through your bank account, Easy Paisa, Jazz Cash, or card as per the ease of the customer.<o:p></o:p></span></p><p class=\"MsoNormal\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">If you find our product faulty or you are not satisfied with the product or its quality then let us know and send your parcel back at the following address.<o:p></o:p></span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Return Address:<o:p></o:p></span></span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><u><span style=\"font-size: 16pt; line-height: 24.5333px;\"><u style=\"font-size: 13px;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">Millat Chowk, Faisalabad Pakistan</span></u>&nbsp; &nbsp;&nbsp;</span></u></span></p><li><span style=\"font-size: 16pt; line-height: 24.5333px;\">&nbsp;is the one and only shoe brand of Pakistan which offers a lifetime return policy. We let you shop with confidence. Whatever you order, if you don’t like anything or any of our products don’t satisfy you then no worries, you can anytime return the product and refund your money.<o:p></o:p></span></li><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Manage your returns:<o:p></o:p></span></span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">You can simply ask for returns by using any of the following method:<o:p></o:p></span></span></p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left: 0.25in; text-indent: -0.25in;\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">1.<span times=\"\" new=\"\" roman\";\"=\"\" style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\">&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><span style=\"font-size: 16pt; line-height: 24.5333px;\">Call us on&nbsp;</span><span style=\"font-size: 21.3333px; text-indent: -24px;\">+92 300 4192038</span></p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left: 0.25in; text-indent: -0.25in;\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">2.<span times=\"\" new=\"\" roman\";\"=\"\" style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\">&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><span style=\"font-size: 16pt; line-height: 24.5333px;\">Simply log in to your account and press support button<o:p></o:p></span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Conditions of return:</span></span></p><ul style=\"margin-bottom: 1rem;\"><li style=\"margin-left: 0.25in;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">To enjoy the lifetime return policy opportunity the product must be in its original condition and unworn.<o:p></o:p></span></li><li style=\"margin-left: 0.25in;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">The packaging (box) and the product must be in an undamaged position. In case of any damage, you won’t qualify for the return.<o:p></o:p></span></li><li style=\"margin-left: 0.25in;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">You must have the invoice for your purchase.<o:p></o:p></span></li></ul><p class=\"MsoNormal\"></p><ul style=\"margin-bottom: 1rem;\"><li style=\"margin-left: 0.25in;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">If our product doesn’t satisfy you fully for any reason you can simply ask for a return by contacting us on +92 300 4192038 Or login to your account on our website and ask at our online support.<o:p></o:p></span></li></ul><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\"><o:p></o:p></span></span></p><p style=\"text-indent: -0.25in;\"><br></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Return in Sale and promotion days:<o:p></o:p></span></span></p><p class=\"MsoNormal\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">Please note, our return policy doesn’t work during the promotion or sale period. Your return request will be processed after the end of the promotion of the sale period. During this period the return may take 3-5 working days.<o:p></o:p></span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Faulty/damaged products:<o:p></o:p></span></span></p><p class=\"MsoNormal\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">If you receive a damaged, faulty, or wrong sized item, then please contact us online through our website or our contact number. You can also send back the parcel from your drop step by the delivery man at the spot.<o:p></o:p></span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Refund time:<o:p></o:p></span></span></p><p class=\"MsoNormal\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">The refund usually takes 3-5 days after we receive the item. We will refund you through your bank account, Easy Paisa, Jazz Cash, or card as per the ease of the customer.<o:p></o:p></span></p><p class=\"MsoNormal\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">If you find our product faulty or you are not satisfied with the product or its quality then let us know and send your parcel back at the following address.<o:p></o:p></span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Return Address:<o:p></o:p></span></span></p><u style=\"font-weight: 700;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">Millat Chowk, Faisalabad Pakistan</span></u></p><p><u style=\"font-weight: 700;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\"><br></span></u><li><span style=\"font-size: 16pt; line-height: 24.5333px;\">&nbsp;is the one and only shoe brand of Pakistan which offers a lifetime return policy. We let you shop with confidence. Whatever you order, if you don’t like anything or any of our products don’t satisfy you then no worries, you can anytime return the product and refund your money.<o:p></o:p></span></li></p></ul><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Manage your returns:<o:p></o:p></span></span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">You can simply ask for returns by using any of the following method:<o:p></o:p></span></span></p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left: 0.25in; text-indent: -0.25in;\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">1.<span times=\"\" new=\"\" roman\";\"=\"\" style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\">&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><span style=\"font-size: 16pt; line-height: 24.5333px;\">Call us on&nbsp;<o:p></o:p></span><span style=\"font-size: 21.3333px; text-indent: -24px;\">+92 300 4192038</span></p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left: 0.25in; text-indent: -0.25in;\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">2.<span times=\"\" new=\"\" roman\";\"=\"\" style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\">&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><span style=\"font-size: 16pt; line-height: 24.5333px;\">Simply log in to your account and press support button<o:p></o:p></span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Conditions of return:</span></span></p><ul><li style=\"margin-left: 0.25in;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">To enjoy the lifetime return policy opportunity the product must be in its original condition and unworn.<o:p></o:p></span></li><li style=\"margin-left: 0.25in;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">The packaging (box) and the product must be in an undamaged position. In case of any damage, you won’t qualify for the return.<o:p></o:p></span></li><li style=\"margin-left: 0.25in;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">You must have the invoice for your purchase.<o:p></o:p></span></li></ul><p class=\"MsoNormal\"></p><ul><li style=\"margin-left: 0.25in;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">If our product doesn’t satisfy you fully for any reason you can simply ask for a return by contacting us on +92 300 4192038&nbsp;Or login to your account on our website and ask at our online support.<o:p></o:p></span></li></ul><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\"><o:p></o:p></span></span></p><p style=\"text-indent: -0.25in;\"><br></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Return in Sale and promotion days:<o:p></o:p></span></span></p><p class=\"MsoNormal\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">Please note, our return policy doesn’t work during the promotion or sale period. Your return request will be processed after the end of the promotion of the sale period. During this period the return may take 3-5 working days.<o:p></o:p></span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Faulty/damaged products:<o:p></o:p></span></span></p><p class=\"MsoNormal\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">If you receive a damaged, faulty, or wrong sized item, then please contact us online through our website or our contact number. You can also send back the parcel from your drop step by the delivery man at the spot.<o:p></o:p></span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Refund time:<o:p></o:p></span></span></p><p class=\"MsoNormal\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">The refund usually takes 3-5 days after we receive the item. We will refund you through your bank account, Easy Paisa, Jazz Cash, or card as per the ease of the customer.<o:p></o:p></span></p><p class=\"MsoNormal\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">If you find our product faulty or you are not satisfied with the product or its quality then let us know and send your parcel back at the following address.<o:p></o:p></span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Return Address:<o:p></o:p></span></span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><u><span style=\"font-size: 16pt; line-height: 24.5333px;\">Millat Chowk, Faisalabad Pakistan&nbsp; &nbsp;</span></u></span></p>','en','2021-01-14 03:31:20','2021-01-14 03:31:20'),(5,2,'Seller Policy','<h3 style=\"font-weight: 700; line-height: 1.35; font-size: 16px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: \"Open Sans\", sans-serif; color: rgb(102, 102, 102);\">Karachi</h3><h3 style=\"font-weight: 700; line-height: 1.35; font-size: 16px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: \"Open Sans\", sans-serif; color: rgb(102, 102, 102);\"><p style=\"margin: 1em 0px; font-family: \"Open Sans\"; font-size: 13px; font-weight: 400;\"><span style=\"font-weight: 700;\">Delivery Time</span>: 24-48 Hours</p><p style=\"margin: 1em 0px; font-family: \"Open Sans\"; font-size: 13px; font-weight: 400;\"><span style=\"font-weight: 700;\">Delivery Charges</span>: Rs. 99 per order</p><br style=\"font-family: \"Open Sans\"; font-size: 13px; font-weight: 400;\"></h3><h3 style=\"font-weight: 700; line-height: 1.35; font-size: 16px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: \"Open Sans\", sans-serif; color: rgb(102, 102, 102);\">Bahria Town (Karachi)</h3><h3 style=\"font-weight: 700; line-height: 1.35; font-size: 16px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: \"Open Sans\", sans-serif; color: rgb(102, 102, 102);\"><p style=\"margin: 1em 0px; font-family: \"Open Sans\"; font-size: 13px; font-weight: 400;\"><span style=\"font-weight: 700;\">Delivery Time</span>: Next working day</p><p style=\"margin: 1em 0px; font-family: \"Open Sans\"; font-size: 13px; font-weight: 400;\"><span style=\"font-weight: 700;\">Delivery Charges</span>: Rs. 99 per order</p><br style=\"font-family: \"Open Sans\"; font-size: 13px; font-weight: 400;\"></h3><h3 style=\"font-weight: 700; line-height: 1.35; font-size: 16px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: \"Open Sans\", sans-serif; color: rgb(102, 102, 102);\">Lahore, Islamabad & Peshawar</h3><h3 style=\"font-weight: 700; line-height: 1.35; font-size: 16px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: \"Open Sans\", sans-serif; color: rgb(102, 102, 102);\"><p style=\"margin: 1em 0px; font-family: \"Open Sans\"; font-size: 13px; font-weight: 400;\"><span style=\"font-weight: 700;\">Delivery time</span>: 2-3 working days</p><p style=\"margin: 1em 0px; font-family: \"Open Sans\"; font-size: 13px; font-weight: 400;\"><span style=\"font-weight: 700;\">Delivery Charges</span>: Based on overall order weight. Rates are calculated at the time of checkout.</p><br style=\"font-family: \"Open Sans\"; font-size: 13px; font-weight: 400;\"></h3><h3 style=\"font-weight: 700; line-height: 1.35; font-size: 16px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: \"Open Sans\", sans-serif; color: rgb(102, 102, 102);\">Other Cities</h3><h3 style=\"font-weight: 700; line-height: 1.35; font-size: 16px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: \"Open Sans\", sans-serif; color: rgb(102, 102, 102);\"><p style=\"margin: 1em 0px; font-family: \"Open Sans\"; font-size: 13px; font-weight: 400;\"><span style=\"font-weight: 700;\">Delivery time</span>: 2-5 working days</p><p style=\"margin: 1em 0px; font-family: \"Open Sans\"; font-size: 13px; font-weight: 400;\"><span style=\"font-weight: 700;\">Delivery Charges</span>: Based on overall order weight. Rates are calculated at the time of checkout</p></h3>','en','2021-01-14 03:50:50','2021-01-14 03:54:23'),(6,7,'Delivery and Shipping','<h3 open=\"\" sans\",=\"\" sans-serif;=\"\" color:=\"\" rgb(102,=\"\" 102,=\"\" 102);\"=\"\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-weight: 700; line-height: 1.35; font-size: 16px;\">Faisalabad</h3><h3 open=\"\" sans\",=\"\" sans-serif;=\"\" color:=\"\" rgb(102,=\"\" 102,=\"\" 102);\"=\"\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; line-height: 1.35; font-size: 16px;\"><p open=\"\" sans\";=\"\" font-size:=\"\" 13px;=\"\" font-weight:=\"\" 400;\"=\"\" style=\"margin: 1em 0px;\">Delivery Time: 24-48 Hours</p><p style=\"margin: 1em 0px;\">Delivery Charges: Rs. 99 per order</p><p open=\"\" sans\";=\"\" font-size:=\"\" 13px;=\"\" font-weight:=\"\" 400;\"=\"\" style=\"margin: 1em 0px;\"><br></p></h3><h6><b>Toba - Gojra - Jhang - Chiniot - Samundri&nbsp; - Jaranwala.</b></h6><h3 open=\"\" sans\",=\"\" sans-serif;=\"\" color:=\"\" rgb(102,=\"\" 102,=\"\" 102);\"=\"\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; line-height: 1.35; font-size: 16px;\"><p open=\"\" sans\";=\"\" font-size:=\"\" 13px;=\"\" font-weight:=\"\" 400;\"=\"\" style=\"margin: 1em 0px;\">Delivery Time: Next working day</p><p open=\"\" sans\";=\"\" font-size:=\"\" 13px;=\"\" font-weight:=\"\" 400;\"=\"\" style=\"margin: 1em 0px;\">Delivery Charges: Rs. 99 per order</p><br open=\"\" sans\";=\"\" font-size:=\"\" 13px;=\"\" font-weight:=\"\" 400;\"=\"\"></h3><h3 open=\"\" sans\",=\"\" sans-serif;=\"\" color:=\"\" rgb(102,=\"\" 102,=\"\" 102);\"=\"\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-weight: 700; line-height: 1.35; font-size: 16px;\">Lahore, Islamabad &amp; Peshawar</h3><h3 open=\"\" sans\",=\"\" sans-serif;=\"\" color:=\"\" rgb(102,=\"\" 102,=\"\" 102);\"=\"\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; line-height: 1.35; font-size: 16px;\"><p open=\"\" sans\";=\"\" font-size:=\"\" 13px;=\"\" font-weight:=\"\" 400;\"=\"\" style=\"margin: 1em 0px;\">Delivery time: 2-3 working days</p><p open=\"\" sans\";=\"\" font-size:=\"\" 13px;=\"\" font-weight:=\"\" 400;\"=\"\" style=\"margin: 1em 0px;\">Delivery Charges: Based on overall order weight. Rates are calculated at the time of checkout.</p><br open=\"\" sans\";=\"\" font-size:=\"\" 13px;=\"\" font-weight:=\"\" 400;\"=\"\"></h3><h3 open=\"\" sans\",=\"\" sans-serif;=\"\" color:=\"\" rgb(102,=\"\" 102,=\"\" 102);\"=\"\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-weight: 700; line-height: 1.35; font-size: 16px;\">Other Cities</h3><h3 open=\"\" sans\",=\"\" sans-serif;=\"\" color:=\"\" rgb(102,=\"\" 102,=\"\" 102);\"=\"\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; line-height: 1.35; font-size: 16px;\"><p open=\"\" sans\";=\"\" font-size:=\"\" 13px;=\"\" font-weight:=\"\" 400;\"=\"\" style=\"margin: 1em 0px;\">Delivery time: 2-5 working days</p><p open=\"\" sans\";=\"\" font-size:=\"\" 13px;=\"\" font-weight:=\"\" 400;\"=\"\" style=\"margin: 1em 0px;\">Delivery Charges: Based on overall order weight. Rates are calculated at the time of checkout</p></h3>','en','2021-01-14 03:55:45','2021-01-14 10:53:24'),(8,9,'FAQ','<p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><span style=\"font-weight: 700;\">What is Velburry.com?</span></p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><span style=\"font-weight: 700;\">Velburry.com</span>&nbsp;is an e-commerce initiative of&nbsp;<span style=\"font-weight: 700;\">Velburry</span>&nbsp;Supermarket.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><span style=\"font-weight: 700;\">How can I pay for my order?</span></p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\">You can pay through Cash on Delivery, Visa/Master/UnionPay Credit/Debit Cards, EasyPaisa, KEENU NetConnect and Credit Card on Delivery.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><span style=\"font-weight: 700;\">Can you ship orders nationwide?</span></p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\">Yes, currently we ship in over 800 cites in Pakistan.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><span style=\"font-weight: 700;\">What are the delivery charges?</span></p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\">Please visit&nbsp;<a href=\"https://www.naheed.pk/delivery-shipping\" style=\"color: rgb(51, 51, 51); outline: none medium !important;\">Delivery &amp; Shipping</a>&nbsp;page for more information.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><span style=\"font-weight: 700;\">How can I track or check status of my order?</span></p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\">Order status can be checked from \'My Orders\' screen in your account. Status can also be checked through&nbsp;<a href=\"https://www.naheed.pk/order-tracking\" style=\"color: rgb(51, 51, 51); outline: none medium !important;\">Order Tracking</a>&nbsp;page.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><span style=\"font-weight: 700;\">How can I return a product?</span></p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\">Please visit&nbsp;<a href=\"https://naheed.pk/returns-and-refunds\" style=\"color: rgb(51, 51, 51); outline: none medium !important;\">Returns &amp; Refunds</a>&nbsp;page for more information.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><span style=\"font-weight: 700;\">Do I have to pay for shipping charges when returning a product?</span></p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\">No, you don\'t have to pay for shipping charges when returning a product</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><span style=\"font-weight: 700;\">Can I return a product after 7 days?</span></p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\">You have to initiate a return process within 7 days of delivery. Unfortunately after 7 days, we won\'t be able to accept return request.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><span style=\"font-weight: 700;\">Do you verify orders?</span></p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\">Yes, before processing any order our customer service team will call you on your mentioned cell phone number to verify order.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><span style=\"font-weight: 700;\">What is the warranty policy?</span></p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\">Warranty policy varies from vendor to vendor and product to product.&nbsp;<span style=\"font-weight: 700;\">Velburry.com</span>&nbsp;does not offer warranty claims directly. Warranty claims are processed directly through the vendor at their respective service centers.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\">Not all products come with a warranty. If the products are available with a warranty then it will be clearly mentioned in the product specification or description.</p>','en','2021-01-14 04:17:31','2021-01-14 04:17:31');
/*!40000 ALTER TABLE `page_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `pages`
--

DROP TABLE IF EXISTS `pages`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pages` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `slug` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `content` longtext COLLATE utf8_unicode_ci,
  `meta_title` text COLLATE utf8_unicode_ci,
  `meta_description` varchar(1000) COLLATE utf8_unicode_ci DEFAULT NULL,
  `keywords` varchar(1000) COLLATE utf8_unicode_ci DEFAULT NULL,
  `meta_image` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pages`
--

LOCK TABLES `pages` WRITE;
/*!40000 ALTER TABLE `pages` DISABLE KEYS */;
INSERT INTO `pages` (`id`, `type`, `title`, `slug`, `content`, `meta_title`, `meta_description`, `keywords`, `meta_image`, `created_at`, `updated_at`) VALUES (1,'home_page','Home Page','home',NULL,NULL,NULL,NULL,NULL,'2020-11-04 10:13:20','2020-11-04 10:13:20'),(2,'seller_policy_page','Seller Policy','sellerpolicy','<h3 style=\"font-weight: 700; line-height: 1.35; font-size: 16px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: \"Open Sans\", sans-serif; color: rgb(102, 102, 102);\">Karachi</h3><h3 style=\"font-weight: 700; line-height: 1.35; font-size: 16px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: \"Open Sans\", sans-serif; color: rgb(102, 102, 102);\"><p style=\"margin: 1em 0px; font-family: \"Open Sans\"; font-size: 13px; font-weight: 400;\"><span style=\"font-weight: 700;\">Delivery Time</span>: 24-48 Hours</p><p style=\"margin: 1em 0px; font-family: \"Open Sans\"; font-size: 13px; font-weight: 400;\"><span style=\"font-weight: 700;\">Delivery Charges</span>: Rs. 99 per order</p><br style=\"font-family: \"Open Sans\"; font-size: 13px; font-weight: 400;\"></h3><h3 style=\"font-weight: 700; line-height: 1.35; font-size: 16px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: \"Open Sans\", sans-serif; color: rgb(102, 102, 102);\">Bahria Town (Karachi)</h3><h3 style=\"font-weight: 700; line-height: 1.35; font-size: 16px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: \"Open Sans\", sans-serif; color: rgb(102, 102, 102);\"><p style=\"margin: 1em 0px; font-family: \"Open Sans\"; font-size: 13px; font-weight: 400;\"><span style=\"font-weight: 700;\">Delivery Time</span>: Next working day</p><p style=\"margin: 1em 0px; font-family: \"Open Sans\"; font-size: 13px; font-weight: 400;\"><span style=\"font-weight: 700;\">Delivery Charges</span>: Rs. 99 per order</p><br style=\"font-family: \"Open Sans\"; font-size: 13px; font-weight: 400;\"></h3><h3 style=\"font-weight: 700; line-height: 1.35; font-size: 16px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: \"Open Sans\", sans-serif; color: rgb(102, 102, 102);\">Lahore, Islamabad & Peshawar</h3><h3 style=\"font-weight: 700; line-height: 1.35; font-size: 16px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: \"Open Sans\", sans-serif; color: rgb(102, 102, 102);\"><p style=\"margin: 1em 0px; font-family: \"Open Sans\"; font-size: 13px; font-weight: 400;\"><span style=\"font-weight: 700;\">Delivery time</span>: 2-3 working days</p><p style=\"margin: 1em 0px; font-family: \"Open Sans\"; font-size: 13px; font-weight: 400;\"><span style=\"font-weight: 700;\">Delivery Charges</span>: Based on overall order weight. Rates are calculated at the time of checkout.</p><br style=\"font-family: \"Open Sans\"; font-size: 13px; font-weight: 400;\"></h3><h3 style=\"font-weight: 700; line-height: 1.35; font-size: 16px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: \"Open Sans\", sans-serif; color: rgb(102, 102, 102);\">Other Cities</h3><h3 style=\"font-weight: 700; line-height: 1.35; font-size: 16px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: \"Open Sans\", sans-serif; color: rgb(102, 102, 102);\"><p style=\"margin: 1em 0px; font-family: \"Open Sans\"; font-size: 13px; font-weight: 400;\"><span style=\"font-weight: 700;\">Delivery time</span>: 2-5 working days</p><p style=\"margin: 1em 0px; font-family: \"Open Sans\"; font-size: 13px; font-weight: 400;\"><span style=\"font-weight: 700;\">Delivery Charges</span>: Based on overall order weight. Rates are calculated at the time of checkout</p></h3>',NULL,NULL,NULL,NULL,'2020-11-04 10:14:41','2021-01-14 03:54:23'),(3,'return_policy_page','Return Policy Page','returnpolicy','<ul><p><li><span style=\"font-size: 16pt; line-height: 24.5333px;\">Vellbury is the one and only Selling brand of Pakistan which offers a lifetime return policy. We let you shop with confidence. Whatever you order, if you don’t like anything or any of our products don’t satisfy you then no worries, you can anytime return the product and refund your money.<o:p></o:p></span></li><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Manage your returns:<o:p></o:p></span></span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">You can simply ask for returns by using any of the following method:<o:p></o:p></span></span></p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left: 0.25in; text-indent: -0.25in;\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">1.<span times=\"\" new=\"\" roman\";\"=\"\" style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\">&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><span style=\"font-size: 16pt; line-height: 24.5333px;\">Call us on +92 300 4192038</span></p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left: 0.25in; text-indent: -0.25in;\"><span style=\"text-indent: -0.25in; font-weight: bolder;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">2.<span times=\"\" new=\"\" roman\";\"=\"\" style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\">&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><span style=\"text-indent: -0.25in; font-size: 16pt; line-height: 24.5333px;\">Simply log in to your account and press support button</span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Conditions of return:</span></span></p><ul style=\"margin-bottom: 1rem;\"><li style=\"margin-left: 0.25in;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">To enjoy the lifetime return policy opportunity the product must be in its original condition and unworn.<o:p></o:p></span></li><li style=\"margin-left: 0.25in;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">The packaging (box) and the product must be in an undamaged position. In case of any damage, you won’t qualify for the return.<o:p></o:p></span></li><li style=\"margin-left: 0.25in;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">You must have the invoice for your purchase.<o:p></o:p></span></li></ul><p class=\"MsoNormal\"></p><ul style=\"margin-bottom: 1rem;\"><li style=\"margin-left: 0.25in;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">If our product doesn’t satisfy you fully for any reason you can simply ask for a return by contacting us on +92 300 4192038 Or login to your account on our website and ask at our online support.<o:p></o:p></span></li></ul><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\"><o:p></o:p></span></span></p><p style=\"text-indent: -0.25in;\"><br></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Return in Sale and promotion days:<o:p></o:p></span></span></p><p class=\"MsoNormal\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">Please note, our return policy doesn’t work during the promotion or sale period. Your return request will be processed after the end of the promotion of the sale period. During this period the return may take 3-5 working days.<o:p></o:p></span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Faulty/damaged products:<o:p></o:p></span></span></p><p class=\"MsoNormal\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">If you receive a damaged, faulty, or wrong sized item, then please contact us online through our website or our contact number. You can also send back the parcel from your drop step by the delivery man at the spot.<o:p></o:p></span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Refund time:<o:p></o:p></span></span></p><p class=\"MsoNormal\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">The refund usually takes 3-5 days after we receive the item. We will refund you through your bank account, Easy Paisa, Jazz Cash, or card as per the ease of the customer.<o:p></o:p></span></p><p class=\"MsoNormal\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">If you find our product faulty or you are not satisfied with the product or its quality then let us know and send your parcel back at the following address.<o:p></o:p></span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Return Address:<o:p></o:p></span></span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><u><span style=\"font-size: 16pt; line-height: 24.5333px;\"><u style=\"font-size: 13px;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">Millat Chowk, Faisalabad Pakistan</span></u>&nbsp; &nbsp;&nbsp;</span></u></span></p><li><span style=\"font-size: 16pt; line-height: 24.5333px;\">&nbsp;is the one and only shoe brand of Pakistan which offers a lifetime return policy. We let you shop with confidence. Whatever you order, if you don’t like anything or any of our products don’t satisfy you then no worries, you can anytime return the product and refund your money.<o:p></o:p></span></li><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Manage your returns:<o:p></o:p></span></span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">You can simply ask for returns by using any of the following method:<o:p></o:p></span></span></p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left: 0.25in; text-indent: -0.25in;\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">1.<span times=\"\" new=\"\" roman\";\"=\"\" style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\">&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><span style=\"font-size: 16pt; line-height: 24.5333px;\">Call us on&nbsp;</span><span style=\"font-size: 21.3333px; text-indent: -24px;\">+92 300 4192038</span></p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left: 0.25in; text-indent: -0.25in;\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">2.<span times=\"\" new=\"\" roman\";\"=\"\" style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\">&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><span style=\"font-size: 16pt; line-height: 24.5333px;\">Simply log in to your account and press support button<o:p></o:p></span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Conditions of return:</span></span></p><ul style=\"margin-bottom: 1rem;\"><li style=\"margin-left: 0.25in;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">To enjoy the lifetime return policy opportunity the product must be in its original condition and unworn.<o:p></o:p></span></li><li style=\"margin-left: 0.25in;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">The packaging (box) and the product must be in an undamaged position. In case of any damage, you won’t qualify for the return.<o:p></o:p></span></li><li style=\"margin-left: 0.25in;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">You must have the invoice for your purchase.<o:p></o:p></span></li></ul><p class=\"MsoNormal\"></p><ul style=\"margin-bottom: 1rem;\"><li style=\"margin-left: 0.25in;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">If our product doesn’t satisfy you fully for any reason you can simply ask for a return by contacting us on +92 300 4192038 Or login to your account on our website and ask at our online support.<o:p></o:p></span></li></ul><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\"><o:p></o:p></span></span></p><p style=\"text-indent: -0.25in;\"><br></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Return in Sale and promotion days:<o:p></o:p></span></span></p><p class=\"MsoNormal\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">Please note, our return policy doesn’t work during the promotion or sale period. Your return request will be processed after the end of the promotion of the sale period. During this period the return may take 3-5 working days.<o:p></o:p></span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Faulty/damaged products:<o:p></o:p></span></span></p><p class=\"MsoNormal\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">If you receive a damaged, faulty, or wrong sized item, then please contact us online through our website or our contact number. You can also send back the parcel from your drop step by the delivery man at the spot.<o:p></o:p></span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Refund time:<o:p></o:p></span></span></p><p class=\"MsoNormal\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">The refund usually takes 3-5 days after we receive the item. We will refund you through your bank account, Easy Paisa, Jazz Cash, or card as per the ease of the customer.<o:p></o:p></span></p><p class=\"MsoNormal\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">If you find our product faulty or you are not satisfied with the product or its quality then let us know and send your parcel back at the following address.<o:p></o:p></span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Return Address:<o:p></o:p></span></span></p><u style=\"font-weight: 700;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">Millat Chowk, Faisalabad Pakistan</span></u></p><p><u style=\"font-weight: 700;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\"><br></span></u><li><span style=\"font-size: 16pt; line-height: 24.5333px;\">&nbsp;is the one and only shoe brand of Pakistan which offers a lifetime return policy. We let you shop with confidence. Whatever you order, if you don’t like anything or any of our products don’t satisfy you then no worries, you can anytime return the product and refund your money.<o:p></o:p></span></li></p></ul><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Manage your returns:<o:p></o:p></span></span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">You can simply ask for returns by using any of the following method:<o:p></o:p></span></span></p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left: 0.25in; text-indent: -0.25in;\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">1.<span times=\"\" new=\"\" roman\";\"=\"\" style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\">&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><span style=\"font-size: 16pt; line-height: 24.5333px;\">Call us on&nbsp;<o:p></o:p></span><span style=\"font-size: 21.3333px; text-indent: -24px;\">+92 300 4192038</span></p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left: 0.25in; text-indent: -0.25in;\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">2.<span times=\"\" new=\"\" roman\";\"=\"\" style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-weight: normal; font-stretch: normal; font-size: 7pt; line-height: normal;\">&nbsp;&nbsp;&nbsp;&nbsp;</span></span></span><span style=\"font-size: 16pt; line-height: 24.5333px;\">Simply log in to your account and press support button<o:p></o:p></span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Conditions of return:</span></span></p><ul><li style=\"margin-left: 0.25in;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">To enjoy the lifetime return policy opportunity the product must be in its original condition and unworn.<o:p></o:p></span></li><li style=\"margin-left: 0.25in;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">The packaging (box) and the product must be in an undamaged position. In case of any damage, you won’t qualify for the return.<o:p></o:p></span></li><li style=\"margin-left: 0.25in;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">You must have the invoice for your purchase.<o:p></o:p></span></li></ul><p class=\"MsoNormal\"></p><ul><li style=\"margin-left: 0.25in;\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">If our product doesn’t satisfy you fully for any reason you can simply ask for a return by contacting us on +92 300 4192038&nbsp;Or login to your account on our website and ask at our online support.<o:p></o:p></span></li></ul><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\"><o:p></o:p></span></span></p><p style=\"text-indent: -0.25in;\"><br></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Return in Sale and promotion days:<o:p></o:p></span></span></p><p class=\"MsoNormal\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">Please note, our return policy doesn’t work during the promotion or sale period. Your return request will be processed after the end of the promotion of the sale period. During this period the return may take 3-5 working days.<o:p></o:p></span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Faulty/damaged products:<o:p></o:p></span></span></p><p class=\"MsoNormal\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">If you receive a damaged, faulty, or wrong sized item, then please contact us online through our website or our contact number. You can also send back the parcel from your drop step by the delivery man at the spot.<o:p></o:p></span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Refund time:<o:p></o:p></span></span></p><p class=\"MsoNormal\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">The refund usually takes 3-5 days after we receive the item. We will refund you through your bank account, Easy Paisa, Jazz Cash, or card as per the ease of the customer.<o:p></o:p></span></p><p class=\"MsoNormal\"><span style=\"font-size: 16pt; line-height: 24.5333px;\">If you find our product faulty or you are not satisfied with the product or its quality then let us know and send your parcel back at the following address.<o:p></o:p></span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><span style=\"font-size: 20pt; line-height: 30.6667px;\">Return Address:<o:p></o:p></span></span></p><p class=\"MsoNormal\"><span style=\"font-weight: bolder;\"><u><span style=\"font-size: 16pt; line-height: 24.5333px;\">Millat Chowk, Faisalabad Pakistan&nbsp; &nbsp;</span></u></span></p>',NULL,NULL,NULL,NULL,'2020-11-04 10:14:41','2021-01-14 03:31:20'),(4,'support_policy_page','Support Policy Page','supportpolicy','<p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\">Welcome to Velburry.</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\">We’re so glad you’re here. Make yourself comfortable and have a good time, but please follow our house rules.&nbsp;</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\"><br></p><h2 open=\"\" sans\",=\"\" sans-serif;=\"\" color:=\"\" rgb(51,=\"\" 51,=\"\" 51);\"=\"\" style=\"line-height: 1.46;\">1. Accepting These Terms</h2><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\"><br></p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\">This document and the other documents that we reference below make up our house rules, or what we officially call our Terms of Use (the “Terms” for short).</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\">The Terms are a legally binding<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">contract</span>between you and Velburry.</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\">Disputes with Velburry&nbsp;contains an arbitration clause and class action waiver. By agreeing to the Terms, you<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">agree</span>to resolve all disputes through binding individual arbitration, which means that you waive any right to have those disputes decided by a<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">judge</span>or jury and that you waive your right to participate in class actions, class arbitrations, or representative actions. *</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\">This<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">contract</span>sets out your rights and responsibilities when you use Velburry, Pattern by Velburry, our mobile apps, and the other services provided by Velburry (we’ll refer to all of these collectively as our “Services”), so please read it carefully. By using any of our Services (even just browsing one of our websites), you’re agreeing to the Terms. If you don’t<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">agree</span>with the Terms, you may not use our Services.<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">Agree</span>with us? Great, read on!</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\"><br></p><h2 open=\"\" sans\",=\"\" sans-serif;=\"\" color:=\"\" rgb(51,=\"\" 51,=\"\" 51);\"=\"\" style=\"line-height: 1.46;\">2. Those Other Documents We Mentioned</h2><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\"><br></p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\">Velburry Services connect people both online and offline, to make,<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">sell,</span>&nbsp;and buy unique goods. Here’s a handy guide to help you understand the specific rules that are relevant for you, depending on how you use the Services:</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\">Our House Rules for Everyone. If you use any of our Services, you<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">agree</span>to these Terms, our Privacy Policy, and our Anti-Discrimination Policy.</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\">Our House Rules for Buyers. If you use our Services to browse or shop, these policies apply to you. You can read them here.</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\">Search and Advertising Ranking Disclosures. This is a concise summary of how Velburry&nbsp;organizes search results and advertising results that could include Your Content.</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\">All of these policies are a part of our Terms, so be sure to read the ones that are relevant for you. Of course, you’ll still want to read the rest of this document because it applies to everyone!</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\"><br></p><h2 open=\"\" sans\",=\"\" sans-serif;=\"\" color:=\"\" rgb(51,=\"\" 51,=\"\" 51);\"=\"\" style=\"line-height: 1.46;\">3. Your Privacy</h2><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\"><br></p><h2 open=\"\" sans\",=\"\" sans-serif;=\"\" color:=\"\" rgb(51,=\"\" 51,=\"\" 51);\"=\"\" style=\"line-height: 1.46;\"></h2><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\">We know your personal information is important to you, so it’s important to us. Our Privacy Policy details how your information is used when you use our Services. By using our Services, you’re also agreeing that we can process your information in the ways set out in the Privacy Policy, so please read it here.</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\">Both Velburry&nbsp;and sellers process members’ personal information (for example, buyer<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">name,</span><span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">email</span><span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">address,</span>&nbsp;and delivery<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">address)</span>&nbsp;and are therefore considered separate and independent data controllers of buyers’ personal information under POPI law. That means that each party is responsible for the personal information it processes in providing the Services. For example, if a seller accidentally discloses a buyer’s<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">name</span>and<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">email</span><span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">address</span>when fulfilling another buyer’s<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">order,</span>&nbsp;the seller, not Velburry, will be responsible for that unauthorized disclosure.&nbsp;</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\">If, however, Velburry&nbsp;and sellers are found to be joint data controllers of buyers’ personal information, and if Velburry&nbsp;is sued, fined, or otherwise incurs expenses because of something that you did as a joint data controller of buyer personal information, you<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">agree</span>to indemnify Velburry&nbsp;for the expenses it occurs in connection with your processing of buyer personal information. Indemnification (or What Happens If You Get Us Sued) below for more information about your indemnification obligations to Velburry.</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\"><br></p><h2 open=\"\" sans\",=\"\" sans-serif;=\"\" color:=\"\" rgb(51,=\"\" 51,=\"\" 51);\"=\"\" style=\"line-height: 1.46;\">4. Your Account with Velburry</h2><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\"><br></p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\">You’ll need to create an account with Velburry&nbsp;to use some of our Services. Here are a few rules about accounts with Velburry:</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\"><span style=\"font-weight: 600;\">A.</span>&nbsp;You must be 18 years or older to use our Services. Minors under 18 and at least 13 years of age are only permitted to use our Services through an account owned by a parent or legal guardian with their appropriate permission and under their direct supervision. Children under 13 years are not permitted to use Velburry&nbsp;or the Services. You are responsible for any and all account activity conducted by a minor on your account.</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\"><span style=\"font-weight: 600;\">B</span>. Be honest with us. Provide accurate information about yourself. It’s prohibited to use false information or impersonate another person or company through your account.</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\"><span style=\"font-weight: 600;\">C</span>. Choose an appropriate<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">name.</span>&nbsp;If you decide to not have your full<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">name</span>serve as the<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">name</span>associated with your account, you may not use language that is offensive, vulgar, infringes someone’s intellectual property rights, or otherwise violates the Terms.</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\"><span style=\"font-weight: 600;\">D</span>. You’re responsible for your account. You’re solely responsible for any activity on your account. If you’re sharing an account with other people, then the person whose financial information is on the account will ultimately be responsible for all activity. If you’re registering as a business entity, you personally guarantee that you have the authority to<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">agree</span>to the Terms on behalf of the business. Also, your accounts are not transferable.</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\"><span style=\"font-weight: 600;\">E</span>. Protect your<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">password.</span>&nbsp;As we mentioned above, you’re solely responsible for any activity on your account, so it’s important to keep your account<span data-type=\"keyword\" data-highlight=\"true\" style=\"display: inline-block; margin-left: 4px; margin-right: 4px; background-color: rgb(255, 255, 0); color: rgb(0, 0, 0);\">password</span>secure. Here’s a Help article on how to make your account more secure.</p><p open=\"\" sans\",=\"\" sans-serif;\"=\"\" style=\"line-height: 1.4rem; color: rgb(51, 51, 51);\"><span style=\"font-weight: 600;\">F</span>. Let’s be clear about our relationship. These Terms don’t create any agency, partnership, joint venture, employment, or franchisee relationship between you and Velburry. This detailed Help article should answer any questions you may have about registering an account with Velburry.</p>',NULL,NULL,NULL,NULL,'2020-11-04 10:14:59','2021-01-14 03:24:01'),(5,'terms_conditions_page','Term Conditions Page','terms','<h2><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">These Terms and Conditions (\"Terms\", \"Terms and Conditions\") govern your relationship with Velburry.com website (the \"Service\") operated by Velburry.com&nbsp;(\"us\", \"we\", or \"our\").</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">Please read these Terms and Conditions carefully before using the Service.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">Your access to and use of the Service is conditioned on your acceptance of and compliance with these Terms. These Terms apply to all visitors, users and others who access or use the Service.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">By accessing or using the Service you agree to be bound by these Terms. If you disagree with any part of the terms then you may not access the Service.</p></h2><h2 style=\"line-height: 1.35; font-size: 18px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(102, 102, 102);\">Purchases</h2><h2><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">If you wish to purchase any product or service made available through the Service (\"Purchase\"), you may be asked to supply certain information relevant to your Purchase including, without limitation, your credit card number, the expiration date of your credit card, your billing address, and your shipping information. In certain cases, we may ask for additional informtation or documents to process your order.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">You represent and warrant that: (i) you have the legal right to use any credit card(s) or other payment method(s) in connection with any Purchase; and that (ii) the information you supply to us is true, correct and complete.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">By submitting such information, you grant us the right to provide the information to third parties for purposes of facilitating the completion of Purchases.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">We reserve the right to refuse or cancel your order at any time for certain reasons including but not limited to: product or service availability, errors in the description or price of the product or service, error in your order or other reasons.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">We reserve the right to refuse or cancel your order if fraud or an unauthorized or illegal transaction is suspected.</p></h2><h2 style=\"line-height: 1.35; font-size: 18px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(102, 102, 102);\">Availability, Errors and Inaccuracies</h2><h2><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">We are constantly updating our offerings of products and services on the Service. The products or services available on our Service may be mispriced, described inaccurately, or unavailable, and we may experience delays in updating information on the Service and in our advertising on other web sites.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">We cannot and do not guarantee the accuracy or completeness of any information, including prices, product images, specifications, availability, and services. We reserve the right to change or update information and to correct errors, inaccuracies, or omissions at any time without prior notice.</p></h2><h2 style=\"line-height: 1.35; font-size: 18px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(102, 102, 102);\">Contests, Sweepstakes and Promotions</h2><h2><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">Any contests, sweepstakes or other promotions (collectively, \"Promotions\") made available through the Service may be governed by rules that are separate from these Terms. If you participate in any Promotions, please review the applicable rules as well as our Privacy Policy. If the rules for a Promotion conflict with these Terms, the Promotion rules will apply.</p></h2><h2 style=\"line-height: 1.35; font-size: 18px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(102, 102, 102);\">Accounts</h2><h2><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">When you create an account with us, you must provide us information that is accurate, complete, and current at all times. Failure to do so constitutes a breach of the Terms, which may result in immediate termination of your account on our Service.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">You are responsible for safeguarding the password that you use to access the Service and for any activities or actions under your password, whether your password is with our Service or a third-party service.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">You agree not to disclose your password to any third party. You must notify us immediately upon becoming aware of any breach of security or unauthorized use of your account.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">You may not use as a username the name of another person or entity or that is not lawfully available for use, a name or trade mark that is subject to any rights of another person or entity other than you without appropriate authorization, or a name that is otherwise offensive, vulgar or obscene.</p></h2><h2 style=\"line-height: 1.35; font-size: 18px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(102, 102, 102);\">Intellectual Property</h2><h2><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">The Service and its original content, features and functionality are and will remain the exclusive property of Velburry.com&nbsp;and its licensors. The Service is protected by copyright, trademark, and other laws of both the Pakistan and foreign countries. Our trademarks and trade dress may not be used in connection with any product or service without the prior written consent of Velburry.com.</p></h2><h2 style=\"line-height: 1.35; font-size: 18px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(102, 102, 102);\">Links To Other Web Sites</h2><h2><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">Our Service may contain links to third-party web sites or services that are not owned or controlled by Velburry.com.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">Velburry.com has no control over, and assumes no responsibility for, the content, privacy policies, or practices of any third party web sites or services. You further acknowledge and agree that Velburry.com&nbsp;shall not be responsible or liable, directly or indirectly, for any damage or loss caused or alleged to be caused by or in connection with use of or reliance on any such content, goods or services available on or through any such web sites or services.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">We strongly advise you to read the terms and conditions and privacy policies of any third-party web sites or services that you visit.</p></h2><h2 style=\"line-height: 1.35; font-size: 18px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(102, 102, 102);\">Termination</h2><h2><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">We may terminate or suspend your account immediately, without prior notice or liability, for any reason whatsoever, including without limitation if you breach the Terms.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">Upon termination, your right to use the Service will immediately cease. If you wish to terminate your account, you may simply discontinue using the Service.</p></h2><h2 style=\"line-height: 1.35; font-size: 18px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(102, 102, 102);\">Governing Law</h2><h2><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">These Terms shall be governed and construed in accordance with the laws of Pakistan, without regard to its conflict of law provisions.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">Our failure to enforce any right or provision of these Terms will not be considered a waiver of those rights. If any provision of these Terms is held to be invalid or unenforceable by a court, the remaining provisions of these Terms will remain in effect. These Terms constitute the entire agreement between us regarding our Service, and supersede and replace any prior agreements we might have between us regarding the Service.</p></h2><h2 style=\"line-height: 1.35; font-size: 18px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(102, 102, 102);\">Changes</h2><h2><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">We reserve the right, at our sole discretion, to modify or replace these Terms at any time. If a revision is material we will try to provide at least 30 days notice prior to any new terms taking effect. What constitutes a material change will be determined at our sole discretion.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">By continuing to access or use our Service after those revisions become effective, you agree to be bound by the revised terms. If you do not agree to the new terms, please stop using the Service.</p></h2><h2 style=\"line-height: 1.35; font-size: 18px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(102, 102, 102);\">Contact Us</h2><h2><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-size: 13px;\">If you have any questions about these Terms, please contact us.</p></h2>',NULL,NULL,NULL,NULL,'2020-11-04 10:15:29','2021-01-14 03:53:23'),(6,'privacy_policy_page','Privacy Policy Page','privacypolicy','<h2><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; font-size: 13px; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><b>Velburry</b> respect and secure your privacy. Our team committed to assuring the privacy of every customer who visits our website. We use advanced technology and secure privacy protection controls to protect your personal information. If you are just browsing our website, you can do so anonymously. Velburry website does not ask to enter any personal information during your visit unless you place an order for services or decide to log into our customer portal to provide information or receive documents. However, we do not involve and share your personal information to third parties, except as permitted or required by law or as required for specific services as explained in this privacy statement. Further note that Velburry does not share, sell, or lease any personal information collected at our site, including membership forms or e-mail lists. Velburry considers all personal information confidential. If you want to purchase anything from our online shoe store, then don\'t be worried regarding your information. Our talented team members will store your personal data in our database and provide one of our employees to contact you when delivering.</span></p><br style=\"font-size: 13px;\"><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; font-size: 13px; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">Our standard information security Policy controls helps to prevent unauthorized access to customer’s personal information. The information that we receive from our beloved customer is mandatory in fulfilling your needs and providing excellent service quality. We will give rights to authorized employees who are trained in the proper handling of customer identification information to have access to your information. Our experts technicians regularly test this secure technology and try to protect the confidentiality of information about you.</span></p><br style=\"font-size: 13px;\"><p dir=\"ltr\" style=\"margin-top: 0pt; margin-bottom: 0pt; font-size: 13px; line-height: 1.38;\"><span style=\"font-size: 11pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\">&nbsp;If you have any query or need suggestions regarding our collection, please contact us at +92 300 4192038 or email us at </span><a href=\"sales@velburry.com\">sales@velburry.com</a></p><div><span style=\"font-size: 11pt; font-family: Arial; background-color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; vertical-align: baseline; white-space: pre-wrap;\"><br></span></div></h2>',NULL,NULL,NULL,NULL,'2020-11-04 10:15:55','2021-01-14 03:17:47'),(7,'custom_page','Delivery and Shipping','deliveryandshipping','<h3 open=\"\" sans\",=\"\" sans-serif;=\"\" color:=\"\" rgb(102,=\"\" 102,=\"\" 102);\"=\"\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-weight: 700; line-height: 1.35; font-size: 16px;\">Faisalabad</h3><h3 open=\"\" sans\",=\"\" sans-serif;=\"\" color:=\"\" rgb(102,=\"\" 102,=\"\" 102);\"=\"\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; line-height: 1.35; font-size: 16px;\"><p open=\"\" sans\";=\"\" font-size:=\"\" 13px;=\"\" font-weight:=\"\" 400;\"=\"\" style=\"margin: 1em 0px;\">Delivery Time: 24-48 Hours</p><p style=\"margin: 1em 0px;\">Delivery Charges: Rs. 99 per order</p><p open=\"\" sans\";=\"\" font-size:=\"\" 13px;=\"\" font-weight:=\"\" 400;\"=\"\" style=\"margin: 1em 0px;\"><br></p></h3><h6><b>Toba - Gojra - Jhang - Chiniot - Samundri&nbsp; - Jaranwala.</b></h6><h3 open=\"\" sans\",=\"\" sans-serif;=\"\" color:=\"\" rgb(102,=\"\" 102,=\"\" 102);\"=\"\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; line-height: 1.35; font-size: 16px;\"><p open=\"\" sans\";=\"\" font-size:=\"\" 13px;=\"\" font-weight:=\"\" 400;\"=\"\" style=\"margin: 1em 0px;\">Delivery Time: Next working day</p><p open=\"\" sans\";=\"\" font-size:=\"\" 13px;=\"\" font-weight:=\"\" 400;\"=\"\" style=\"margin: 1em 0px;\">Delivery Charges: Rs. 99 per order</p><br open=\"\" sans\";=\"\" font-size:=\"\" 13px;=\"\" font-weight:=\"\" 400;\"=\"\"></h3><h3 open=\"\" sans\",=\"\" sans-serif;=\"\" color:=\"\" rgb(102,=\"\" 102,=\"\" 102);\"=\"\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-weight: 700; line-height: 1.35; font-size: 16px;\">Lahore, Islamabad &amp; Peshawar</h3><h3 open=\"\" sans\",=\"\" sans-serif;=\"\" color:=\"\" rgb(102,=\"\" 102,=\"\" 102);\"=\"\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; line-height: 1.35; font-size: 16px;\"><p open=\"\" sans\";=\"\" font-size:=\"\" 13px;=\"\" font-weight:=\"\" 400;\"=\"\" style=\"margin: 1em 0px;\">Delivery time: 2-3 working days</p><p open=\"\" sans\";=\"\" font-size:=\"\" 13px;=\"\" font-weight:=\"\" 400;\"=\"\" style=\"margin: 1em 0px;\">Delivery Charges: Based on overall order weight. Rates are calculated at the time of checkout.</p><br open=\"\" sans\";=\"\" font-size:=\"\" 13px;=\"\" font-weight:=\"\" 400;\"=\"\"></h3><h3 open=\"\" sans\",=\"\" sans-serif;=\"\" color:=\"\" rgb(102,=\"\" 102,=\"\" 102);\"=\"\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-weight: 700; line-height: 1.35; font-size: 16px;\">Other Cities</h3><h3 open=\"\" sans\",=\"\" sans-serif;=\"\" color:=\"\" rgb(102,=\"\" 102,=\"\" 102);\"=\"\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; line-height: 1.35; font-size: 16px;\"><p open=\"\" sans\";=\"\" font-size:=\"\" 13px;=\"\" font-weight:=\"\" 400;\"=\"\" style=\"margin: 1em 0px;\">Delivery time: 2-5 working days</p><p open=\"\" sans\";=\"\" font-size:=\"\" 13px;=\"\" font-weight:=\"\" 400;\"=\"\" style=\"margin: 1em 0px;\">Delivery Charges: Based on overall order weight. Rates are calculated at the time of checkout</p></h3>',NULL,NULL,NULL,NULL,'2021-01-14 03:55:45','2021-01-14 10:53:24'),(9,'custom_page','FAQ','FAQ','<p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><span style=\"font-weight: 700;\">What is Velburry.com?</span></p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><span style=\"font-weight: 700;\">Velburry.com</span>&nbsp;is an e-commerce initiative of&nbsp;<span style=\"font-weight: 700;\">Velburry</span>&nbsp;Supermarket.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><span style=\"font-weight: 700;\">How can I pay for my order?</span></p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\">You can pay through Cash on Delivery, Visa/Master/UnionPay Credit/Debit Cards, EasyPaisa, KEENU NetConnect and Credit Card on Delivery.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><span style=\"font-weight: 700;\">Can you ship orders nationwide?</span></p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\">Yes, currently we ship in over 800 cites in Pakistan.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><span style=\"font-weight: 700;\">What are the delivery charges?</span></p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\">Please visit&nbsp;<a href=\"https://www.naheed.pk/delivery-shipping\" style=\"color: rgb(51, 51, 51); outline: none medium !important;\">Delivery &amp; Shipping</a>&nbsp;page for more information.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><span style=\"font-weight: 700;\">How can I track or check status of my order?</span></p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\">Order status can be checked from \'My Orders\' screen in your account. Status can also be checked through&nbsp;<a href=\"https://www.naheed.pk/order-tracking\" style=\"color: rgb(51, 51, 51); outline: none medium !important;\">Order Tracking</a>&nbsp;page.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><span style=\"font-weight: 700;\">How can I return a product?</span></p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\">Please visit&nbsp;<a href=\"https://naheed.pk/returns-and-refunds\" style=\"color: rgb(51, 51, 51); outline: none medium !important;\">Returns &amp; Refunds</a>&nbsp;page for more information.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><span style=\"font-weight: 700;\">Do I have to pay for shipping charges when returning a product?</span></p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\">No, you don\'t have to pay for shipping charges when returning a product</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><span style=\"font-weight: 700;\">Can I return a product after 7 days?</span></p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\">You have to initiate a return process within 7 days of delivery. Unfortunately after 7 days, we won\'t be able to accept return request.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><span style=\"font-weight: 700;\">Do you verify orders?</span></p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\">Yes, before processing any order our customer service team will call you on your mentioned cell phone number to verify order.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><span style=\"font-weight: 700;\">What is the warranty policy?</span></p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\">Warranty policy varies from vendor to vendor and product to product.&nbsp;<span style=\"font-weight: 700;\">Velburry.com</span>&nbsp;does not offer warranty claims directly. Warranty claims are processed directly through the vendor at their respective service centers.</p><p style=\"margin: 1em 0px; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\">Not all products come with a warranty. If the products are available with a warranty then it will be clearly mentioned in the product specification or description.</p>',NULL,NULL,NULL,NULL,'2021-01-14 04:17:31','2021-01-14 04:17:31');
/*!40000 ALTER TABLE `pages` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `password_resets`
--

DROP TABLE IF EXISTS `password_resets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `password_resets` (
  `email` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
  `token` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  KEY `password_resets_email_index` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `password_resets`
--

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

--
-- Table structure for table `payments`
--

DROP TABLE IF EXISTS `payments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `payments` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `seller_id` int(11) NOT NULL,
  `amount` double(20,2) NOT NULL DEFAULT '0.00',
  `payment_details` longtext COLLATE utf8_unicode_ci,
  `payment_method` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `txn_code` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `payments`
--

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

--
-- Table structure for table `pickup_point_translations`
--

DROP TABLE IF EXISTS `pickup_point_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pickup_point_translations` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `pickup_point_id` bigint(20) NOT NULL,
  `name` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `address` text COLLATE utf8_unicode_ci NOT NULL,
  `lang` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pickup_point_translations`
--

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

--
-- Table structure for table `pickup_points`
--

DROP TABLE IF EXISTS `pickup_points`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `pickup_points` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `staff_id` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  `address` text NOT NULL,
  `phone` varchar(15) NOT NULL,
  `pick_up_status` int(1) DEFAULT NULL,
  `cash_on_pickup_status` int(1) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `pickup_points`
--

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

--
-- Table structure for table `policies`
--

DROP TABLE IF EXISTS `policies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `policies` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(35) COLLATE utf8_unicode_ci NOT NULL,
  `content` longtext COLLATE utf8_unicode_ci,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `policies`
--

LOCK TABLES `policies` WRITE;
/*!40000 ALTER TABLE `policies` DISABLE KEYS */;
INSERT INTO `policies` (`id`, `name`, `content`, `created_at`, `updated_at`) VALUES (1,'support_policy',NULL,'2019-10-29 12:54:45','2019-01-22 05:13:15'),(2,'return_policy',NULL,'2019-10-29 12:54:47','2019-01-24 05:40:11'),(4,'seller_policy',NULL,'2019-10-29 12:54:49','2019-02-04 17:50:15'),(5,'terms',NULL,'2019-10-29 12:54:51','2019-10-28 18:00:00'),(6,'privacy_policy',NULL,'2019-10-29 12:54:54','2019-10-28 18:00:00');
/*!40000 ALTER TABLE `policies` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `product_stocks`
--

DROP TABLE IF EXISTS `product_stocks`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_stocks` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `product_id` int(11) NOT NULL,
  `variant` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `sku` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `price` double(20,2) NOT NULL DEFAULT '0.00',
  `qty` int(11) NOT NULL DEFAULT '0',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4976 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_stocks`
--

LOCK TABLES `product_stocks` WRITE;
/*!40000 ALTER TABLE `product_stocks` DISABLE KEYS */;
INSERT INTO `product_stocks` (`id`, `product_id`, `variant`, `sku`, `price`, `qty`, `created_at`, `updated_at`) VALUES (4,1,NULL,NULL,0.00,0,'2021-01-07 03:53:55','2021-01-07 03:53:55'),(115,491,NULL,NULL,450.00,1,'2021-01-10 14:15:38','2021-01-10 14:15:38'),(116,492,NULL,NULL,550.00,1,'2021-01-10 14:18:28','2021-01-10 14:18:28'),(137,295,NULL,NULL,910.00,1,'2021-01-11 01:13:32','2021-01-11 01:13:32'),(138,296,NULL,NULL,910.00,1,'2021-01-11 01:14:35','2021-01-11 01:14:35'),(139,297,NULL,NULL,790.00,1,'2021-01-11 01:15:53','2021-01-11 01:15:53'),(140,298,NULL,NULL,910.00,1,'2021-01-11 01:16:59','2021-01-11 01:16:59'),(141,299,NULL,NULL,1190.00,1,'2021-01-11 01:18:22','2021-01-11 01:18:22'),(142,300,NULL,NULL,1190.00,1,'2021-01-11 01:19:17','2021-01-11 01:19:17'),(143,301,NULL,NULL,490.00,1,'2021-01-11 01:20:28','2021-01-11 01:20:28'),(144,302,NULL,NULL,490.00,1,'2021-01-11 01:21:43','2021-01-11 01:21:43'),(145,303,NULL,NULL,550.00,1,'2021-01-11 01:22:46','2021-01-11 01:22:46'),(146,304,NULL,NULL,590.00,1,'2021-01-11 01:24:11','2021-01-11 01:24:11'),(147,305,NULL,NULL,1390.00,1,'2021-01-11 01:25:10','2021-01-11 01:25:10'),(148,306,NULL,NULL,1290.00,1,'2021-01-11 01:26:00','2021-01-11 01:26:00'),(149,307,NULL,NULL,1390.00,1,'2021-01-11 01:26:55','2021-01-11 01:26:55'),(150,308,NULL,NULL,1800.00,1,'2021-01-11 01:28:20','2021-01-11 01:28:20'),(151,309,NULL,NULL,1390.00,1,'2021-01-11 01:31:02','2021-01-11 01:31:02'),(152,310,NULL,NULL,1750.00,1,'2021-01-11 02:00:18','2021-01-11 02:00:18'),(153,311,NULL,NULL,1550.00,1,'2021-01-11 02:02:46','2021-01-11 02:02:46'),(154,312,NULL,NULL,1550.00,1,'2021-01-11 02:03:59','2021-01-11 02:03:59'),(155,313,NULL,NULL,1890.00,1,'2021-01-11 02:05:15','2021-01-11 02:05:15'),(156,314,NULL,NULL,1890.00,1,'2021-01-11 02:06:18','2021-01-11 02:06:18'),(157,315,NULL,NULL,1990.00,1,'2021-01-11 02:07:23','2021-01-11 02:07:23'),(158,316,NULL,NULL,1590.00,1,'2021-01-11 02:08:21','2021-01-11 02:08:21'),(159,317,NULL,NULL,890.00,1,'2021-01-11 02:09:35','2021-01-11 02:09:35'),(160,318,NULL,NULL,850.00,1,'2021-01-11 02:10:30','2021-01-11 02:10:30'),(161,319,NULL,NULL,1290.00,1,'2021-01-11 02:12:17','2021-01-11 02:12:17'),(162,320,NULL,NULL,390.00,1,'2021-01-11 02:13:30','2021-01-11 02:13:30'),(163,321,NULL,NULL,450.00,1,'2021-01-11 02:14:33','2021-01-11 02:14:33'),(164,322,NULL,NULL,2650.00,1,'2021-01-11 02:15:36','2021-01-11 02:15:36'),(165,323,NULL,NULL,950.00,1,'2021-01-11 02:17:22','2021-01-11 02:17:22'),(166,325,NULL,NULL,1690.00,1,'2021-01-11 02:19:19','2021-01-11 02:19:19'),(168,324,NULL,NULL,950.00,1,'2021-01-11 02:22:03','2021-01-11 02:22:03'),(170,328,NULL,NULL,5200.00,1,'2021-01-11 02:24:34','2021-01-11 02:24:34'),(173,331,NULL,NULL,4900.00,1,'2021-01-11 02:28:10','2021-01-11 02:28:10'),(175,333,NULL,NULL,2550.00,1,'2021-01-11 02:33:42','2021-01-11 02:33:42'),(177,335,NULL,NULL,4400.00,1,'2021-01-11 02:36:08','2021-01-11 02:36:08'),(178,336,NULL,NULL,1250.00,1,'2021-01-11 02:37:07','2021-01-11 02:37:07'),(180,338,NULL,NULL,1250.00,1,'2021-01-11 02:39:12','2021-01-11 02:39:12'),(182,340,NULL,NULL,1890.00,1,'2021-01-11 02:43:01','2021-01-11 02:43:01'),(184,342,NULL,NULL,1880.00,1,'2021-01-11 02:45:36','2021-01-11 02:45:36'),(186,344,NULL,NULL,3800.00,1,'2021-01-11 02:47:44','2021-01-11 02:47:44'),(188,346,NULL,NULL,3850.00,1,'2021-01-11 02:49:52','2021-01-11 02:49:52'),(190,348,NULL,NULL,1950.00,1,'2021-01-11 02:52:23','2021-01-11 02:52:23'),(192,350,NULL,NULL,1850.00,1,'2021-01-11 02:54:39','2021-01-11 02:54:39'),(193,351,NULL,NULL,1250.00,1,'2021-01-11 02:55:40','2021-01-11 02:55:40'),(194,352,NULL,NULL,3800.00,1,'2021-01-11 02:56:42','2021-01-11 02:56:42'),(195,353,NULL,NULL,3600.00,1,'2021-01-11 02:57:49','2021-01-11 02:57:49'),(196,354,NULL,NULL,4100.00,1,'2021-01-11 03:01:46','2021-01-11 03:01:46'),(197,355,NULL,NULL,350.00,1,'2021-01-11 03:02:50','2021-01-11 03:02:50'),(198,356,NULL,NULL,1450.00,1,'2021-01-11 03:03:51','2021-01-11 03:03:51'),(199,357,NULL,NULL,2300.00,1,'2021-01-11 03:05:03','2021-01-11 03:05:03'),(200,358,NULL,NULL,1750.00,1,'2021-01-11 03:07:19','2021-01-11 03:07:19'),(201,359,NULL,NULL,1750.00,1,'2021-01-11 03:08:13','2021-01-11 03:08:13'),(202,360,NULL,NULL,4500.00,1,'2021-01-11 03:09:33','2021-01-11 03:09:33'),(203,361,NULL,NULL,550.00,1,'2021-01-11 03:14:03','2021-01-11 03:14:03'),(204,362,NULL,NULL,920.00,1,'2021-01-11 03:14:56','2021-01-11 03:14:56'),(205,363,NULL,NULL,920.00,1,'2021-01-11 03:16:45','2021-01-11 03:16:45'),(206,364,NULL,NULL,1350.00,1,'2021-01-11 03:17:41','2021-01-11 03:17:41'),(207,365,NULL,NULL,920.00,1,'2021-01-11 03:18:49','2021-01-11 03:18:49'),(208,366,NULL,NULL,1450.00,1,'2021-01-11 03:19:47','2021-01-11 03:19:47'),(209,367,NULL,NULL,1250.00,1,'2021-01-11 03:20:39','2021-01-11 03:20:39'),(210,368,NULL,NULL,850.00,1,'2021-01-11 03:21:44','2021-01-11 03:21:44'),(211,369,NULL,NULL,1690.00,1,'2021-01-11 03:34:45','2021-01-11 03:34:45'),(212,370,NULL,NULL,2450.00,1,'2021-01-11 03:36:17','2021-01-11 03:36:17'),(213,371,NULL,NULL,850.00,1,'2021-01-11 03:37:20','2021-01-11 03:37:20'),(214,372,NULL,NULL,1690.00,1,'2021-01-11 03:38:27','2021-01-11 03:38:27'),(216,374,NULL,NULL,550.00,1,'2021-01-11 03:41:14','2021-01-11 03:41:14'),(218,376,NULL,NULL,550.00,1,'2021-01-11 03:47:08','2021-01-11 03:47:08'),(219,377,NULL,NULL,550.00,1,'2021-01-11 03:48:04','2021-01-11 03:48:04'),(221,379,NULL,NULL,550.00,1,'2021-01-11 03:49:55','2021-01-11 03:49:55'),(222,380,NULL,NULL,550.00,1,'2021-01-11 03:50:45','2021-01-11 03:50:45'),(224,382,NULL,NULL,500.00,1,'2021-01-11 03:52:38','2021-01-11 03:52:38'),(225,383,NULL,NULL,550.00,1,'2021-01-11 03:53:35','2021-01-11 03:53:35'),(227,385,NULL,NULL,550.00,1,'2021-01-11 03:57:25','2021-01-11 03:57:25'),(231,389,NULL,NULL,520.00,1,'2021-01-11 04:01:45','2021-01-11 04:01:45'),(233,391,NULL,NULL,420.00,1,'2021-01-11 04:03:49','2021-01-11 04:03:49'),(235,393,NULL,NULL,520.00,1,'2021-01-11 04:05:45','2021-01-11 04:05:45'),(250,408,NULL,NULL,490.00,1,'2021-01-11 04:26:01','2021-01-11 04:26:01'),(251,409,NULL,NULL,490.00,1,'2021-01-11 04:27:09','2021-01-11 04:27:09'),(253,411,NULL,NULL,390.00,1,'2021-01-11 04:30:15','2021-01-11 04:30:15'),(254,412,NULL,NULL,390.00,1,'2021-01-11 04:31:09','2021-01-11 04:31:09'),(256,414,NULL,NULL,420.00,1,'2021-01-11 04:34:01','2021-01-11 04:34:01'),(258,416,NULL,NULL,530.00,1,'2021-01-11 04:36:04','2021-01-11 04:36:04'),(259,417,NULL,NULL,530.00,1,'2021-01-11 04:36:59','2021-01-11 04:36:59'),(260,418,NULL,NULL,530.00,1,'2021-01-11 04:38:04','2021-01-11 04:38:04'),(261,419,NULL,NULL,530.00,1,'2021-01-11 04:38:56','2021-01-11 04:38:56'),(262,420,NULL,NULL,530.00,1,'2021-01-11 04:39:45','2021-01-11 04:39:45'),(263,421,NULL,NULL,530.00,1,'2021-01-11 04:42:18','2021-01-11 04:42:18'),(264,422,NULL,NULL,530.00,1,'2021-01-11 04:43:36','2021-01-11 04:43:36'),(265,423,NULL,NULL,530.00,1,'2021-01-11 04:44:41','2021-01-11 04:44:41'),(266,424,NULL,NULL,530.00,1,'2021-01-11 04:45:41','2021-01-11 04:45:41'),(267,425,NULL,NULL,450.00,1,'2021-01-11 04:52:54','2021-01-11 04:52:54'),(268,426,NULL,NULL,450.00,1,'2021-01-11 04:53:54','2021-01-11 04:53:54'),(269,427,NULL,NULL,450.00,1,'2021-01-11 04:54:56','2021-01-11 04:54:56'),(270,428,NULL,NULL,450.00,1,'2021-01-11 04:56:07','2021-01-11 04:56:07'),(271,429,NULL,NULL,410.00,1,'2021-01-11 04:58:59','2021-01-11 04:58:59'),(272,430,NULL,NULL,410.00,1,'2021-01-11 05:00:47','2021-01-11 05:00:47'),(273,431,NULL,NULL,500.00,1,'2021-01-11 05:02:54','2021-01-11 05:02:54'),(281,439,NULL,NULL,599.00,1,'2021-01-11 05:45:56','2021-01-11 05:45:56'),(282,440,NULL,NULL,599.00,1,'2021-01-11 05:55:49','2021-01-11 05:55:49'),(284,442,NULL,NULL,599.00,1,'2021-01-11 05:58:17','2021-01-11 05:58:17'),(285,443,NULL,NULL,599.00,1,'2021-01-11 05:59:18','2021-01-11 05:59:18'),(289,447,NULL,NULL,599.00,1,'2021-01-11 06:19:46','2021-01-11 06:19:46'),(293,451,NULL,NULL,599.00,1,'2021-01-11 06:24:56','2021-01-11 06:24:56'),(296,454,NULL,NULL,599.00,1,'2021-01-11 06:28:41','2021-01-11 06:28:41'),(298,456,NULL,NULL,599.00,1,'2021-01-11 06:31:54','2021-01-11 06:31:54'),(299,457,NULL,NULL,360.00,1,'2021-01-11 06:33:54','2021-01-11 06:33:54'),(302,460,NULL,NULL,460.00,1,'2021-01-11 06:42:37','2021-01-11 06:42:37'),(303,461,NULL,NULL,499.00,1,'2021-01-11 06:44:49','2021-01-11 06:44:49'),(304,462,NULL,NULL,200.00,1,'2021-01-11 06:46:12','2021-01-11 06:46:12'),(309,467,NULL,NULL,220.00,1,'2021-01-11 07:18:31','2021-01-11 07:18:31'),(369,537,NULL,NULL,290.00,1,'2021-01-13 04:53:58','2021-01-13 04:53:58'),(370,538,NULL,NULL,370.00,1,'2021-01-13 05:04:12','2021-01-13 05:04:12'),(371,539,NULL,NULL,450.00,1,'2021-01-13 05:04:30','2021-01-13 05:04:30'),(372,540,NULL,NULL,270.00,1,'2021-01-13 05:04:50','2021-01-13 05:04:50'),(373,541,NULL,NULL,490.00,1,'2021-01-13 05:05:05','2021-01-13 05:05:05'),(374,542,NULL,NULL,550.00,1,'2021-01-13 05:05:39','2021-01-13 05:05:39'),(375,543,NULL,NULL,300.00,1,'2021-01-13 05:06:02','2021-01-13 05:06:02'),(376,544,NULL,NULL,550.00,1,'2021-01-13 05:06:15','2021-01-13 05:06:15'),(377,545,NULL,NULL,490.00,1,'2021-01-13 05:06:30','2021-01-13 05:06:30'),(378,546,NULL,NULL,390.00,1,'2021-01-13 05:06:46','2021-01-13 05:06:46'),(380,548,NULL,NULL,2300.00,1,'2021-01-13 05:07:35','2021-01-13 05:07:35'),(381,549,NULL,NULL,1350.00,1,'2021-01-13 05:09:50','2021-01-13 05:09:50'),(382,550,NULL,NULL,390.00,1,'2021-01-13 05:10:05','2021-01-13 05:10:05'),(383,551,NULL,NULL,390.00,1,'2021-01-13 05:10:17','2021-01-13 05:10:17'),(385,553,NULL,NULL,380.00,1,'2021-01-13 05:12:01','2021-01-13 05:12:01'),(387,552,NULL,NULL,460.00,1,'2021-01-13 05:15:48','2021-01-13 05:15:48'),(389,554,NULL,NULL,390.00,1,'2021-01-13 05:16:17','2021-01-13 05:16:17'),(390,555,NULL,NULL,470.00,1,'2021-01-13 05:16:27','2021-01-13 05:16:27'),(391,556,NULL,NULL,350.00,1,'2021-01-13 05:16:39','2021-01-13 05:16:39'),(393,558,NULL,NULL,530.00,1,'2021-01-13 05:17:44','2021-01-13 05:17:44'),(394,559,NULL,NULL,550.00,1,'2021-01-13 05:18:44','2021-01-13 05:18:44'),(395,560,NULL,NULL,780.00,1,'2021-01-13 05:19:08','2021-01-13 05:19:08'),(396,561,NULL,NULL,550.00,1,'2021-01-13 05:20:29','2021-01-13 05:20:29'),(397,562,NULL,NULL,1490.00,1,'2021-01-13 05:20:43','2021-01-13 05:20:43'),(398,563,NULL,NULL,690.00,1,'2021-01-13 05:21:04','2021-01-13 05:21:04'),(399,564,NULL,NULL,1490.00,1,'2021-01-13 05:21:59','2021-01-13 05:21:59'),(400,565,NULL,NULL,790.00,1,'2021-01-13 05:22:35','2021-01-13 05:22:35'),(401,566,NULL,NULL,1290.00,1,'2021-01-13 05:23:15','2021-01-13 05:23:15'),(402,567,NULL,NULL,400.00,1,'2021-01-13 05:27:10','2021-01-13 05:27:10'),(403,568,NULL,NULL,350.00,1,'2021-01-13 05:27:48','2021-01-13 05:27:48'),(404,569,NULL,NULL,1000.00,1,'2021-01-13 05:29:02','2021-01-13 05:29:02'),(405,570,NULL,NULL,190.00,1,'2021-01-13 05:29:52','2021-01-13 05:29:52'),(406,571,NULL,NULL,190.00,1,'2021-01-13 05:30:15','2021-01-13 05:30:15'),(407,572,NULL,NULL,210.00,1,'2021-01-13 05:31:27','2021-01-13 05:31:27'),(408,573,NULL,NULL,210.00,1,'2021-01-13 05:31:57','2021-01-13 05:31:57'),(409,574,NULL,NULL,210.00,1,'2021-01-13 05:32:16','2021-01-13 05:32:16'),(410,490,NULL,NULL,499.00,1,'2021-01-13 05:38:06','2021-01-13 05:38:06'),(411,326,NULL,NULL,250.00,1,'2021-01-13 05:38:23','2021-01-13 05:38:23'),(412,327,NULL,NULL,320.00,1,'2021-01-13 05:38:36','2021-01-13 05:38:36'),(413,329,NULL,NULL,230.00,1,'2021-01-13 05:38:51','2021-01-13 05:38:51'),(414,330,NULL,NULL,330.00,1,'2021-01-13 05:39:11','2021-01-13 05:39:11'),(415,332,NULL,NULL,250.00,1,'2021-01-13 05:39:36','2021-01-13 05:39:36'),(427,387,NULL,NULL,450.00,1,'2021-01-13 05:56:29','2021-01-13 05:56:29'),(433,432,NULL,NULL,1550.00,1,'2021-01-13 05:59:02','2021-01-13 05:59:02'),(434,433,NULL,NULL,690.00,1,'2021-01-13 05:59:16','2021-01-13 05:59:16'),(435,434,NULL,NULL,690.00,1,'2021-01-13 05:59:31','2021-01-13 05:59:31'),(436,435,NULL,NULL,1290.00,1,'2021-01-13 05:59:46','2021-01-13 05:59:46'),(437,436,NULL,NULL,1290.00,1,'2021-01-13 05:59:59','2021-01-13 05:59:59'),(438,437,NULL,NULL,420.00,1,'2021-01-13 06:00:15','2021-01-13 06:00:15'),(440,438,NULL,NULL,420.00,1,'2021-01-13 06:02:38','2021-01-13 06:02:38'),(441,441,NULL,NULL,550.00,1,'2021-01-13 06:02:55','2021-01-13 06:02:55'),(442,444,NULL,NULL,360.00,1,'2021-01-13 06:03:09','2021-01-13 06:03:09'),(443,445,NULL,NULL,520.00,1,'2021-01-13 06:03:29','2021-01-13 06:03:29'),(444,446,NULL,NULL,520.00,1,'2021-01-13 06:03:41','2021-01-13 06:03:41'),(445,448,NULL,NULL,380.00,1,'2021-01-13 06:04:15','2021-01-13 06:04:15'),(446,449,NULL,NULL,380.00,1,'2021-01-13 06:04:30','2021-01-13 06:04:30'),(447,452,NULL,NULL,850.00,1,'2021-01-13 06:04:49','2021-01-13 06:04:49'),(448,453,NULL,NULL,850.00,1,'2021-01-13 06:09:38','2021-01-13 06:09:38'),(449,455,NULL,NULL,490.00,1,'2021-01-13 06:19:42','2021-01-13 06:19:42'),(450,458,NULL,NULL,230.00,1,'2021-01-13 06:19:58','2021-01-13 06:19:58'),(451,459,NULL,NULL,350.00,1,'2021-01-13 06:20:13','2021-01-13 06:20:13'),(452,463,NULL,NULL,750.00,1,'2021-01-13 06:20:36','2021-01-13 06:20:36'),(453,464,NULL,NULL,590.00,1,'2021-01-13 06:20:50','2021-01-13 06:20:50'),(454,465,NULL,NULL,290.00,1,'2021-01-13 06:21:02','2021-01-13 06:21:02'),(455,466,NULL,NULL,230.00,1,'2021-01-13 06:21:15','2021-01-13 06:21:15'),(457,468,NULL,NULL,150.00,1,'2021-01-13 06:29:43','2021-01-13 06:29:43'),(458,469,NULL,NULL,220.00,1,'2021-01-13 06:30:58','2021-01-13 06:30:58'),(459,470,NULL,NULL,370.00,1,'2021-01-13 06:32:15','2021-01-13 06:32:15'),(460,471,NULL,NULL,450.00,1,'2021-01-13 06:33:38','2021-01-13 06:33:38'),(462,472,NULL,NULL,290.00,1,'2021-01-13 06:35:13','2021-01-13 06:35:13'),(464,474,NULL,NULL,450.00,1,'2021-01-13 06:39:13','2021-01-13 06:39:13'),(465,475,NULL,NULL,350.00,1,'2021-01-13 06:39:52','2021-01-13 06:39:52'),(466,476,NULL,NULL,330.00,1,'2021-01-13 06:40:08','2021-01-13 06:40:08'),(467,477,NULL,NULL,250.00,1,'2021-01-13 06:40:36','2021-01-13 06:40:36'),(468,478,NULL,NULL,230.00,1,'2021-01-13 06:41:40','2021-01-13 06:41:40'),(469,479,NULL,NULL,330.00,1,'2021-01-13 06:41:57','2021-01-13 06:41:57'),(470,480,NULL,NULL,430.00,1,'2021-01-13 06:42:16','2021-01-13 06:42:16'),(471,481,NULL,NULL,450.00,1,'2021-01-13 06:48:30','2021-01-13 06:48:30'),(473,482,NULL,NULL,450.00,1,'2021-01-13 06:52:05','2021-01-13 06:52:05'),(474,483,NULL,NULL,320.00,1,'2021-01-13 06:53:22','2021-01-13 06:53:22'),(475,484,NULL,NULL,250.00,1,'2021-01-13 06:53:35','2021-01-13 06:53:35'),(476,485,NULL,NULL,600.00,1,'2021-01-13 06:53:51','2021-01-13 06:53:51'),(477,487,NULL,NULL,360.00,1,'2021-01-13 07:00:39','2021-01-13 07:00:39'),(478,488,NULL,NULL,450.00,1,'2021-01-13 07:00:55','2021-01-13 07:00:55'),(479,489,NULL,NULL,370.00,1,'2021-01-13 07:01:14','2021-01-13 07:01:14'),(480,486,NULL,NULL,300.00,1,'2021-01-13 07:04:54','2021-01-13 07:04:54'),(481,512,NULL,NULL,1140.00,1,'2021-01-13 07:15:37','2021-01-13 07:15:37'),(482,513,NULL,NULL,720.00,1,'2021-01-13 07:15:49','2021-01-13 07:15:49'),(483,514,NULL,NULL,660.00,1,'2021-01-13 07:16:00','2021-01-13 07:16:00'),(484,515,NULL,NULL,850.00,1,'2021-01-13 07:16:11','2021-01-13 07:16:11'),(485,516,NULL,NULL,640.00,1,'2021-01-13 07:16:26','2021-01-13 07:16:26'),(486,517,NULL,NULL,670.00,0,'2021-01-13 07:16:38','2021-01-13 07:16:38'),(487,518,NULL,NULL,710.00,1,'2021-01-13 07:16:47','2021-01-13 07:16:47'),(488,519,NULL,NULL,740.00,1,'2021-01-13 07:19:11','2021-01-13 07:19:11'),(489,520,NULL,NULL,570.00,1,'2021-01-13 07:19:18','2021-01-13 07:19:18'),(490,521,NULL,NULL,620.00,1,'2021-01-13 07:19:28','2021-01-13 07:19:28'),(491,522,NULL,NULL,530.00,1,'2021-01-13 07:19:37','2021-01-13 07:19:37'),(492,523,NULL,NULL,870.00,1,'2021-01-13 07:19:45','2021-01-13 07:19:45'),(493,524,NULL,NULL,1000.00,1,'2021-01-13 07:19:51','2021-01-13 07:19:51'),(494,525,NULL,NULL,550.00,1,'2021-01-13 07:20:01','2021-01-13 07:20:01'),(495,526,NULL,NULL,570.00,1,'2021-01-13 07:20:13','2021-01-13 07:20:13'),(496,527,NULL,NULL,500.00,1,'2021-01-13 07:20:25','2021-01-13 07:20:25'),(497,528,NULL,NULL,640.00,1,'2021-01-13 07:20:33','2021-01-13 07:20:33'),(498,529,NULL,NULL,660.00,1,'2021-01-13 07:20:42','2021-01-13 07:20:42'),(499,530,NULL,NULL,580.00,1,'2021-01-13 07:20:49','2021-01-13 07:20:49'),(500,531,NULL,NULL,1030.00,1,'2021-01-13 07:21:15','2021-01-13 07:21:15'),(501,532,NULL,NULL,550.00,1,'2021-01-13 07:21:23','2021-01-13 07:21:23'),(502,533,NULL,NULL,770.00,1,'2021-01-13 07:21:29','2021-01-13 07:21:29'),(503,534,NULL,NULL,700.00,1,'2021-01-13 07:22:51','2021-01-13 07:22:51'),(504,535,NULL,NULL,700.00,1,'2021-01-13 07:22:58','2021-01-13 07:22:58'),(505,536,NULL,NULL,700.00,1,'2021-01-13 07:23:06','2021-01-13 07:23:06'),(506,493,NULL,NULL,490.00,1,'2021-01-13 07:23:15','2021-01-13 07:23:15'),(507,494,NULL,NULL,270.00,1,'2021-01-13 07:23:23','2021-01-13 07:23:23'),(508,495,NULL,NULL,200.00,1,'2021-01-13 07:23:31','2021-01-13 07:23:31'),(509,496,NULL,NULL,200.00,1,'2021-01-13 07:23:38','2021-01-13 07:23:38'),(510,497,NULL,NULL,190.00,1,'2021-01-13 07:23:45','2021-01-13 07:23:45'),(511,498,NULL,NULL,170.00,1,'2021-01-13 07:23:56','2021-01-13 07:23:56'),(512,499,NULL,NULL,190.00,1,'2021-01-13 07:24:03','2021-01-13 07:24:03'),(513,500,NULL,NULL,250.00,1,'2021-01-13 07:24:10','2021-01-13 07:24:10'),(514,501,NULL,NULL,250.00,1,'2021-01-13 07:24:20','2021-01-13 07:24:20'),(515,502,NULL,NULL,190.00,1,'2021-01-13 07:24:29','2021-01-13 07:24:29'),(516,503,NULL,NULL,260.00,1,'2021-01-13 07:24:36','2021-01-13 07:24:36'),(517,504,NULL,NULL,210.00,1,'2021-01-13 07:24:46','2021-01-13 07:24:46'),(518,505,NULL,NULL,300.00,1,'2021-01-13 07:27:18','2021-01-13 07:27:18'),(519,506,NULL,NULL,200.00,1,'2021-01-13 07:27:27','2021-01-13 07:27:27'),(520,507,NULL,NULL,260.00,1,'2021-01-13 07:27:37','2021-01-13 07:27:37'),(521,508,NULL,NULL,290.00,1,'2021-01-13 07:27:44','2021-01-13 07:27:44'),(522,509,NULL,NULL,840.00,1,'2021-01-13 07:27:53','2021-01-13 07:27:53'),(523,510,NULL,NULL,1000.00,1,'2021-01-13 07:28:02','2021-01-13 07:28:02'),(524,511,NULL,NULL,910.00,1,'2021-01-13 07:28:10','2021-01-13 07:28:10'),(525,604,NULL,NULL,200.00,1,'2021-01-14 05:32:43','2021-01-14 05:32:43'),(526,605,NULL,NULL,200.00,1,'2021-01-14 05:39:28','2021-01-14 05:39:28'),(579,606,'22',NULL,500.00,10,'2021-01-14 08:15:44','2021-01-14 08:15:44'),(580,606,'24',NULL,500.00,10,'2021-01-14 08:15:44','2021-01-14 08:15:44'),(581,606,'26',NULL,500.00,10,'2021-01-14 08:15:44','2021-01-14 08:15:44'),(582,606,'28',NULL,500.00,10,'2021-01-14 08:15:44','2021-01-14 08:15:44'),(583,606,'30',NULL,500.00,10,'2021-01-14 08:15:44','2021-01-14 08:15:44'),(584,606,'32',NULL,500.00,10,'2021-01-14 08:15:44','2021-01-14 08:15:44'),(585,606,'34',NULL,500.00,10,'2021-01-14 08:15:44','2021-01-14 08:15:44'),(586,606,'36',NULL,500.00,10,'2021-01-14 08:15:44','2021-01-14 08:15:44'),(587,606,'38',NULL,500.00,10,'2021-01-14 08:15:44','2021-01-14 08:15:44'),(588,606,'40',NULL,500.00,10,'2021-01-14 08:15:44','2021-01-14 08:15:44'),(589,606,'42',NULL,500.00,10,'2021-01-14 08:15:44','2021-01-14 08:15:44'),(590,606,'44',NULL,500.00,10,'2021-01-14 08:15:44','2021-01-14 08:15:44'),(591,606,'46',NULL,500.00,10,'2021-01-14 08:15:44','2021-01-14 08:15:44'),(592,607,NULL,NULL,500.00,100,'2021-01-14 08:35:43','2021-01-14 08:35:43'),(593,608,NULL,NULL,500.00,10,'2021-01-14 08:37:57','2021-01-14 08:37:57'),(594,609,NULL,NULL,500.00,5,'2021-01-14 08:43:58','2021-01-14 08:43:58'),(595,610,NULL,NULL,200.00,0,'2021-01-14 08:54:35','2021-01-14 08:54:35'),(596,611,NULL,NULL,500.00,10,'2021-01-14 08:55:16','2021-01-14 08:55:16'),(597,612,NULL,NULL,200.00,1,'2021-01-14 09:05:25','2021-01-14 09:05:25'),(927,695,'28','28',790.00,10,'2021-01-20 03:33:10','2021-01-20 03:33:10'),(928,695,'30','30',820.00,10,'2021-01-20 03:33:10','2021-01-20 03:33:10'),(929,695,'32','32',850.00,10,'2021-01-20 03:33:10','2021-01-20 03:33:10'),(930,695,'34','34',880.00,10,'2021-01-20 03:33:10','2021-01-20 03:33:10'),(931,695,'36','36',930.00,10,'2021-01-20 03:33:10','2021-01-20 03:33:10'),(932,695,'38','38',960.00,10,'2021-01-20 03:33:10','2021-01-20 03:33:10'),(933,695,'40','40',990.00,10,'2021-01-20 03:33:10','2021-01-20 03:33:10'),(934,695,'42','42',1020.00,10,'2021-01-20 03:33:10','2021-01-20 03:33:10'),(935,694,'22','22',470.00,10,'2021-01-20 03:35:51','2021-01-20 03:35:51'),(936,694,'24','24',490.00,10,'2021-01-20 03:35:51','2021-01-20 03:35:51'),(937,694,'26','26',510.00,10,'2021-01-20 03:35:51','2021-01-20 03:35:51'),(938,694,'28','28',530.00,10,'2021-01-20 03:35:51','2021-01-20 03:35:51'),(939,694,'30','30',550.00,10,'2021-01-20 03:35:51','2021-01-20 03:35:51'),(940,694,'32','32',580.00,10,'2021-01-20 03:35:51','2021-01-20 03:35:51'),(941,694,'34','34',610.00,10,'2021-01-20 03:35:51','2021-01-20 03:35:51'),(942,694,'36','36',640.00,10,'2021-01-20 03:35:51','2021-01-20 03:35:51'),(943,694,'38','38',670.00,10,'2021-01-20 03:35:51','2021-01-20 03:35:51'),(954,693,'18','18',420.00,10,'2021-01-20 03:38:14','2021-01-20 03:38:14'),(955,693,'20','20',440.00,10,'2021-01-20 03:38:14','2021-01-20 03:38:14'),(956,693,'22','22',460.00,10,'2021-01-20 03:38:14','2021-01-20 03:38:14'),(957,693,'24','24',480.00,10,'2021-01-20 03:38:14','2021-01-20 03:38:14'),(958,693,'26','26',500.00,10,'2021-01-20 03:38:14','2021-01-20 03:38:14'),(959,693,'28','28',520.00,10,'2021-01-20 03:38:14','2021-01-20 03:38:14'),(960,693,'30','30',550.00,10,'2021-01-20 03:38:14','2021-01-20 03:38:14'),(961,693,'S','S',570.00,10,'2021-01-20 03:38:14','2021-01-20 03:38:14'),(962,693,'M','M',590.00,10,'2021-01-20 03:38:14','2021-01-20 03:38:14'),(963,693,'L','L',610.00,10,'2021-01-20 03:38:14','2021-01-20 03:38:14'),(973,691,'18','18',420.00,10,'2021-01-20 03:43:14','2021-01-20 03:43:14'),(974,691,'20','20',440.00,10,'2021-01-20 03:43:14','2021-01-20 03:43:14'),(975,691,'22','22',460.00,10,'2021-01-20 03:43:14','2021-01-20 03:43:14'),(976,691,'24','24',480.00,10,'2021-01-20 03:43:14','2021-01-20 03:43:14'),(977,691,'26','26',500.00,10,'2021-01-20 03:43:14','2021-01-20 03:43:14'),(978,691,'28','28',520.00,10,'2021-01-20 03:43:14','2021-01-20 03:43:14'),(979,691,'30','30',550.00,10,'2021-01-20 03:43:14','2021-01-20 03:43:14'),(980,691,'S','S',570.00,10,'2021-01-20 03:43:14','2021-01-20 03:43:14'),(981,691,'M','M',590.00,10,'2021-01-20 03:43:14','2021-01-20 03:43:14'),(982,691,'L','L',610.00,10,'2021-01-20 03:43:14','2021-01-20 03:43:14'),(1202,672,'22','22',700.00,10,'2021-01-20 06:02:34','2021-01-20 06:02:34'),(1203,672,'24','24',730.00,10,'2021-01-20 06:02:34','2021-01-20 06:02:34'),(1204,672,'26','26',760.00,10,'2021-01-20 06:02:34','2021-01-20 06:02:34'),(1205,672,'28','28',790.00,10,'2021-01-20 06:02:34','2021-01-20 06:02:34'),(1206,672,'30','30',820.00,10,'2021-01-20 06:02:34','2021-01-20 06:02:34'),(1207,672,'32','32',850.00,10,'2021-01-20 06:02:34','2021-01-20 06:02:34'),(1208,672,'34','34',880.00,10,'2021-01-20 06:02:34','2021-01-20 06:02:34'),(1209,672,'36','36',930.00,10,'2021-01-20 06:02:34','2021-01-20 06:02:34'),(1210,672,'38','38',960.00,10,'2021-01-20 06:02:34','2021-01-20 06:02:34'),(1211,672,'40','40',990.00,10,'2021-01-20 06:02:34','2021-01-20 06:02:34'),(1212,672,'42','42',1020.00,10,'2021-01-20 06:02:34','2021-01-20 06:02:34'),(1213,672,'44','44',1050.00,10,'2021-01-20 06:02:34','2021-01-20 06:02:34'),(1709,629,'18','18',420.00,10,'2021-01-20 08:20:25','2021-01-20 08:20:25'),(1710,629,'20','20',440.00,10,'2021-01-20 08:20:25','2021-01-20 08:20:25'),(1711,629,'22','22',460.00,10,'2021-01-20 08:20:25','2021-01-20 08:20:25'),(1712,629,'24','24',480.00,10,'2021-01-20 08:20:25','2021-01-20 08:20:25'),(1713,629,'26','26',500.00,10,'2021-01-20 08:20:25','2021-01-20 08:20:25'),(1714,629,'28','28',520.00,10,'2021-01-20 08:20:25','2021-01-20 08:20:25'),(1715,629,'30','30',550.00,10,'2021-01-20 08:20:25','2021-01-20 08:20:25'),(1716,629,'S','S',570.00,10,'2021-01-20 08:20:25','2021-01-20 08:20:25'),(1717,629,'M','M',590.00,10,'2021-01-20 08:20:25','2021-01-20 08:20:25'),(1718,629,'L','L',610.00,10,'2021-01-20 08:20:25','2021-01-20 08:20:25'),(1731,627,'22','22',470.00,10,'2021-01-20 08:28:35','2021-01-20 08:28:35'),(1732,627,'24','24',490.00,10,'2021-01-20 08:28:35','2021-01-20 08:28:35'),(1733,627,'26','26',510.00,10,'2021-01-20 08:28:35','2021-01-20 08:28:35'),(1734,627,'28','28',530.00,10,'2021-01-20 08:28:35','2021-01-20 08:28:35'),(1735,627,'30','30',550.00,10,'2021-01-20 08:28:35','2021-01-20 08:28:35'),(1736,627,'32','32',580.00,10,'2021-01-20 08:28:35','2021-01-20 08:28:35'),(1737,627,'34','34',610.00,10,'2021-01-20 08:28:35','2021-01-20 08:28:35'),(1738,627,'36','36',640.00,10,'2021-01-20 08:28:35','2021-01-20 08:28:35'),(1739,627,'38','38',670.00,10,'2021-01-20 08:28:35','2021-01-20 08:28:35'),(2240,734,'ChildCap',NULL,100.00,10,'2021-01-21 03:41:11','2021-01-21 03:41:11'),(2257,738,'22',NULL,680.00,10,'2021-01-21 03:41:59','2021-01-21 03:41:59'),(2258,738,'24',NULL,710.00,10,'2021-01-21 03:41:59','2021-01-21 03:41:59'),(2259,738,'26',NULL,740.00,10,'2021-01-21 03:41:59','2021-01-21 03:41:59'),(2260,738,'28',NULL,770.00,10,'2021-01-21 03:41:59','2021-01-21 03:41:59'),(2261,738,'30',NULL,800.00,10,'2021-01-21 03:41:59','2021-01-21 03:41:59'),(2262,738,'32',NULL,830.00,10,'2021-01-21 03:41:59','2021-01-21 03:41:59'),(2263,738,'34',NULL,860.00,10,'2021-01-21 03:41:59','2021-01-21 03:41:59'),(2264,738,'36',NULL,910.00,10,'2021-01-21 03:41:59','2021-01-21 03:41:59'),(2265,738,'38',NULL,940.00,10,'2021-01-21 03:41:59','2021-01-21 03:41:59'),(2266,738,'40',NULL,970.00,10,'2021-01-21 03:41:59','2021-01-21 03:41:59'),(2267,738,'42',NULL,1000.00,10,'2021-01-21 03:41:59','2021-01-21 03:41:59'),(2268,738,'44',NULL,1030.00,10,'2021-01-21 03:41:59','2021-01-21 03:41:59'),(2280,737,'22',NULL,700.00,10,'2021-01-21 03:42:14','2021-01-21 03:42:14'),(2281,737,'24',NULL,730.00,10,'2021-01-21 03:42:14','2021-01-21 03:42:14'),(2282,737,'26',NULL,760.00,10,'2021-01-21 03:42:14','2021-01-21 03:42:14'),(2283,737,'28',NULL,790.00,10,'2021-01-21 03:42:14','2021-01-21 03:42:14'),(2284,737,'30',NULL,820.00,10,'2021-01-21 03:42:14','2021-01-21 03:42:14'),(2285,737,'32',NULL,850.00,10,'2021-01-21 03:42:14','2021-01-21 03:42:14'),(2286,737,'34',NULL,880.00,10,'2021-01-21 03:42:14','2021-01-21 03:42:14'),(2287,737,'36',NULL,930.00,10,'2021-01-21 03:42:14','2021-01-21 03:42:14'),(2288,737,'38',NULL,960.00,10,'2021-01-21 03:42:14','2021-01-21 03:42:14'),(2289,737,'40',NULL,990.00,10,'2021-01-21 03:42:14','2021-01-21 03:42:14'),(2290,737,'42',NULL,1020.00,10,'2021-01-21 03:42:14','2021-01-21 03:42:14'),(2291,736,'18',NULL,400.00,10,'2021-01-21 03:42:20','2021-01-21 03:42:20'),(2292,736,'20',NULL,420.00,10,'2021-01-21 03:42:20','2021-01-21 03:42:20'),(2293,736,'22',NULL,440.00,10,'2021-01-21 03:42:20','2021-01-21 03:42:20'),(2294,736,'24',NULL,460.00,10,'2021-01-21 03:42:20','2021-01-21 03:42:20'),(2295,735,'16',NULL,430.00,10,'2021-01-21 03:42:27','2021-01-21 03:42:27'),(2296,735,'18',NULL,450.00,10,'2021-01-21 03:42:27','2021-01-21 03:42:27'),(2297,735,'20',NULL,470.00,10,'2021-01-21 03:42:27','2021-01-21 03:42:27'),(2298,735,'22',NULL,490.00,10,'2021-01-21 03:42:27','2021-01-21 03:42:27'),(2299,735,'24',NULL,510.00,10,'2021-01-21 03:42:27','2021-01-21 03:42:27'),(2549,779,'StandardSize','StandardSize',100.00,10,'2021-01-21 05:30:21','2021-01-21 05:30:21'),(2550,780,'StandardSize',NULL,100.00,10,'2021-01-21 05:32:09','2021-01-21 05:32:09'),(2552,782,'StandardSize','StandardSize',100.00,10,'2021-01-21 05:35:47','2021-01-21 05:35:47'),(2557,784,'StandardSize','StandardSize',100.00,10,'2021-01-21 06:18:42','2021-01-21 06:18:42'),(2561,789,'StandardSize','StandardSize',100.00,10,'2021-01-21 06:30:17','2021-01-21 06:30:17'),(2574,798,NULL,NULL,150.00,1,'2021-01-21 07:32:34','2021-01-21 07:32:34'),(2592,603,NULL,NULL,5600.00,1,'2021-01-21 09:16:09','2021-01-21 09:16:09'),(2605,591,NULL,NULL,1600.00,1,'2021-01-21 09:24:39','2021-01-21 09:24:39'),(2606,590,NULL,NULL,1600.00,0,'2021-01-21 09:24:51','2021-01-21 09:24:51'),(2607,593,NULL,NULL,1600.00,1,'2021-01-21 09:25:30','2021-01-21 09:25:30'),(2608,594,NULL,NULL,1600.00,1,'2021-01-21 09:25:40','2021-01-21 09:25:40'),(2612,592,NULL,NULL,1600.00,1,'2021-01-21 09:26:48','2021-01-21 09:26:48'),(2616,595,NULL,NULL,1150.00,1,'2021-01-21 09:27:30','2021-01-21 09:27:30'),(2617,596,NULL,NULL,1150.00,1,'2021-01-21 09:27:38','2021-01-21 09:27:38'),(2619,597,NULL,NULL,1150.00,0,'2021-01-21 09:28:23','2021-01-21 09:28:23'),(2620,598,NULL,NULL,1150.00,1,'2021-01-21 09:28:39','2021-01-21 09:28:39'),(2643,581,NULL,NULL,3300.00,10,'2021-01-21 09:35:28','2021-01-21 09:35:28'),(2644,582,NULL,NULL,3300.00,10,'2021-01-21 09:35:41','2021-01-21 09:35:41'),(2648,583,NULL,NULL,3300.00,10,'2021-01-21 09:36:02','2021-01-21 09:36:02'),(2652,584,NULL,NULL,3300.00,10,'2021-01-21 09:36:36','2021-01-21 09:36:36'),(2653,585,NULL,NULL,3300.00,0,'2021-01-21 09:36:49','2021-01-21 09:36:49'),(2657,586,NULL,NULL,1750.00,10,'2021-01-21 09:37:28','2021-01-21 09:37:28'),(2658,587,NULL,NULL,1750.00,10,'2021-01-21 09:37:39','2021-01-21 09:37:39'),(2659,588,NULL,NULL,1750.00,0,'2021-01-21 09:37:56','2021-01-21 09:37:56'),(2660,589,NULL,NULL,1750.00,1,'2021-01-21 09:38:07','2021-01-21 09:38:07'),(2715,334,NULL,NULL,549.00,1,'2021-01-21 10:21:21','2021-01-21 10:21:21'),(2737,613,'36','36',930.00,10,'2021-01-21 10:30:47','2021-01-21 10:30:47'),(2738,613,'38','38',960.00,10,'2021-01-21 10:30:47','2021-01-21 10:30:47'),(2739,613,'40','40',990.00,10,'2021-01-21 10:30:47','2021-01-21 10:30:47'),(2740,613,'42','42',1020.00,10,'2021-01-21 10:30:47','2021-01-21 10:30:47'),(2741,613,'44','44',1050.00,10,'2021-01-21 10:30:47','2021-01-21 10:30:47'),(2742,613,'46','46',1080.00,10,'2021-01-21 10:30:47','2021-01-21 10:30:47'),(2743,614,'28','28',520.00,10,'2021-01-21 10:30:55','2021-01-21 10:30:55'),(2744,614,'30','30',550.00,10,'2021-01-21 10:30:55','2021-01-21 10:30:55'),(2745,614,'S','S',570.00,10,'2021-01-21 10:30:55','2021-01-21 10:30:55'),(2746,614,'M','M',590.00,10,'2021-01-21 10:30:55','2021-01-21 10:30:55'),(2747,614,'L','L',610.00,10,'2021-01-21 10:30:55','2021-01-21 10:30:55'),(2748,615,'26','26',480.00,10,'2021-01-21 10:31:00','2021-01-21 10:31:00'),(2749,615,'28','28',500.00,10,'2021-01-21 10:31:00','2021-01-21 10:31:00'),(2750,615,'30','30',530.00,10,'2021-01-21 10:31:00','2021-01-21 10:31:00'),(2751,615,'S','S',550.00,10,'2021-01-21 10:31:00','2021-01-21 10:31:00'),(2752,615,'M','M',570.00,10,'2021-01-21 10:31:00','2021-01-21 10:31:00'),(2753,615,'L','L',590.00,10,'2021-01-21 10:31:00','2021-01-21 10:31:00'),(2754,616,'40*28','40*28',690.00,10,'2021-01-21 10:31:10','2021-01-21 10:31:10'),(2755,616,'40*30','40*30',710.00,10,'2021-01-21 10:31:10','2021-01-21 10:31:10'),(2756,616,'40*32','40*32',730.00,10,'2021-01-21 10:31:10','2021-01-21 10:31:10'),(2757,616,'40*34','40*34',750.00,10,'2021-01-21 10:31:10','2021-01-21 10:31:10'),(2758,616,'40*36','40*36',780.00,10,'2021-01-21 10:31:10','2021-01-21 10:31:10'),(2759,616,'40*38','40*38',800.00,10,'2021-01-21 10:31:10','2021-01-21 10:31:10'),(2760,616,'42*28','42*28',710.00,10,'2021-01-21 10:31:10','2021-01-21 10:31:10'),(2761,616,'42*30','42*30',730.00,10,'2021-01-21 10:31:10','2021-01-21 10:31:10'),(2762,616,'42*32','42*32',750.00,10,'2021-01-21 10:31:10','2021-01-21 10:31:10'),(2763,616,'42*34','42*34',770.00,10,'2021-01-21 10:31:10','2021-01-21 10:31:10'),(2764,616,'42*36','42*36',800.00,10,'2021-01-21 10:31:10','2021-01-21 10:31:10'),(2765,616,'42*38','42*38',820.00,10,'2021-01-21 10:31:10','2021-01-21 10:31:10'),(2766,616,'42*40','42*40',840.00,10,'2021-01-21 10:31:10','2021-01-21 10:31:10'),(2767,616,'42*42','42*42',870.00,10,'2021-01-21 10:31:10','2021-01-21 10:31:10'),(2768,617,'36','36',1000.00,10,'2021-01-21 10:31:19','2021-01-21 10:31:19'),(2769,617,'38','38',1000.00,10,'2021-01-21 10:31:19','2021-01-21 10:31:19'),(2770,617,'40','40',1000.00,10,'2021-01-21 10:31:19','2021-01-21 10:31:19'),(2771,617,'42','42',1000.00,10,'2021-01-21 10:31:19','2021-01-21 10:31:19'),(2772,617,'44','44',1000.00,10,'2021-01-21 10:31:19','2021-01-21 10:31:19'),(2773,617,'46','46',1000.00,10,'2021-01-21 10:31:19','2021-01-21 10:31:19'),(2774,618,'28','28',550.00,10,'2021-01-21 10:31:28','2021-01-21 10:31:28'),(2775,618,'30','30',550.00,10,'2021-01-21 10:31:28','2021-01-21 10:31:28'),(2776,618,'S','S',550.00,10,'2021-01-21 10:31:28','2021-01-21 10:31:28'),(2777,618,'M','M',550.00,10,'2021-01-21 10:31:28','2021-01-21 10:31:28'),(2778,618,'L','L',550.00,10,'2021-01-21 10:31:28','2021-01-21 10:31:28'),(2779,619,'36','36',910.00,10,'2021-01-21 10:31:35','2021-01-21 10:31:35'),(2780,619,'38','38',940.00,10,'2021-01-21 10:31:35','2021-01-21 10:31:35'),(2781,619,'40','40',970.00,10,'2021-01-21 10:31:35','2021-01-21 10:31:35'),(2782,619,'42','42',1000.00,10,'2021-01-21 10:31:35','2021-01-21 10:31:35'),(2783,619,'44','44',1030.00,10,'2021-01-21 10:31:35','2021-01-21 10:31:35'),(2784,619,'46','46',1060.00,10,'2021-01-21 10:31:35','2021-01-21 10:31:35'),(2785,619,'48','48',1090.00,10,'2021-01-21 10:31:35','2021-01-21 10:31:35'),(2786,620,'28','28',500.00,10,'2021-01-21 10:31:42','2021-01-21 10:31:42'),(2787,620,'30','30',530.00,10,'2021-01-21 10:31:42','2021-01-21 10:31:42'),(2788,620,'S','S',550.00,10,'2021-01-21 10:31:42','2021-01-21 10:31:42'),(2789,620,'M','M',570.00,10,'2021-01-21 10:31:42','2021-01-21 10:31:42'),(2790,620,'L','L',590.00,10,'2021-01-21 10:31:42','2021-01-21 10:31:42'),(2791,620,'XL','XL',610.00,10,'2021-01-21 10:31:42','2021-01-21 10:31:42'),(2792,621,'40*28','40*28',690.00,10,'2021-01-21 10:31:48','2021-01-21 10:31:48'),(2793,621,'40*30','40*30',710.00,10,'2021-01-21 10:31:48','2021-01-21 10:31:48'),(2794,621,'40*32','40*32',730.00,10,'2021-01-21 10:31:48','2021-01-21 10:31:48'),(2795,621,'40*34','40*34',750.00,10,'2021-01-21 10:31:48','2021-01-21 10:31:48'),(2796,621,'40*36','40*36',780.00,10,'2021-01-21 10:31:48','2021-01-21 10:31:48'),(2797,621,'40*38','40*38',800.00,10,'2021-01-21 10:31:48','2021-01-21 10:31:48'),(2798,621,'42*28','42*28',710.00,10,'2021-01-21 10:31:48','2021-01-21 10:31:48'),(2799,621,'42*30','42*30',730.00,10,'2021-01-21 10:31:48','2021-01-21 10:31:48'),(2800,621,'42*32','42*32',750.00,10,'2021-01-21 10:31:48','2021-01-21 10:31:48'),(2801,621,'42*34','42*34',770.00,10,'2021-01-21 10:31:48','2021-01-21 10:31:48'),(2802,621,'42*36','42*36',800.00,10,'2021-01-21 10:31:48','2021-01-21 10:31:48'),(2803,621,'42*38','42*38',820.00,10,'2021-01-21 10:31:48','2021-01-21 10:31:48'),(2804,621,'42*40','42*40',840.00,10,'2021-01-21 10:31:48','2021-01-21 10:31:48'),(2805,621,'42*42','42*42',870.00,10,'2021-01-21 10:31:48','2021-01-21 10:31:48'),(2806,622,'36','36',930.00,10,'2021-01-21 10:31:56','2021-01-21 10:31:56'),(2807,622,'38','38',960.00,10,'2021-01-21 10:31:56','2021-01-21 10:31:56'),(2808,622,'40','40',990.00,10,'2021-01-21 10:31:56','2021-01-21 10:31:56'),(2809,622,'42','42',1020.00,10,'2021-01-21 10:31:56','2021-01-21 10:31:56'),(2810,622,'44','44',1050.00,10,'2021-01-21 10:31:56','2021-01-21 10:31:56'),(2811,622,'46','46',1080.00,10,'2021-01-21 10:31:56','2021-01-21 10:31:56'),(2812,623,'40*28','40*28',690.00,10,'2021-01-21 10:32:03','2021-01-21 10:32:03'),(2813,623,'40*30','40*30',710.00,10,'2021-01-21 10:32:03','2021-01-21 10:32:03'),(2814,623,'40*32','40*32',730.00,10,'2021-01-21 10:32:03','2021-01-21 10:32:03'),(2815,623,'40*34','40*34',750.00,10,'2021-01-21 10:32:03','2021-01-21 10:32:03'),(2816,623,'40*36','40*36',780.00,10,'2021-01-21 10:32:03','2021-01-21 10:32:03'),(2817,623,'40*38','40*38',800.00,10,'2021-01-21 10:32:03','2021-01-21 10:32:03'),(2818,623,'42*28','42*28',710.00,10,'2021-01-21 10:32:03','2021-01-21 10:32:03'),(2819,623,'42*30','42*30',730.00,10,'2021-01-21 10:32:03','2021-01-21 10:32:03'),(2820,623,'42*32','42*32',750.00,10,'2021-01-21 10:32:03','2021-01-21 10:32:03'),(2821,623,'42*34','42*34',770.00,10,'2021-01-21 10:32:03','2021-01-21 10:32:03'),(2822,623,'42*36','42*36',800.00,10,'2021-01-21 10:32:03','2021-01-21 10:32:03'),(2823,623,'42*38','42*38',820.00,10,'2021-01-21 10:32:03','2021-01-21 10:32:03'),(2824,623,'42*40','42*40',840.00,10,'2021-01-21 10:32:03','2021-01-21 10:32:03'),(2825,623,'42*42','42*42',870.00,10,'2021-01-21 10:32:03','2021-01-21 10:32:03'),(2826,624,'36','36',930.00,10,'2021-01-21 10:32:09','2021-01-21 10:32:09'),(2827,624,'38','38',960.00,10,'2021-01-21 10:32:09','2021-01-21 10:32:09'),(2828,624,'40','40',990.00,10,'2021-01-21 10:32:09','2021-01-21 10:32:09'),(2829,624,'42','42',1020.00,10,'2021-01-21 10:32:09','2021-01-21 10:32:09'),(2830,624,'44','44',1050.00,10,'2021-01-21 10:32:09','2021-01-21 10:32:09'),(2831,625,'18','18',420.00,10,'2021-01-21 10:32:15','2021-01-21 10:32:15'),(2832,625,'20','20',440.00,10,'2021-01-21 10:32:15','2021-01-21 10:32:15'),(2833,625,'22','22',460.00,10,'2021-01-21 10:32:15','2021-01-21 10:32:15'),(2834,625,'24','24',480.00,10,'2021-01-21 10:32:15','2021-01-21 10:32:15'),(2835,625,'26','26',500.00,10,'2021-01-21 10:32:15','2021-01-21 10:32:15'),(2836,625,'28','28',520.00,10,'2021-01-21 10:32:15','2021-01-21 10:32:15'),(2837,625,'30','30',550.00,10,'2021-01-21 10:32:15','2021-01-21 10:32:15'),(2838,625,'S','S',570.00,10,'2021-01-21 10:32:15','2021-01-21 10:32:15'),(2839,625,'M','M',590.00,10,'2021-01-21 10:32:15','2021-01-21 10:32:15'),(2840,625,'L','L',610.00,10,'2021-01-21 10:32:15','2021-01-21 10:32:15'),(2841,626,'28','28',520.00,10,'2021-01-21 10:32:21','2021-01-21 10:32:21'),(2842,626,'30','30',550.00,10,'2021-01-21 10:32:21','2021-01-21 10:32:21'),(2843,626,'S','S',570.00,10,'2021-01-21 10:32:21','2021-01-21 10:32:21'),(2844,626,'M','M',590.00,10,'2021-01-21 10:32:21','2021-01-21 10:32:21'),(2845,626,'L','L',610.00,10,'2021-01-21 10:32:21','2021-01-21 10:32:21'),(2846,628,'22','22',700.00,10,'2021-01-21 10:32:28','2021-01-21 10:32:28'),(2847,628,'24','24',730.00,10,'2021-01-21 10:32:28','2021-01-21 10:32:28'),(2848,628,'26','26',760.00,10,'2021-01-21 10:32:28','2021-01-21 10:32:28'),(2849,628,'28','28',790.00,10,'2021-01-21 10:32:28','2021-01-21 10:32:28'),(2850,628,'30','30',820.00,10,'2021-01-21 10:32:28','2021-01-21 10:32:28'),(2851,628,'32','32',850.00,10,'2021-01-21 10:32:28','2021-01-21 10:32:28'),(2852,628,'34','34',880.00,10,'2021-01-21 10:32:28','2021-01-21 10:32:28'),(2853,628,'36','36',930.00,10,'2021-01-21 10:32:28','2021-01-21 10:32:28'),(2854,628,'38','38',960.00,10,'2021-01-21 10:32:28','2021-01-21 10:32:28'),(2855,628,'40','40',990.00,10,'2021-01-21 10:32:28','2021-01-21 10:32:28'),(2856,628,'42','42',1020.00,10,'2021-01-21 10:32:28','2021-01-21 10:32:28'),(2857,628,'44','44',1050.00,10,'2021-01-21 10:32:28','2021-01-21 10:32:28'),(2858,643,'22','22',470.00,10,'2021-01-21 10:32:34','2021-01-21 10:32:34'),(2859,643,'24','24',490.00,10,'2021-01-21 10:32:34','2021-01-21 10:32:34'),(2860,643,'26','26',510.00,10,'2021-01-21 10:32:34','2021-01-21 10:32:34'),(2861,643,'28','28',530.00,10,'2021-01-21 10:32:34','2021-01-21 10:32:34'),(2862,643,'30','30',550.00,10,'2021-01-21 10:32:34','2021-01-21 10:32:34'),(2863,643,'32','32',580.00,10,'2021-01-21 10:32:34','2021-01-21 10:32:34'),(2864,643,'34','34',610.00,10,'2021-01-21 10:32:34','2021-01-21 10:32:34'),(2865,643,'36','36',640.00,10,'2021-01-21 10:32:34','2021-01-21 10:32:34'),(2866,643,'38','38',670.00,10,'2021-01-21 10:32:34','2021-01-21 10:32:34'),(2867,642,'40*28','40*28',690.00,10,'2021-01-21 10:32:40','2021-01-21 10:32:40'),(2868,642,'40*30','40*30',710.00,10,'2021-01-21 10:32:40','2021-01-21 10:32:40'),(2869,642,'40*32','40*32',730.00,10,'2021-01-21 10:32:40','2021-01-21 10:32:40'),(2870,642,'40*34','40*34',750.00,10,'2021-01-21 10:32:40','2021-01-21 10:32:40'),(2871,642,'40*36','40*36',780.00,10,'2021-01-21 10:32:40','2021-01-21 10:32:40'),(2872,642,'40*38','40*38',800.00,10,'2021-01-21 10:32:40','2021-01-21 10:32:40'),(2873,642,'42*28','42*28',710.00,10,'2021-01-21 10:32:40','2021-01-21 10:32:40'),(2874,642,'42*30','42*30',730.00,10,'2021-01-21 10:32:40','2021-01-21 10:32:40'),(2875,642,'42*32','42*32',750.00,10,'2021-01-21 10:32:40','2021-01-21 10:32:40'),(2876,642,'42*34','42*34',770.00,10,'2021-01-21 10:32:40','2021-01-21 10:32:40'),(2877,642,'42*36','42*36',800.00,10,'2021-01-21 10:32:40','2021-01-21 10:32:40'),(2878,642,'42*38','42*38',820.00,10,'2021-01-21 10:32:40','2021-01-21 10:32:40'),(2879,642,'42*40','42*40',840.00,10,'2021-01-21 10:32:40','2021-01-21 10:32:40'),(2880,642,'42*42','42*42',870.00,10,'2021-01-21 10:32:40','2021-01-21 10:32:40'),(2881,641,'28','28',790.00,10,'2021-01-21 10:32:49','2021-01-21 10:32:49'),(2882,641,'30','30',820.00,10,'2021-01-21 10:32:49','2021-01-21 10:32:49'),(2883,641,'32','32',850.00,10,'2021-01-21 10:32:49','2021-01-21 10:32:49'),(2884,641,'34','34',880.00,10,'2021-01-21 10:32:49','2021-01-21 10:32:49'),(2885,641,'36','36',930.00,10,'2021-01-21 10:32:49','2021-01-21 10:32:49'),(2886,641,'38','38',960.00,10,'2021-01-21 10:32:49','2021-01-21 10:32:49'),(2887,641,'40','40',990.00,10,'2021-01-21 10:32:49','2021-01-21 10:32:49'),(2888,641,'42','42',1020.00,10,'2021-01-21 10:32:49','2021-01-21 10:32:49'),(2889,641,'44','44',1050.00,10,'2021-01-21 10:32:49','2021-01-21 10:32:49'),(2890,640,'22','22',680.00,10,'2021-01-21 10:32:54','2021-01-21 10:32:54'),(2891,640,'24','24',710.00,10,'2021-01-21 10:32:54','2021-01-21 10:32:54'),(2892,640,'26','26',740.00,10,'2021-01-21 10:32:54','2021-01-21 10:32:54'),(2893,640,'28','28',770.00,10,'2021-01-21 10:32:54','2021-01-21 10:32:54'),(2894,640,'30','30',800.00,10,'2021-01-21 10:32:54','2021-01-21 10:32:54'),(2895,640,'32','32',830.00,10,'2021-01-21 10:32:54','2021-01-21 10:32:54'),(2896,640,'34','34',860.00,10,'2021-01-21 10:32:54','2021-01-21 10:32:54'),(2897,640,'36','36',910.00,10,'2021-01-21 10:32:54','2021-01-21 10:32:54'),(2898,640,'38','38',940.00,10,'2021-01-21 10:32:54','2021-01-21 10:32:54'),(2899,640,'40','40',970.00,10,'2021-01-21 10:32:54','2021-01-21 10:32:54'),(2900,640,'42','42',1000.00,10,'2021-01-21 10:32:54','2021-01-21 10:32:54'),(2901,640,'44','44',1030.00,10,'2021-01-21 10:32:54','2021-01-21 10:32:54'),(2905,639,'40*28','40*28',690.00,10,'2021-01-21 10:33:16','2021-01-21 10:33:16'),(2906,639,'40*30','40*30',710.00,10,'2021-01-21 10:33:16','2021-01-21 10:33:16'),(2907,639,'40*32','40*32',730.00,10,'2021-01-21 10:33:16','2021-01-21 10:33:16'),(2908,639,'.40*34','.40*34',750.00,10,'2021-01-21 10:33:16','2021-01-21 10:33:16'),(2909,639,'40*36','40*36',780.00,10,'2021-01-21 10:33:16','2021-01-21 10:33:16'),(2910,639,'40*38','40*38',800.00,10,'2021-01-21 10:33:16','2021-01-21 10:33:16'),(2911,639,'42*28','42*28',710.00,10,'2021-01-21 10:33:16','2021-01-21 10:33:16'),(2912,639,'42*30','42*30',730.00,10,'2021-01-21 10:33:16','2021-01-21 10:33:16'),(2913,639,'42*32','42*32',750.00,10,'2021-01-21 10:33:16','2021-01-21 10:33:16'),(2914,639,'42*34','42*34',770.00,10,'2021-01-21 10:33:16','2021-01-21 10:33:16'),(2915,639,'42*36','42*36',800.00,10,'2021-01-21 10:33:16','2021-01-21 10:33:16'),(2916,639,'42*38','42*38',820.00,10,'2021-01-21 10:33:16','2021-01-21 10:33:16'),(2917,639,'42*40','42*40',840.00,10,'2021-01-21 10:33:16','2021-01-21 10:33:16'),(2918,639,'42*42','42*42',870.00,10,'2021-01-21 10:33:16','2021-01-21 10:33:16'),(2919,638,'22','22',680.00,10,'2021-01-21 10:33:22','2021-01-21 10:33:22'),(2920,638,'24','24',710.00,10,'2021-01-21 10:33:22','2021-01-21 10:33:22'),(2921,638,'26','26',740.00,10,'2021-01-21 10:33:22','2021-01-21 10:33:22'),(2922,638,'28','28',770.00,10,'2021-01-21 10:33:22','2021-01-21 10:33:22'),(2923,638,'30','30',800.00,10,'2021-01-21 10:33:22','2021-01-21 10:33:22'),(2924,638,'32','32',830.00,10,'2021-01-21 10:33:22','2021-01-21 10:33:22'),(2925,638,'34','34',860.00,10,'2021-01-21 10:33:22','2021-01-21 10:33:22'),(2926,638,'36','36',910.00,10,'2021-01-21 10:33:22','2021-01-21 10:33:22'),(2927,638,'38','38',940.00,10,'2021-01-21 10:33:22','2021-01-21 10:33:22'),(2928,638,'40','40',970.00,10,'2021-01-21 10:33:22','2021-01-21 10:33:22'),(2929,638,'42','42',1000.00,10,'2021-01-21 10:33:22','2021-01-21 10:33:22'),(2930,638,'44','44',1030.00,10,'2021-01-21 10:33:22','2021-01-21 10:33:22'),(2931,637,'22','22',470.00,10,'2021-01-21 10:33:28','2021-01-21 10:33:28'),(2932,637,'24','24',490.00,10,'2021-01-21 10:33:28','2021-01-21 10:33:28'),(2933,637,'26','26',510.00,10,'2021-01-21 10:33:28','2021-01-21 10:33:28'),(2934,637,'28','28',530.00,10,'2021-01-21 10:33:28','2021-01-21 10:33:28'),(2935,637,'30','30',550.00,10,'2021-01-21 10:33:28','2021-01-21 10:33:28'),(2936,637,'32','32',580.00,10,'2021-01-21 10:33:28','2021-01-21 10:33:28'),(2937,637,'34','34',610.00,10,'2021-01-21 10:33:28','2021-01-21 10:33:28'),(2938,637,'36','36',640.00,10,'2021-01-21 10:33:28','2021-01-21 10:33:28'),(2939,637,'38','38',670.00,10,'2021-01-21 10:33:28','2021-01-21 10:33:28'),(2940,636,'18','18',420.00,10,'2021-01-21 10:33:34','2021-01-21 10:33:34'),(2941,636,'20','20',440.00,10,'2021-01-21 10:33:34','2021-01-21 10:33:34'),(2942,636,'22','22',460.00,10,'2021-01-21 10:33:34','2021-01-21 10:33:34'),(2943,636,'24','24',480.00,10,'2021-01-21 10:33:34','2021-01-21 10:33:34'),(2944,636,'26','26',500.00,10,'2021-01-21 10:33:34','2021-01-21 10:33:34'),(2945,636,'28','28',520.00,10,'2021-01-21 10:33:34','2021-01-21 10:33:34'),(2946,636,'30','30',550.00,10,'2021-01-21 10:33:34','2021-01-21 10:33:34'),(2947,636,'S','S',570.00,10,'2021-01-21 10:33:34','2021-01-21 10:33:34'),(2948,636,'M','M',590.00,10,'2021-01-21 10:33:34','2021-01-21 10:33:34'),(2949,636,'L','L',610.00,10,'2021-01-21 10:33:34','2021-01-21 10:33:34'),(2950,635,'22','22',680.00,10,'2021-01-21 10:33:42','2021-01-21 10:33:42'),(2951,635,'24','24',710.00,10,'2021-01-21 10:33:42','2021-01-21 10:33:42'),(2952,635,'26','26',740.00,10,'2021-01-21 10:33:42','2021-01-21 10:33:42'),(2953,635,'28','28',770.00,10,'2021-01-21 10:33:42','2021-01-21 10:33:42'),(2954,635,'30','30',800.00,10,'2021-01-21 10:33:42','2021-01-21 10:33:42'),(2955,635,'32','32',830.00,10,'2021-01-21 10:33:42','2021-01-21 10:33:42'),(2956,635,'34','34',860.00,10,'2021-01-21 10:33:42','2021-01-21 10:33:42'),(2957,635,'36','36',910.00,10,'2021-01-21 10:33:42','2021-01-21 10:33:42'),(2958,635,'38','38',940.00,10,'2021-01-21 10:33:42','2021-01-21 10:33:42'),(2959,635,'40','40',970.00,10,'2021-01-21 10:33:42','2021-01-21 10:33:42'),(2960,635,'42','42',1000.00,10,'2021-01-21 10:33:42','2021-01-21 10:33:42'),(2961,635,'44','44',1030.00,10,'2021-01-21 10:33:42','2021-01-21 10:33:42'),(2962,634,'22','22',680.00,10,'2021-01-21 10:33:50','2021-01-21 10:33:50'),(2963,634,'24','24',710.00,10,'2021-01-21 10:33:50','2021-01-21 10:33:50'),(2964,634,'26','26',740.00,10,'2021-01-21 10:33:50','2021-01-21 10:33:50'),(2965,634,'28','28',770.00,10,'2021-01-21 10:33:50','2021-01-21 10:33:50'),(2966,634,'30','30',800.00,10,'2021-01-21 10:33:50','2021-01-21 10:33:50'),(2967,634,'32','32',830.00,10,'2021-01-21 10:33:50','2021-01-21 10:33:50'),(2968,634,'34','34',860.00,10,'2021-01-21 10:33:50','2021-01-21 10:33:50'),(2969,634,'36','36',910.00,10,'2021-01-21 10:33:50','2021-01-21 10:33:50'),(2970,634,'38','38',940.00,10,'2021-01-21 10:33:50','2021-01-21 10:33:50'),(2971,634,'40','40',970.00,10,'2021-01-21 10:33:50','2021-01-21 10:33:50'),(2972,634,'42','42',1000.00,10,'2021-01-21 10:33:50','2021-01-21 10:33:50'),(2973,634,'44','44',1030.00,10,'2021-01-21 10:33:50','2021-01-21 10:33:50'),(2974,633,'26','26',760.00,10,'2021-01-21 10:33:54','2021-01-21 10:33:54'),(2975,633,'28','28',790.00,10,'2021-01-21 10:33:54','2021-01-21 10:33:54'),(2976,633,'30','30',820.00,10,'2021-01-21 10:33:54','2021-01-21 10:33:54'),(2977,633,'32','32',850.00,10,'2021-01-21 10:33:54','2021-01-21 10:33:54'),(2978,633,'34','34',880.00,10,'2021-01-21 10:33:54','2021-01-21 10:33:54'),(2979,633,'36','36',930.00,10,'2021-01-21 10:33:54','2021-01-21 10:33:54'),(2980,633,'38','38',960.00,10,'2021-01-21 10:33:54','2021-01-21 10:33:54'),(2981,633,'40','40',990.00,10,'2021-01-21 10:33:54','2021-01-21 10:33:54'),(2982,633,'42','42',1020.00,10,'2021-01-21 10:33:54','2021-01-21 10:33:54'),(2983,633,'44','44',1050.00,10,'2021-01-21 10:33:54','2021-01-21 10:33:54'),(2984,632,'22','22',490.00,10,'2021-01-21 10:34:00','2021-01-21 10:34:00'),(2985,632,'24','24',520.00,10,'2021-01-21 10:34:00','2021-01-21 10:34:00'),(2986,632,'26','26',560.00,10,'2021-01-21 10:34:00','2021-01-21 10:34:00'),(2987,632,'28','28',590.00,10,'2021-01-21 10:34:00','2021-01-21 10:34:00'),(2988,632,'30','30',630.00,10,'2021-01-21 10:34:00','2021-01-21 10:34:00'),(2989,632,'32','32',660.00,10,'2021-01-21 10:34:00','2021-01-21 10:34:00'),(2990,632,'34','34',700.00,10,'2021-01-21 10:34:00','2021-01-21 10:34:00'),(2991,632,'36','36',730.00,10,'2021-01-21 10:34:00','2021-01-21 10:34:00'),(2992,632,'38','38',770.00,10,'2021-01-21 10:34:00','2021-01-21 10:34:00'),(2993,631,'22','22',680.00,10,'2021-01-21 10:34:06','2021-01-21 10:34:06'),(2994,631,'24','24',710.00,10,'2021-01-21 10:34:06','2021-01-21 10:34:06'),(2995,631,'26','26',740.00,10,'2021-01-21 10:34:06','2021-01-21 10:34:06'),(2996,631,'28','28',770.00,10,'2021-01-21 10:34:06','2021-01-21 10:34:06'),(2997,631,'30','30',800.00,10,'2021-01-21 10:34:06','2021-01-21 10:34:06'),(2998,631,'32','32',830.00,10,'2021-01-21 10:34:06','2021-01-21 10:34:06'),(2999,631,'34','34',860.00,10,'2021-01-21 10:34:06','2021-01-21 10:34:06'),(3000,631,'36','36',910.00,10,'2021-01-21 10:34:06','2021-01-21 10:34:06'),(3001,631,'38','38',940.00,10,'2021-01-21 10:34:06','2021-01-21 10:34:06'),(3002,631,'40','40',970.00,10,'2021-01-21 10:34:06','2021-01-21 10:34:06'),(3003,631,'42','42',1000.00,10,'2021-01-21 10:34:06','2021-01-21 10:34:06'),(3004,631,'44','44',1030.00,10,'2021-01-21 10:34:06','2021-01-21 10:34:06'),(3005,631,'46','46',1060.00,10,'2021-01-21 10:34:06','2021-01-21 10:34:06'),(3006,630,'18','18',430.00,10,'2021-01-21 10:34:11','2021-01-21 10:34:11'),(3007,630,'20','20',450.00,10,'2021-01-21 10:34:11','2021-01-21 10:34:11'),(3008,630,'22','22',470.00,10,'2021-01-21 10:34:11','2021-01-21 10:34:11'),(3009,630,'24','24',480.00,10,'2021-01-21 10:34:11','2021-01-21 10:34:11'),(3010,630,'26','26',510.00,10,'2021-01-21 10:34:11','2021-01-21 10:34:11'),(3011,630,'28','28',530.00,10,'2021-01-21 10:34:11','2021-01-21 10:34:11'),(3012,630,'30','30',560.00,10,'2021-01-21 10:34:11','2021-01-21 10:34:11'),(3013,630,'S','S',580.00,10,'2021-01-21 10:34:11','2021-01-21 10:34:11'),(3014,630,'M','M',600.00,10,'2021-01-21 10:34:11','2021-01-21 10:34:11'),(3015,630,'L','L',620.00,10,'2021-01-21 10:34:11','2021-01-21 10:34:11'),(3022,644,'22','22',470.00,10,'2021-01-21 10:38:12','2021-01-21 10:38:12'),(3023,644,'24','24',490.00,10,'2021-01-21 10:38:12','2021-01-21 10:38:12'),(3024,644,'26','26',510.00,10,'2021-01-21 10:38:12','2021-01-21 10:38:12'),(3025,644,'28','28',530.00,10,'2021-01-21 10:38:12','2021-01-21 10:38:12'),(3026,644,'30','30',550.00,10,'2021-01-21 10:38:12','2021-01-21 10:38:12'),(3027,644,'32','32',580.00,10,'2021-01-21 10:38:12','2021-01-21 10:38:12'),(3028,644,'34','34',610.00,10,'2021-01-21 10:38:12','2021-01-21 10:38:12'),(3029,644,'36','36',640.00,10,'2021-01-21 10:38:12','2021-01-21 10:38:12'),(3030,644,'38','38',670.00,10,'2021-01-21 10:38:12','2021-01-21 10:38:12'),(3031,645,'40*28','40*28',690.00,10,'2021-01-21 10:38:17','2021-01-21 10:38:17'),(3032,645,'40*30','40*30',710.00,10,'2021-01-21 10:38:17','2021-01-21 10:38:17'),(3033,645,'40*32','40*32',730.00,10,'2021-01-21 10:38:17','2021-01-21 10:38:17'),(3034,645,'40*34','40*34',750.00,10,'2021-01-21 10:38:17','2021-01-21 10:38:17'),(3035,645,'40*36','40*36',780.00,10,'2021-01-21 10:38:17','2021-01-21 10:38:17'),(3036,645,'40*38','40*38',800.00,10,'2021-01-21 10:38:17','2021-01-21 10:38:17'),(3037,645,'42*28','42*28',710.00,10,'2021-01-21 10:38:17','2021-01-21 10:38:17'),(3038,645,'42*30','42*30',730.00,10,'2021-01-21 10:38:17','2021-01-21 10:38:17'),(3039,645,'42*32','42*32',750.00,10,'2021-01-21 10:38:17','2021-01-21 10:38:17'),(3040,645,'42*34','42*34',770.00,10,'2021-01-21 10:38:17','2021-01-21 10:38:17'),(3041,645,'42*36','42*36',800.00,10,'2021-01-21 10:38:17','2021-01-21 10:38:17'),(3042,645,'42*38','42*38',820.00,10,'2021-01-21 10:38:17','2021-01-21 10:38:17'),(3043,645,'42*40','42*40',840.00,10,'2021-01-21 10:38:17','2021-01-21 10:38:17'),(3044,645,'42*42','42*42',870.00,10,'2021-01-21 10:38:17','2021-01-21 10:38:17'),(3045,646,'40*28','40*28',690.00,10,'2021-01-21 10:38:24','2021-01-21 10:38:24'),(3046,646,'40*30','40*30',710.00,10,'2021-01-21 10:38:24','2021-01-21 10:38:24'),(3047,646,'40*32','40*32',730.00,10,'2021-01-21 10:38:24','2021-01-21 10:38:24'),(3048,646,'40*34','40*34',750.00,10,'2021-01-21 10:38:24','2021-01-21 10:38:24'),(3049,646,'40*36','40*36',780.00,10,'2021-01-21 10:38:24','2021-01-21 10:38:24'),(3050,646,'40*38','40*38',800.00,10,'2021-01-21 10:38:24','2021-01-21 10:38:24'),(3051,646,'42*28','42*28',710.00,10,'2021-01-21 10:38:24','2021-01-21 10:38:24'),(3052,646,'42*30','42*30',730.00,10,'2021-01-21 10:38:24','2021-01-21 10:38:24'),(3053,646,'42*32','42*32',750.00,10,'2021-01-21 10:38:24','2021-01-21 10:38:24'),(3054,646,'42*34','42*34',770.00,10,'2021-01-21 10:38:24','2021-01-21 10:38:24'),(3055,646,'42*36','42*36',800.00,10,'2021-01-21 10:38:24','2021-01-21 10:38:24'),(3056,646,'42*38','42*38',820.00,10,'2021-01-21 10:38:24','2021-01-21 10:38:24'),(3057,646,'42*40','42*40',840.00,10,'2021-01-21 10:38:24','2021-01-21 10:38:24'),(3058,646,'42*42','42*42',870.00,10,'2021-01-21 10:38:24','2021-01-21 10:38:24'),(3059,647,'22','22',470.00,10,'2021-01-21 10:38:31','2021-01-21 10:38:31'),(3060,647,'24','24',490.00,10,'2021-01-21 10:38:31','2021-01-21 10:38:31'),(3061,647,'26','26',510.00,10,'2021-01-21 10:38:31','2021-01-21 10:38:31'),(3062,647,'28','28',530.00,10,'2021-01-21 10:38:31','2021-01-21 10:38:31'),(3063,647,'30','30',550.00,10,'2021-01-21 10:38:31','2021-01-21 10:38:31'),(3064,647,'32','32',580.00,10,'2021-01-21 10:38:31','2021-01-21 10:38:31'),(3065,647,'34','34',610.00,10,'2021-01-21 10:38:31','2021-01-21 10:38:31'),(3066,647,'36','36',640.00,10,'2021-01-21 10:38:31','2021-01-21 10:38:31'),(3067,647,'38','38',670.00,10,'2021-01-21 10:38:31','2021-01-21 10:38:31'),(3068,648,'22','22',470.00,10,'2021-01-21 10:38:36','2021-01-21 10:38:36'),(3069,648,'24','24',490.00,10,'2021-01-21 10:38:36','2021-01-21 10:38:36'),(3070,648,'26','26',510.00,10,'2021-01-21 10:38:36','2021-01-21 10:38:36'),(3071,648,'28','28',530.00,10,'2021-01-21 10:38:36','2021-01-21 10:38:36'),(3072,648,'30','30',550.00,10,'2021-01-21 10:38:36','2021-01-21 10:38:36'),(3073,648,'32','32',580.00,10,'2021-01-21 10:38:36','2021-01-21 10:38:36'),(3074,648,'34','34',610.00,10,'2021-01-21 10:38:36','2021-01-21 10:38:36'),(3075,648,'36','36',640.00,10,'2021-01-21 10:38:36','2021-01-21 10:38:36'),(3076,648,'38','38',670.00,10,'2021-01-21 10:38:36','2021-01-21 10:38:36'),(3077,649,'22','22',470.00,10,'2021-01-21 10:38:42','2021-01-21 10:38:42'),(3078,649,'24','24',490.00,10,'2021-01-21 10:38:42','2021-01-21 10:38:42'),(3079,649,'26','26',510.00,10,'2021-01-21 10:38:42','2021-01-21 10:38:42'),(3080,649,'28','28',530.00,10,'2021-01-21 10:38:42','2021-01-21 10:38:42'),(3081,649,'30','30',550.00,10,'2021-01-21 10:38:42','2021-01-21 10:38:42'),(3082,649,'32','32',580.00,10,'2021-01-21 10:38:42','2021-01-21 10:38:42'),(3083,649,'34','34',610.00,10,'2021-01-21 10:38:42','2021-01-21 10:38:42'),(3084,649,'36','36',640.00,10,'2021-01-21 10:38:42','2021-01-21 10:38:42'),(3085,649,'38','38',670.00,10,'2021-01-21 10:38:42','2021-01-21 10:38:42'),(3086,650,'22','22',490.00,10,'2021-01-21 10:38:48','2021-01-21 10:38:48'),(3087,650,'24','24',520.00,10,'2021-01-21 10:38:48','2021-01-21 10:38:48'),(3088,650,'26','26',560.00,10,'2021-01-21 10:38:48','2021-01-21 10:38:48'),(3089,650,'28','28',590.00,10,'2021-01-21 10:38:48','2021-01-21 10:38:48'),(3090,650,'30','30',630.00,10,'2021-01-21 10:38:48','2021-01-21 10:38:48'),(3091,650,'32','32',660.00,10,'2021-01-21 10:38:48','2021-01-21 10:38:48'),(3092,650,'34','34',700.00,10,'2021-01-21 10:38:48','2021-01-21 10:38:48'),(3093,650,'36','36',730.00,10,'2021-01-21 10:38:48','2021-01-21 10:38:48'),(3094,650,'38','38',770.00,10,'2021-01-21 10:38:48','2021-01-21 10:38:48'),(3098,651,'40*28','40*28',690.00,10,'2021-01-21 10:38:53','2021-01-21 10:38:53'),(3099,651,'40*30','40*30',710.00,10,'2021-01-21 10:38:53','2021-01-21 10:38:53'),(3100,651,'40*32','40*32',730.00,10,'2021-01-21 10:38:53','2021-01-21 10:38:53'),(3101,651,'40*34','40*34',750.00,10,'2021-01-21 10:38:53','2021-01-21 10:38:53'),(3102,651,'40*36','40*36',780.00,10,'2021-01-21 10:38:53','2021-01-21 10:38:53'),(3103,651,'40*38','40*38',800.00,10,'2021-01-21 10:38:53','2021-01-21 10:38:53'),(3104,651,'42*28','42*28',710.00,10,'2021-01-21 10:38:53','2021-01-21 10:38:53'),(3105,651,'42*30','42*30',730.00,10,'2021-01-21 10:38:53','2021-01-21 10:38:53'),(3106,651,'42*32','42*32',750.00,10,'2021-01-21 10:38:53','2021-01-21 10:38:53'),(3107,651,'42*34','42*34',770.00,10,'2021-01-21 10:38:53','2021-01-21 10:38:53'),(3108,651,'42*36','42*36',800.00,10,'2021-01-21 10:38:53','2021-01-21 10:38:53'),(3109,651,'42*38','42*38',820.00,10,'2021-01-21 10:38:53','2021-01-21 10:38:53'),(3110,651,'42*40','42*40',840.00,10,'2021-01-21 10:38:53','2021-01-21 10:38:53'),(3111,651,'42*42','42*42',870.00,10,'2021-01-21 10:38:53','2021-01-21 10:38:53'),(3112,652,'22','22',470.00,10,'2021-01-21 10:39:00','2021-01-21 10:39:00'),(3113,652,'24','24',490.00,10,'2021-01-21 10:39:00','2021-01-21 10:39:00'),(3114,652,'26','26',510.00,10,'2021-01-21 10:39:00','2021-01-21 10:39:00'),(3115,652,'28','28',530.00,10,'2021-01-21 10:39:00','2021-01-21 10:39:00'),(3116,652,'30','30',550.00,10,'2021-01-21 10:39:00','2021-01-21 10:39:00'),(3117,652,'32','32',580.00,10,'2021-01-21 10:39:00','2021-01-21 10:39:00'),(3118,652,'34','34',610.00,10,'2021-01-21 10:39:00','2021-01-21 10:39:00'),(3119,652,'36','36',640.00,10,'2021-01-21 10:39:00','2021-01-21 10:39:00'),(3120,652,'38','38',670.00,10,'2021-01-21 10:39:00','2021-01-21 10:39:00'),(3121,653,'18','18',430.00,10,'2021-01-21 10:39:05','2021-01-21 10:39:05'),(3122,653,'20','20',450.00,10,'2021-01-21 10:39:05','2021-01-21 10:39:05'),(3123,653,'22','22',470.00,10,'2021-01-21 10:39:05','2021-01-21 10:39:05'),(3124,653,'24','24',490.00,10,'2021-01-21 10:39:05','2021-01-21 10:39:05'),(3125,653,'26','26',510.00,10,'2021-01-21 10:39:05','2021-01-21 10:39:05'),(3126,653,'28','28',530.00,10,'2021-01-21 10:39:05','2021-01-21 10:39:05'),(3127,653,'30','30',560.00,10,'2021-01-21 10:39:05','2021-01-21 10:39:05'),(3128,653,'S','S',580.00,10,'2021-01-21 10:39:05','2021-01-21 10:39:05'),(3129,653,'M','M',600.00,10,'2021-01-21 10:39:05','2021-01-21 10:39:05'),(3130,653,'L','L',620.00,10,'2021-01-21 10:39:05','2021-01-21 10:39:05'),(3131,654,'22','22',470.00,10,'2021-01-21 10:39:12','2021-01-21 10:39:12'),(3132,654,'24','24',490.00,10,'2021-01-21 10:39:12','2021-01-21 10:39:12'),(3133,654,'26','26',510.00,10,'2021-01-21 10:39:12','2021-01-21 10:39:12'),(3134,654,'28','28',530.00,10,'2021-01-21 10:39:12','2021-01-21 10:39:12'),(3135,654,'30','30',550.00,10,'2021-01-21 10:39:12','2021-01-21 10:39:12'),(3136,654,'32','32',580.00,10,'2021-01-21 10:39:12','2021-01-21 10:39:12'),(3137,654,'34','34',610.00,10,'2021-01-21 10:39:12','2021-01-21 10:39:12'),(3138,654,'36','36',640.00,10,'2021-01-21 10:39:12','2021-01-21 10:39:12'),(3139,654,'38','38',670.00,10,'2021-01-21 10:39:13','2021-01-21 10:39:13'),(3140,655,'26','26',760.00,10,'2021-01-21 10:39:18','2021-01-21 10:39:18'),(3141,655,'28','28',790.00,10,'2021-01-21 10:39:18','2021-01-21 10:39:18'),(3142,655,'30','30',820.00,10,'2021-01-21 10:39:18','2021-01-21 10:39:18'),(3143,655,'32','32',850.00,10,'2021-01-21 10:39:18','2021-01-21 10:39:18'),(3144,655,'34','34',880.00,10,'2021-01-21 10:39:18','2021-01-21 10:39:18'),(3145,655,'36','36',930.00,10,'2021-01-21 10:39:18','2021-01-21 10:39:18'),(3146,655,'38','38',960.00,10,'2021-01-21 10:39:18','2021-01-21 10:39:18'),(3147,655,'40','40',990.00,10,'2021-01-21 10:39:18','2021-01-21 10:39:18'),(3148,655,'42','42',1020.00,10,'2021-01-21 10:39:18','2021-01-21 10:39:18'),(3149,655,'44','44',1050.00,10,'2021-01-21 10:39:18','2021-01-21 10:39:18'),(3150,655,'46','46',1080.00,10,'2021-01-21 10:39:18','2021-01-21 10:39:18'),(3151,656,'40*28','40*28',710.00,10,'2021-01-21 10:39:36','2021-01-21 10:39:36'),(3152,656,'40*30','40*30',820.00,10,'2021-01-21 10:39:36','2021-01-21 10:39:36'),(3153,656,'40*32','40*32',840.00,10,'2021-01-21 10:39:36','2021-01-21 10:39:36'),(3154,656,'40*34','40*34',860.00,10,'2021-01-21 10:39:36','2021-01-21 10:39:36'),(3155,656,'40*36','40*36',890.00,10,'2021-01-21 10:39:36','2021-01-21 10:39:36'),(3156,656,'40*38','40*38',910.00,10,'2021-01-21 10:39:36','2021-01-21 10:39:36'),(3157,656,'42*28','42*28',820.00,10,'2021-01-21 10:39:36','2021-01-21 10:39:36'),(3158,656,'42*30','42*30',840.00,10,'2021-01-21 10:39:36','2021-01-21 10:39:36'),(3159,656,'42*32','42*32',860.00,10,'2021-01-21 10:39:36','2021-01-21 10:39:36'),(3160,656,'42*34','42*34',890.00,10,'2021-01-21 10:39:36','2021-01-21 10:39:36'),(3161,656,'42*36','42*36',920.00,10,'2021-01-21 10:39:36','2021-01-21 10:39:36'),(3162,656,'42*38','42*38',940.00,10,'2021-01-21 10:39:36','2021-01-21 10:39:36'),(3163,656,'42*40','42*40',960.00,10,'2021-01-21 10:39:36','2021-01-21 10:39:36'),(3164,656,'42*42','42*42',990.00,10,'2021-01-21 10:39:36','2021-01-21 10:39:36'),(3165,657,'22','22',470.00,10,'2021-01-21 10:39:41','2021-01-21 10:39:41'),(3166,657,'24','24',490.00,10,'2021-01-21 10:39:41','2021-01-21 10:39:41'),(3167,657,'26','26',510.00,10,'2021-01-21 10:39:41','2021-01-21 10:39:41'),(3168,657,'28','28',530.00,10,'2021-01-21 10:39:41','2021-01-21 10:39:41'),(3169,657,'30','30',550.00,10,'2021-01-21 10:39:41','2021-01-21 10:39:41'),(3170,657,'32','32',580.00,10,'2021-01-21 10:39:41','2021-01-21 10:39:41'),(3171,657,'34','34',610.00,10,'2021-01-21 10:39:41','2021-01-21 10:39:41'),(3172,657,'36','36',640.00,10,'2021-01-21 10:39:41','2021-01-21 10:39:41'),(3173,657,'38','38',670.00,10,'2021-01-21 10:39:41','2021-01-21 10:39:41'),(3174,658,'22','22',470.00,10,'2021-01-21 10:39:46','2021-01-21 10:39:46'),(3175,658,'24','24',490.00,10,'2021-01-21 10:39:46','2021-01-21 10:39:46'),(3176,658,'26','26',510.00,10,'2021-01-21 10:39:46','2021-01-21 10:39:46'),(3177,658,'28','28',530.00,10,'2021-01-21 10:39:46','2021-01-21 10:39:46'),(3178,658,'30','30',550.00,10,'2021-01-21 10:39:46','2021-01-21 10:39:46'),(3179,658,'32','32',580.00,10,'2021-01-21 10:39:46','2021-01-21 10:39:46'),(3180,658,'34','34',610.00,10,'2021-01-21 10:39:46','2021-01-21 10:39:46'),(3181,658,'36','36',640.00,10,'2021-01-21 10:39:46','2021-01-21 10:39:46'),(3182,658,'38','38',670.00,10,'2021-01-21 10:39:46','2021-01-21 10:39:46'),(3183,659,'40*28','40*28',690.00,10,'2021-01-21 10:39:52','2021-01-21 10:39:52'),(3184,659,'40*30','40*30',710.00,10,'2021-01-21 10:39:52','2021-01-21 10:39:52'),(3185,659,'40*32','40*32',730.00,10,'2021-01-21 10:39:52','2021-01-21 10:39:52'),(3186,659,'40*34','40*34',750.00,10,'2021-01-21 10:39:52','2021-01-21 10:39:52'),(3187,659,'40*36','40*36',780.00,10,'2021-01-21 10:39:52','2021-01-21 10:39:52'),(3188,659,'40*38','40*38',800.00,10,'2021-01-21 10:39:52','2021-01-21 10:39:52'),(3189,659,'42*28','42*28',710.00,10,'2021-01-21 10:39:52','2021-01-21 10:39:52'),(3190,659,'42*30','42*30',730.00,10,'2021-01-21 10:39:52','2021-01-21 10:39:52'),(3191,659,'42*32','42*32',750.00,10,'2021-01-21 10:39:52','2021-01-21 10:39:52'),(3192,659,'42*34','42*34',770.00,10,'2021-01-21 10:39:52','2021-01-21 10:39:52'),(3193,659,'42*36','42*36',800.00,10,'2021-01-21 10:39:52','2021-01-21 10:39:52'),(3194,659,'42*38','42*38',820.00,10,'2021-01-21 10:39:52','2021-01-21 10:39:52'),(3195,659,'42*40','42*40',840.00,10,'2021-01-21 10:39:52','2021-01-21 10:39:52'),(3196,659,'42*42','42*42',870.00,10,'2021-01-21 10:39:52','2021-01-21 10:39:52'),(3197,660,'40*28','40*28',690.00,10,'2021-01-21 10:39:58','2021-01-21 10:39:58'),(3198,660,'40*30','40*30',710.00,10,'2021-01-21 10:39:58','2021-01-21 10:39:58'),(3199,660,'40*32','40*32',730.00,10,'2021-01-21 10:39:58','2021-01-21 10:39:58'),(3200,660,'40*34','40*34',750.00,10,'2021-01-21 10:39:58','2021-01-21 10:39:58'),(3201,660,'40*36','40*36',780.00,10,'2021-01-21 10:39:58','2021-01-21 10:39:58'),(3202,660,'40*38','40*38',800.00,10,'2021-01-21 10:39:58','2021-01-21 10:39:58'),(3203,660,'42*28','42*28',710.00,10,'2021-01-21 10:39:58','2021-01-21 10:39:58'),(3204,660,'42*30','42*30',730.00,10,'2021-01-21 10:39:58','2021-01-21 10:39:58'),(3205,660,'42*32','42*32',750.00,10,'2021-01-21 10:39:58','2021-01-21 10:39:58'),(3206,660,'42*34','42*34',770.00,10,'2021-01-21 10:39:58','2021-01-21 10:39:58'),(3207,660,'42*36','42*36',800.00,10,'2021-01-21 10:39:58','2021-01-21 10:39:58'),(3208,660,'42*38','42*38',820.00,10,'2021-01-21 10:39:58','2021-01-21 10:39:58'),(3209,660,'42*40','42*40',840.00,10,'2021-01-21 10:39:58','2021-01-21 10:39:58'),(3210,660,'42*42','42*42',870.00,10,'2021-01-21 10:39:58','2021-01-21 10:39:58'),(3211,661,'22','22',490.00,10,'2021-01-21 10:40:06','2021-01-21 10:40:06'),(3212,661,'24','24',520.00,10,'2021-01-21 10:40:06','2021-01-21 10:40:06'),(3213,661,'26','26',560.00,10,'2021-01-21 10:40:06','2021-01-21 10:40:06'),(3214,661,'28','28',590.00,10,'2021-01-21 10:40:06','2021-01-21 10:40:06'),(3215,661,'30','30',630.00,10,'2021-01-21 10:40:06','2021-01-21 10:40:06'),(3216,661,'32','32',660.00,10,'2021-01-21 10:40:06','2021-01-21 10:40:06'),(3217,661,'34','34',700.00,10,'2021-01-21 10:40:06','2021-01-21 10:40:06'),(3218,661,'36','36',730.00,10,'2021-01-21 10:40:06','2021-01-21 10:40:06'),(3219,661,'38','38',770.00,10,'2021-01-21 10:40:06','2021-01-21 10:40:06'),(3220,662,'22','22',470.00,10,'2021-01-21 10:40:11','2021-01-21 10:40:11'),(3221,662,'24','24',490.00,10,'2021-01-21 10:40:11','2021-01-21 10:40:11'),(3222,662,'26','26',510.00,10,'2021-01-21 10:40:11','2021-01-21 10:40:11'),(3223,662,'28','28',530.00,10,'2021-01-21 10:40:11','2021-01-21 10:40:11'),(3224,662,'30','30',550.00,10,'2021-01-21 10:40:11','2021-01-21 10:40:11'),(3225,662,'32','32',580.00,10,'2021-01-21 10:40:11','2021-01-21 10:40:11'),(3226,662,'34','34',610.00,10,'2021-01-21 10:40:11','2021-01-21 10:40:11'),(3227,662,'36','36',640.00,10,'2021-01-21 10:40:11','2021-01-21 10:40:11'),(3228,662,'38','38',670.00,10,'2021-01-21 10:40:11','2021-01-21 10:40:11'),(3229,663,'40*28','40*28',790.00,10,'2021-01-21 10:40:17','2021-01-21 10:40:17'),(3230,663,'40*30','40*30',820.00,10,'2021-01-21 10:40:17','2021-01-21 10:40:17'),(3231,663,'40*32','40*32',840.00,10,'2021-01-21 10:40:17','2021-01-21 10:40:17'),(3232,663,'40*34','40*34',860.00,10,'2021-01-21 10:40:17','2021-01-21 10:40:17'),(3233,663,'40*36','40*36',890.00,10,'2021-01-21 10:40:17','2021-01-21 10:40:17'),(3234,663,'40*38','40*38',910.00,10,'2021-01-21 10:40:17','2021-01-21 10:40:17'),(3235,663,'42*28','42*28',820.00,10,'2021-01-21 10:40:17','2021-01-21 10:40:17'),(3236,663,'42*30','42*30',840.00,10,'2021-01-21 10:40:17','2021-01-21 10:40:17'),(3237,663,'42*32','42*32',860.00,10,'2021-01-21 10:40:17','2021-01-21 10:40:17'),(3238,663,'42*34','42*34',890.00,10,'2021-01-21 10:40:17','2021-01-21 10:40:17'),(3239,663,'42*36','42*36',920.00,10,'2021-01-21 10:40:17','2021-01-21 10:40:17'),(3240,663,'42*38','42*38',940.00,10,'2021-01-21 10:40:17','2021-01-21 10:40:17'),(3241,663,'42*40','42*40',960.00,10,'2021-01-21 10:40:17','2021-01-21 10:40:17'),(3242,663,'42*42','42*42',990.00,10,'2021-01-21 10:40:17','2021-01-21 10:40:17'),(3243,664,'22','22',470.00,10,'2021-01-21 10:40:24','2021-01-21 10:40:24'),(3244,664,'24','24',490.00,10,'2021-01-21 10:40:24','2021-01-21 10:40:24'),(3245,664,'26','26',510.00,10,'2021-01-21 10:40:24','2021-01-21 10:40:24'),(3246,664,'28','28',530.00,10,'2021-01-21 10:40:24','2021-01-21 10:40:24'),(3247,664,'30','30',550.00,10,'2021-01-21 10:40:24','2021-01-21 10:40:24'),(3248,664,'32','32',580.00,10,'2021-01-21 10:40:24','2021-01-21 10:40:24'),(3249,664,'34','34',610.00,10,'2021-01-21 10:40:24','2021-01-21 10:40:24'),(3250,664,'36','36',640.00,10,'2021-01-21 10:40:24','2021-01-21 10:40:24'),(3251,664,'38','38',670.00,10,'2021-01-21 10:40:24','2021-01-21 10:40:24'),(3252,665,'30','30',820.00,10,'2021-01-21 10:40:32','2021-01-21 10:40:32'),(3253,665,'32','32',850.00,10,'2021-01-21 10:40:32','2021-01-21 10:40:32'),(3254,665,'34','34',880.00,10,'2021-01-21 10:40:32','2021-01-21 10:40:32'),(3255,665,'36','36',930.00,10,'2021-01-21 10:40:32','2021-01-21 10:40:32'),(3256,665,'38','38',960.00,10,'2021-01-21 10:40:32','2021-01-21 10:40:32'),(3257,665,'40','40',990.00,10,'2021-01-21 10:40:32','2021-01-21 10:40:32'),(3258,665,'42','42',1020.00,10,'2021-01-21 10:40:32','2021-01-21 10:40:32'),(3259,665,'44','44',1050.00,10,'2021-01-21 10:40:32','2021-01-21 10:40:32'),(3260,665,'46','46',1080.00,10,'2021-01-21 10:40:32','2021-01-21 10:40:32'),(3261,666,'40*28','40*28',690.00,10,'2021-01-21 10:40:37','2021-01-21 10:40:37'),(3262,666,'40*30','40*30',710.00,10,'2021-01-21 10:40:37','2021-01-21 10:40:37'),(3263,666,'40*32','40*32',730.00,10,'2021-01-21 10:40:37','2021-01-21 10:40:37'),(3264,666,'40*34','40*34',750.00,10,'2021-01-21 10:40:37','2021-01-21 10:40:37'),(3265,666,'40*36','40*36',780.00,10,'2021-01-21 10:40:37','2021-01-21 10:40:37'),(3266,666,'40*38','40*38',800.00,10,'2021-01-21 10:40:37','2021-01-21 10:40:37'),(3267,666,'42*28','42*28',710.00,10,'2021-01-21 10:40:37','2021-01-21 10:40:37'),(3268,666,'42*30','42*30',730.00,10,'2021-01-21 10:40:37','2021-01-21 10:40:37'),(3269,666,'42*32','42*32',750.00,10,'2021-01-21 10:40:37','2021-01-21 10:40:37'),(3270,666,'42*34','42*34',770.00,10,'2021-01-21 10:40:37','2021-01-21 10:40:37'),(3271,666,'32*36','32*36',800.00,10,'2021-01-21 10:40:37','2021-01-21 10:40:37'),(3272,666,'42*38','42*38',820.00,10,'2021-01-21 10:40:37','2021-01-21 10:40:37'),(3273,666,'42*40','42*40',840.00,10,'2021-01-21 10:40:37','2021-01-21 10:40:37'),(3274,666,'42*42','42*42',870.00,10,'2021-01-21 10:40:37','2021-01-21 10:40:37'),(3275,667,'22','22',470.00,10,'2021-01-21 10:40:43','2021-01-21 10:40:43'),(3276,667,'24','24',490.00,10,'2021-01-21 10:40:43','2021-01-21 10:40:43'),(3277,667,'26','26',510.00,10,'2021-01-21 10:40:43','2021-01-21 10:40:43'),(3278,667,'28','28',530.00,10,'2021-01-21 10:40:43','2021-01-21 10:40:43'),(3279,667,'30','30',550.00,10,'2021-01-21 10:40:43','2021-01-21 10:40:43'),(3280,667,'32','32',580.00,10,'2021-01-21 10:40:43','2021-01-21 10:40:43'),(3281,667,'34','34',610.00,10,'2021-01-21 10:40:43','2021-01-21 10:40:43'),(3282,667,'36','36',640.00,10,'2021-01-21 10:40:43','2021-01-21 10:40:43'),(3283,667,'38','38',670.00,10,'2021-01-21 10:40:43','2021-01-21 10:40:43'),(3284,668,'18','18',420.00,10,'2021-01-21 10:40:49','2021-01-21 10:40:49'),(3285,668,'20','20',440.00,10,'2021-01-21 10:40:49','2021-01-21 10:40:49'),(3286,668,'22','22',460.00,10,'2021-01-21 10:40:49','2021-01-21 10:40:49'),(3287,668,'24','24',480.00,10,'2021-01-21 10:40:49','2021-01-21 10:40:49'),(3288,668,'26','26',500.00,10,'2021-01-21 10:40:49','2021-01-21 10:40:49'),(3289,668,'28','28',520.00,10,'2021-01-21 10:40:49','2021-01-21 10:40:49'),(3290,668,'30','30',550.00,10,'2021-01-21 10:40:49','2021-01-21 10:40:49'),(3291,668,'S','S',570.00,10,'2021-01-21 10:40:49','2021-01-21 10:40:49'),(3292,668,'M','M',590.00,10,'2021-01-21 10:40:49','2021-01-21 10:40:49'),(3293,668,'L','L',610.00,10,'2021-01-21 10:40:49','2021-01-21 10:40:49'),(3294,669,'18','18',400.00,10,'2021-01-21 10:40:55','2021-01-21 10:40:55'),(3295,669,'20','20',420.00,10,'2021-01-21 10:40:55','2021-01-21 10:40:55'),(3296,669,'22','22',440.00,10,'2021-01-21 10:40:55','2021-01-21 10:40:55'),(3297,669,'24','24',460.00,10,'2021-01-21 10:40:55','2021-01-21 10:40:55'),(3298,669,'26','26',480.00,10,'2021-01-21 10:40:55','2021-01-21 10:40:55'),(3299,669,'28','28',500.00,10,'2021-01-21 10:40:55','2021-01-21 10:40:55'),(3300,669,'30','30',530.00,10,'2021-01-21 10:40:55','2021-01-21 10:40:55'),(3301,669,'S','S',550.00,10,'2021-01-21 10:40:55','2021-01-21 10:40:55'),(3302,669,'M','M',570.00,10,'2021-01-21 10:40:55','2021-01-21 10:40:55'),(3303,669,'L','L',590.00,10,'2021-01-21 10:40:55','2021-01-21 10:40:55'),(3304,670,'22','22',470.00,10,'2021-01-21 10:41:06','2021-01-21 10:41:06'),(3305,670,'24','24',490.00,10,'2021-01-21 10:41:06','2021-01-21 10:41:06'),(3306,670,'26','26',510.00,10,'2021-01-21 10:41:06','2021-01-21 10:41:06'),(3307,670,'28','28',530.00,10,'2021-01-21 10:41:06','2021-01-21 10:41:06'),(3308,670,'30','30',550.00,10,'2021-01-21 10:41:06','2021-01-21 10:41:06'),(3309,670,'32','32',580.00,10,'2021-01-21 10:41:06','2021-01-21 10:41:06'),(3310,670,'34','34',610.00,10,'2021-01-21 10:41:06','2021-01-21 10:41:06'),(3311,670,'36','36',640.00,10,'2021-01-21 10:41:06','2021-01-21 10:41:06'),(3312,670,'38','38',670.00,10,'2021-01-21 10:41:06','2021-01-21 10:41:06'),(3323,673,'28','28',500.00,10,'2021-01-21 10:41:16','2021-01-21 10:41:16'),(3324,673,'30','30',530.00,10,'2021-01-21 10:41:16','2021-01-21 10:41:16'),(3325,673,'S','S',550.00,10,'2021-01-21 10:41:16','2021-01-21 10:41:16'),(3326,673,'M','M',570.00,10,'2021-01-21 10:41:16','2021-01-21 10:41:16'),(3327,673,'L','L',590.00,10,'2021-01-21 10:41:16','2021-01-21 10:41:16'),(3328,674,'18','18',420.00,10,'2021-01-21 10:41:21','2021-01-21 10:41:21'),(3329,674,'20','20',440.00,10,'2021-01-21 10:41:21','2021-01-21 10:41:21'),(3330,674,'22','22',460.00,10,'2021-01-21 10:41:21','2021-01-21 10:41:21'),(3331,674,'24','24',480.00,10,'2021-01-21 10:41:21','2021-01-21 10:41:21'),(3332,674,'26','26',500.00,10,'2021-01-21 10:41:21','2021-01-21 10:41:21'),(3333,674,'28','28',520.00,10,'2021-01-21 10:41:21','2021-01-21 10:41:21'),(3334,674,'30','30',550.00,10,'2021-01-21 10:41:21','2021-01-21 10:41:21'),(3335,674,'S','S',570.00,10,'2021-01-21 10:41:21','2021-01-21 10:41:21'),(3336,674,'M','M',590.00,10,'2021-01-21 10:41:21','2021-01-21 10:41:21'),(3337,674,'L','L',610.00,10,'2021-01-21 10:41:21','2021-01-21 10:41:21'),(3338,675,'18','18',400.00,10,'2021-01-21 10:41:26','2021-01-21 10:41:26'),(3339,675,'20','20',420.00,10,'2021-01-21 10:41:26','2021-01-21 10:41:26'),(3340,675,'22','22',440.00,10,'2021-01-21 10:41:26','2021-01-21 10:41:26'),(3341,675,'24','24',460.00,10,'2021-01-21 10:41:26','2021-01-21 10:41:26'),(3342,675,'26','26',480.00,10,'2021-01-21 10:41:26','2021-01-21 10:41:26'),(3343,675,'28','28',500.00,10,'2021-01-21 10:41:26','2021-01-21 10:41:26'),(3344,675,'30','30',530.00,10,'2021-01-21 10:41:26','2021-01-21 10:41:26'),(3345,675,'S','S',550.00,10,'2021-01-21 10:41:26','2021-01-21 10:41:26'),(3346,675,'M','M',570.00,10,'2021-01-21 10:41:26','2021-01-21 10:41:26'),(3347,675,'L','L',590.00,10,'2021-01-21 10:41:26','2021-01-21 10:41:26'),(3348,676,'18','18',400.00,10,'2021-01-21 10:42:05','2021-01-21 10:42:05'),(3349,676,'20','20',420.00,10,'2021-01-21 10:42:05','2021-01-21 10:42:05'),(3350,676,'22','22',440.00,10,'2021-01-21 10:42:05','2021-01-21 10:42:05'),(3351,676,'24','24',460.00,10,'2021-01-21 10:42:05','2021-01-21 10:42:05'),(3352,676,'26','26',480.00,10,'2021-01-21 10:42:05','2021-01-21 10:42:05'),(3353,676,'28','28',500.00,10,'2021-01-21 10:42:05','2021-01-21 10:42:05'),(3354,676,'30','30',530.00,10,'2021-01-21 10:42:05','2021-01-21 10:42:05'),(3355,676,'S','S',550.00,10,'2021-01-21 10:42:05','2021-01-21 10:42:05'),(3356,676,'M','M',570.00,10,'2021-01-21 10:42:05','2021-01-21 10:42:05'),(3357,676,'L','L',590.00,10,'2021-01-21 10:42:05','2021-01-21 10:42:05'),(3358,677,'18','18',420.00,10,'2021-01-21 10:42:10','2021-01-21 10:42:10'),(3359,677,'20','20',440.00,10,'2021-01-21 10:42:10','2021-01-21 10:42:10'),(3360,677,'22','22',460.00,10,'2021-01-21 10:42:10','2021-01-21 10:42:10'),(3361,677,'24','24',480.00,10,'2021-01-21 10:42:10','2021-01-21 10:42:10'),(3362,677,'26','26',500.00,10,'2021-01-21 10:42:10','2021-01-21 10:42:10'),(3363,677,'28','28',520.00,10,'2021-01-21 10:42:10','2021-01-21 10:42:10'),(3364,677,'30','30',550.00,10,'2021-01-21 10:42:10','2021-01-21 10:42:10'),(3365,677,'S','S',570.00,10,'2021-01-21 10:42:10','2021-01-21 10:42:10'),(3366,677,'M','M',590.00,10,'2021-01-21 10:42:10','2021-01-21 10:42:10'),(3367,677,'L','L',610.00,10,'2021-01-21 10:42:10','2021-01-21 10:42:10'),(3368,671,'18','18',400.00,10,'2021-01-21 10:42:15','2021-01-21 10:42:15'),(3369,671,'20','20',420.00,10,'2021-01-21 10:42:15','2021-01-21 10:42:15'),(3370,671,'22','22',440.00,10,'2021-01-21 10:42:15','2021-01-21 10:42:15'),(3371,671,'24','24',460.00,10,'2021-01-21 10:42:15','2021-01-21 10:42:15'),(3372,671,'26','26',480.00,10,'2021-01-21 10:42:15','2021-01-21 10:42:15'),(3373,671,'28','28',500.00,10,'2021-01-21 10:42:15','2021-01-21 10:42:15'),(3374,671,'30','30',530.00,10,'2021-01-21 10:42:15','2021-01-21 10:42:15'),(3375,671,'S','S',550.00,10,'2021-01-21 10:42:15','2021-01-21 10:42:15'),(3376,671,'M','M',570.00,10,'2021-01-21 10:42:15','2021-01-21 10:42:15'),(3377,671,'L','L',590.00,10,'2021-01-21 10:42:15','2021-01-21 10:42:15'),(3378,692,'26','26',760.00,10,'2021-01-21 10:53:23','2021-01-21 10:53:23'),(3379,692,'28','28',790.00,10,'2021-01-21 10:53:23','2021-01-21 10:53:23'),(3380,692,'30','30',820.00,10,'2021-01-21 10:53:23','2021-01-21 10:53:23'),(3381,692,'32','32',850.00,10,'2021-01-21 10:53:23','2021-01-21 10:53:23'),(3382,692,'34','34',880.00,10,'2021-01-21 10:53:23','2021-01-21 10:53:23'),(3383,692,'36','36',930.00,10,'2021-01-21 10:53:23','2021-01-21 10:53:23'),(3384,692,'38','38',960.00,10,'2021-01-21 10:53:23','2021-01-21 10:53:23'),(3385,692,'40','40',990.00,10,'2021-01-21 10:53:23','2021-01-21 10:53:23'),(3386,692,'42','42',1020.00,10,'2021-01-21 10:53:23','2021-01-21 10:53:23'),(3387,547,NULL,NULL,290.00,1,'2021-01-21 10:59:30','2021-01-21 10:59:30'),(3388,473,NULL,NULL,410.00,1,'2021-01-21 11:00:48','2021-01-21 11:00:48'),(3389,557,NULL,NULL,350.00,1,'2021-01-21 11:01:10','2021-01-21 11:01:10'),(3393,690,'40*28','40*28',690.00,10,'2021-01-21 11:07:41','2021-01-21 11:07:41'),(3394,690,'40*30','40*30',710.00,10,'2021-01-21 11:07:41','2021-01-21 11:07:41'),(3395,690,'40*32','40*32',730.00,10,'2021-01-21 11:07:41','2021-01-21 11:07:41'),(3396,690,'40*34','40*34',750.00,10,'2021-01-21 11:07:41','2021-01-21 11:07:41'),(3397,690,'40*36','40*36',780.00,10,'2021-01-21 11:07:41','2021-01-21 11:07:41'),(3398,690,'40*38','40*38',800.00,10,'2021-01-21 11:07:41','2021-01-21 11:07:41'),(3399,690,'42*28','42*28',710.00,10,'2021-01-21 11:07:41','2021-01-21 11:07:41'),(3400,690,'42*30','42*30',730.00,10,'2021-01-21 11:07:41','2021-01-21 11:07:41'),(3401,690,'42*32','42*32',750.00,10,'2021-01-21 11:07:41','2021-01-21 11:07:41'),(3402,690,'42*34','42*34',770.00,10,'2021-01-21 11:07:41','2021-01-21 11:07:41'),(3403,690,'42*36','42*36',800.00,10,'2021-01-21 11:07:41','2021-01-21 11:07:41'),(3404,690,'42*38','42*38',820.00,10,'2021-01-21 11:07:41','2021-01-21 11:07:41'),(3405,690,'42*40','42*40',840.00,10,'2021-01-21 11:07:41','2021-01-21 11:07:41'),(3406,690,'42*42','42*42',870.00,10,'2021-01-21 11:07:41','2021-01-21 11:07:41'),(3407,689,'22','22',470.00,10,'2021-01-21 11:07:48','2021-01-21 11:07:48'),(3408,689,'24','24',490.00,10,'2021-01-21 11:07:48','2021-01-21 11:07:48'),(3409,689,'26','26',510.00,10,'2021-01-21 11:07:48','2021-01-21 11:07:48'),(3410,689,'28','28',530.00,10,'2021-01-21 11:07:48','2021-01-21 11:07:48'),(3411,689,'30','30',550.00,10,'2021-01-21 11:07:48','2021-01-21 11:07:48'),(3412,689,'32','32',580.00,10,'2021-01-21 11:07:48','2021-01-21 11:07:48'),(3413,689,'34','34',610.00,10,'2021-01-21 11:07:48','2021-01-21 11:07:48'),(3414,689,'36','36',640.00,10,'2021-01-21 11:07:48','2021-01-21 11:07:48'),(3415,689,'38','38',670.00,10,'2021-01-21 11:07:48','2021-01-21 11:07:48'),(3416,688,'28','28',790.00,10,'2021-01-21 11:07:55','2021-01-21 11:07:55'),(3417,688,'30','30',820.00,10,'2021-01-21 11:07:55','2021-01-21 11:07:55'),(3418,688,'32','32',850.00,10,'2021-01-21 11:07:55','2021-01-21 11:07:55'),(3419,688,'34','34',880.00,10,'2021-01-21 11:07:55','2021-01-21 11:07:55'),(3420,688,'36','36',930.00,10,'2021-01-21 11:07:55','2021-01-21 11:07:55'),(3421,688,'38','38',960.00,10,'2021-01-21 11:07:55','2021-01-21 11:07:55'),(3422,688,'40','40',990.00,10,'2021-01-21 11:07:55','2021-01-21 11:07:55'),(3423,688,'42','42',1020.00,10,'2021-01-21 11:07:55','2021-01-21 11:07:55'),(3424,688,'44','44',1050.00,10,'2021-01-21 11:07:55','2021-01-21 11:07:55'),(3428,687,'40*28','40*28',690.00,10,'2021-01-21 11:08:02','2021-01-21 11:08:02'),(3429,687,'40*30','40*30',710.00,10,'2021-01-21 11:08:02','2021-01-21 11:08:02'),(3430,687,'40*32','40*32',730.00,10,'2021-01-21 11:08:02','2021-01-21 11:08:02'),(3431,687,'40*34','40*34',750.00,10,'2021-01-21 11:08:02','2021-01-21 11:08:02'),(3432,687,'40*36','40*36',780.00,10,'2021-01-21 11:08:02','2021-01-21 11:08:02'),(3433,687,'40*38','40*38',800.00,10,'2021-01-21 11:08:02','2021-01-21 11:08:02'),(3434,687,'42*28','42*28',710.00,10,'2021-01-21 11:08:02','2021-01-21 11:08:02'),(3435,687,'42*30','42*30',730.00,10,'2021-01-21 11:08:02','2021-01-21 11:08:02'),(3436,687,'42*32','42*32',750.00,10,'2021-01-21 11:08:02','2021-01-21 11:08:02'),(3437,687,'42*34','42*34',770.00,10,'2021-01-21 11:08:02','2021-01-21 11:08:02'),(3438,687,'42*36','42*36',800.00,10,'2021-01-21 11:08:02','2021-01-21 11:08:02'),(3439,687,'42*38','42*38',820.00,10,'2021-01-21 11:08:02','2021-01-21 11:08:02'),(3440,687,'42*40','42*40',840.00,10,'2021-01-21 11:08:02','2021-01-21 11:08:02'),(3441,687,'42*42','42*42',870.00,10,'2021-01-21 11:08:02','2021-01-21 11:08:02'),(3442,686,'22','22',470.00,10,'2021-01-21 11:08:08','2021-01-21 11:08:08'),(3443,686,'24','24',490.00,10,'2021-01-21 11:08:08','2021-01-21 11:08:08'),(3444,686,'26','26',510.00,10,'2021-01-21 11:08:08','2021-01-21 11:08:08'),(3445,686,'28','28',530.00,10,'2021-01-21 11:08:08','2021-01-21 11:08:08'),(3446,686,'30','30',550.00,10,'2021-01-21 11:08:08','2021-01-21 11:08:08'),(3447,686,'32','32',580.00,10,'2021-01-21 11:08:08','2021-01-21 11:08:08'),(3448,686,'34','34',610.00,10,'2021-01-21 11:08:08','2021-01-21 11:08:08'),(3449,686,'36','36',640.00,10,'2021-01-21 11:08:08','2021-01-21 11:08:08'),(3450,686,'38','38',670.00,10,'2021-01-21 11:08:08','2021-01-21 11:08:08'),(3451,685,'18','18',420.00,10,'2021-01-21 11:08:13','2021-01-21 11:08:13'),(3452,685,'20','20',440.00,10,'2021-01-21 11:08:13','2021-01-21 11:08:13'),(3453,685,'22','22',460.00,10,'2021-01-21 11:08:13','2021-01-21 11:08:13'),(3454,685,'24','24',480.00,10,'2021-01-21 11:08:13','2021-01-21 11:08:13'),(3455,685,'26','26',500.00,10,'2021-01-21 11:08:13','2021-01-21 11:08:13'),(3456,685,'28','28',520.00,10,'2021-01-21 11:08:13','2021-01-21 11:08:13'),(3457,685,'30','30',550.00,10,'2021-01-21 11:08:13','2021-01-21 11:08:13'),(3458,685,'S','S',570.00,10,'2021-01-21 11:08:13','2021-01-21 11:08:13'),(3459,685,'M','M',590.00,10,'2021-01-21 11:08:13','2021-01-21 11:08:13'),(3460,685,'L','L',610.00,10,'2021-01-21 11:08:13','2021-01-21 11:08:13'),(3461,684,'22','22',700.00,10,'2021-01-21 11:08:21','2021-01-21 11:08:21'),(3462,684,'24','24',730.00,10,'2021-01-21 11:08:21','2021-01-21 11:08:21'),(3463,684,'26','26',760.00,10,'2021-01-21 11:08:21','2021-01-21 11:08:21'),(3464,684,'28','28',790.00,10,'2021-01-21 11:08:21','2021-01-21 11:08:21'),(3465,684,'30','30',820.00,10,'2021-01-21 11:08:21','2021-01-21 11:08:21'),(3466,684,'32','32',850.00,10,'2021-01-21 11:08:21','2021-01-21 11:08:21'),(3467,684,'34','34',880.00,10,'2021-01-21 11:08:21','2021-01-21 11:08:21'),(3468,684,'36','36',930.00,10,'2021-01-21 11:08:21','2021-01-21 11:08:21'),(3469,684,'38','38',960.00,10,'2021-01-21 11:08:21','2021-01-21 11:08:21'),(3470,684,'40','40',990.00,10,'2021-01-21 11:08:21','2021-01-21 11:08:21'),(3471,684,'42','42',1020.00,10,'2021-01-21 11:08:21','2021-01-21 11:08:21'),(3472,684,'44','44',1050.00,10,'2021-01-21 11:08:21','2021-01-21 11:08:21'),(3473,683,'22','22',470.00,10,'2021-01-21 11:08:27','2021-01-21 11:08:27'),(3474,683,'24','24',490.00,10,'2021-01-21 11:08:27','2021-01-21 11:08:27'),(3475,683,'26','26',510.00,10,'2021-01-21 11:08:27','2021-01-21 11:08:27'),(3476,683,'28','28',530.00,10,'2021-01-21 11:08:27','2021-01-21 11:08:27'),(3477,683,'30','30',550.00,10,'2021-01-21 11:08:27','2021-01-21 11:08:27'),(3478,683,'32','32',580.00,10,'2021-01-21 11:08:27','2021-01-21 11:08:27'),(3479,683,'34','34',610.00,10,'2021-01-21 11:08:27','2021-01-21 11:08:27'),(3480,683,'36','36',640.00,10,'2021-01-21 11:08:27','2021-01-21 11:08:27'),(3481,683,'38','38',670.00,10,'2021-01-21 11:08:27','2021-01-21 11:08:27'),(3482,682,'18','18',420.00,10,'2021-01-21 11:08:32','2021-01-21 11:08:32'),(3483,682,'20','20',440.00,10,'2021-01-21 11:08:32','2021-01-21 11:08:32'),(3484,682,'22','22',460.00,10,'2021-01-21 11:08:32','2021-01-21 11:08:32'),(3485,682,'24','24',480.00,10,'2021-01-21 11:08:32','2021-01-21 11:08:32'),(3486,682,'26','26',500.00,10,'2021-01-21 11:08:32','2021-01-21 11:08:32'),(3487,682,'28','28',520.00,10,'2021-01-21 11:08:32','2021-01-21 11:08:32'),(3488,682,'30','30',550.00,10,'2021-01-21 11:08:32','2021-01-21 11:08:32'),(3489,682,'S','S',570.00,10,'2021-01-21 11:08:32','2021-01-21 11:08:32'),(3490,682,'M','M',590.00,10,'2021-01-21 11:08:32','2021-01-21 11:08:32'),(3491,682,'L','L',610.00,10,'2021-01-21 11:08:32','2021-01-21 11:08:32'),(3492,681,'22','22',700.00,10,'2021-01-21 11:08:39','2021-01-21 11:08:39'),(3493,681,'24','24',730.00,10,'2021-01-21 11:08:39','2021-01-21 11:08:39'),(3494,681,'26','26',760.00,10,'2021-01-21 11:08:39','2021-01-21 11:08:39'),(3495,681,'28','28',790.00,10,'2021-01-21 11:08:39','2021-01-21 11:08:39'),(3496,681,'30','30',820.00,10,'2021-01-21 11:08:39','2021-01-21 11:08:39'),(3497,681,'32','32',850.00,10,'2021-01-21 11:08:39','2021-01-21 11:08:39'),(3498,681,'34','34',880.00,10,'2021-01-21 11:08:39','2021-01-21 11:08:39'),(3499,681,'36','36',930.00,10,'2021-01-21 11:08:39','2021-01-21 11:08:39'),(3500,681,'38','38',960.00,10,'2021-01-21 11:08:39','2021-01-21 11:08:39'),(3501,681,'40','40',990.00,10,'2021-01-21 11:08:39','2021-01-21 11:08:39'),(3502,681,'42','42',1020.00,10,'2021-01-21 11:08:39','2021-01-21 11:08:39'),(3503,681,'44','44',1050.00,10,'2021-01-21 11:08:39','2021-01-21 11:08:39'),(3504,680,'18','18',400.00,10,'2021-01-21 11:08:49','2021-01-21 11:08:49'),(3505,680,'20','20',420.00,10,'2021-01-21 11:08:49','2021-01-21 11:08:49'),(3506,680,'22','22',440.00,10,'2021-01-21 11:08:49','2021-01-21 11:08:49'),(3507,680,'24','24',460.00,10,'2021-01-21 11:08:49','2021-01-21 11:08:49'),(3508,680,'26','26',480.00,10,'2021-01-21 11:08:49','2021-01-21 11:08:49'),(3509,680,'28','28',500.00,10,'2021-01-21 11:08:49','2021-01-21 11:08:49'),(3510,680,'30','30',530.00,10,'2021-01-21 11:08:49','2021-01-21 11:08:49'),(3511,680,'S','S',550.00,10,'2021-01-21 11:08:49','2021-01-21 11:08:49'),(3512,680,'M','M',570.00,10,'2021-01-21 11:08:49','2021-01-21 11:08:49'),(3513,680,'L','L',590.00,10,'2021-01-21 11:08:49','2021-01-21 11:08:49'),(3517,679,'22','22',470.00,10,'2021-01-21 11:08:54','2021-01-21 11:08:54'),(3518,679,'24','24',490.00,10,'2021-01-21 11:08:54','2021-01-21 11:08:54'),(3519,679,'26','26',510.00,10,'2021-01-21 11:08:54','2021-01-21 11:08:54'),(3520,679,'28','28',530.00,10,'2021-01-21 11:08:54','2021-01-21 11:08:54'),(3521,679,'30','30',550.00,10,'2021-01-21 11:08:54','2021-01-21 11:08:54'),(3522,679,'32','32',580.00,10,'2021-01-21 11:08:54','2021-01-21 11:08:54'),(3523,679,'34','34',610.00,10,'2021-01-21 11:08:54','2021-01-21 11:08:54'),(3524,679,'36','36',640.00,10,'2021-01-21 11:08:54','2021-01-21 11:08:54'),(3525,679,'38','38',670.00,10,'2021-01-21 11:08:54','2021-01-21 11:08:54'),(3526,678,'18','18',400.00,10,'2021-01-21 11:09:00','2021-01-21 11:09:00'),(3527,678,'20','20',420.00,10,'2021-01-21 11:09:00','2021-01-21 11:09:00'),(3528,678,'22','22',440.00,10,'2021-01-21 11:09:00','2021-01-21 11:09:00'),(3529,678,'24','24',460.00,10,'2021-01-21 11:09:00','2021-01-21 11:09:00'),(3530,678,'26','26',480.00,10,'2021-01-21 11:09:00','2021-01-21 11:09:00'),(3531,678,'28','28',500.00,10,'2021-01-21 11:09:00','2021-01-21 11:09:00'),(3532,678,'30','30',530.00,10,'2021-01-21 11:09:00','2021-01-21 11:09:00'),(3533,678,'S','S',550.00,10,'2021-01-21 11:09:00','2021-01-21 11:09:00'),(3534,678,'M','M',570.00,10,'2021-01-21 11:09:00','2021-01-21 11:09:00'),(3535,678,'L','L',590.00,10,'2021-01-21 11:09:00','2021-01-21 11:09:00'),(3536,696,'22','22',470.00,10,'2021-01-21 11:09:05','2021-01-21 11:09:05'),(3537,696,'24','24',490.00,10,'2021-01-21 11:09:05','2021-01-21 11:09:05'),(3538,696,'26','26',510.00,10,'2021-01-21 11:09:05','2021-01-21 11:09:05'),(3539,696,'28','28',530.00,10,'2021-01-21 11:09:05','2021-01-21 11:09:05'),(3540,696,'30','30',550.00,10,'2021-01-21 11:09:05','2021-01-21 11:09:05'),(3541,696,'32','32',580.00,10,'2021-01-21 11:09:05','2021-01-21 11:09:05'),(3542,696,'34','34',610.00,10,'2021-01-21 11:09:05','2021-01-21 11:09:05'),(3543,696,'36','36',640.00,10,'2021-01-21 11:09:05','2021-01-21 11:09:05'),(3544,696,'38','38',670.00,10,'2021-01-21 11:09:05','2021-01-21 11:09:05'),(3545,697,'40*28','40*28',690.00,10,'2021-01-21 11:09:12','2021-01-21 11:09:12'),(3546,697,'40*30','40*30',710.00,10,'2021-01-21 11:09:12','2021-01-21 11:09:12'),(3547,697,'40*32','40*32',730.00,10,'2021-01-21 11:09:12','2021-01-21 11:09:12'),(3548,697,'40*34','40*34',750.00,10,'2021-01-21 11:09:12','2021-01-21 11:09:12'),(3549,697,'40*36','40*36',780.00,10,'2021-01-21 11:09:12','2021-01-21 11:09:12'),(3550,697,'40*38','40*38',800.00,10,'2021-01-21 11:09:12','2021-01-21 11:09:12'),(3551,697,'42*28','42*28',710.00,10,'2021-01-21 11:09:12','2021-01-21 11:09:12'),(3552,697,'42*30','42*30',730.00,10,'2021-01-21 11:09:12','2021-01-21 11:09:12'),(3553,697,'42*32','42*32',750.00,10,'2021-01-21 11:09:12','2021-01-21 11:09:12'),(3554,697,'42*34','42*34',770.00,10,'2021-01-21 11:09:12','2021-01-21 11:09:12'),(3555,697,'42*36','42*36',800.00,10,'2021-01-21 11:09:12','2021-01-21 11:09:12'),(3556,697,'42*38','42*38',820.00,10,'2021-01-21 11:09:12','2021-01-21 11:09:12'),(3557,697,'42*40','42*40',840.00,10,'2021-01-21 11:09:12','2021-01-21 11:09:12'),(3558,697,'42*42','42*42',870.00,10,'2021-01-21 11:09:12','2021-01-21 11:09:12'),(3559,698,'22','22',700.00,10,'2021-01-21 11:09:17','2021-01-21 11:09:17'),(3560,698,'24','24',730.00,10,'2021-01-21 11:09:17','2021-01-21 11:09:17'),(3561,698,'26','26',760.00,10,'2021-01-21 11:09:17','2021-01-21 11:09:17'),(3562,698,'28','28',790.00,10,'2021-01-21 11:09:17','2021-01-21 11:09:17'),(3563,698,'30','30',820.00,10,'2021-01-21 11:09:17','2021-01-21 11:09:17'),(3564,698,'32','32',850.00,10,'2021-01-21 11:09:17','2021-01-21 11:09:17'),(3565,698,'34','34',880.00,10,'2021-01-21 11:09:17','2021-01-21 11:09:17'),(3566,698,'36','36',930.00,10,'2021-01-21 11:09:17','2021-01-21 11:09:17'),(3567,698,'38','38',960.00,10,'2021-01-21 11:09:17','2021-01-21 11:09:17'),(3568,698,'40','40',990.00,10,'2021-01-21 11:09:17','2021-01-21 11:09:17'),(3569,698,'42','42',1020.00,10,'2021-01-21 11:09:17','2021-01-21 11:09:17'),(3570,698,'44','44',1050.00,10,'2021-01-21 11:09:17','2021-01-21 11:09:17'),(3571,699,'18','18',420.00,10,'2021-01-21 11:09:23','2021-01-21 11:09:23'),(3572,699,'20','20',440.00,10,'2021-01-21 11:09:23','2021-01-21 11:09:23'),(3573,699,'22','22',460.00,10,'2021-01-21 11:09:23','2021-01-21 11:09:23'),(3574,699,'24','24',480.00,10,'2021-01-21 11:09:23','2021-01-21 11:09:23'),(3575,700,'22','22',450.00,10,'2021-01-21 11:09:29','2021-01-21 11:09:29'),(3576,700,'24','24',470.00,10,'2021-01-21 11:09:29','2021-01-21 11:09:29'),(3577,700,'26','26',490.00,10,'2021-01-21 11:09:29','2021-01-21 11:09:29'),(3578,700,'28','28',510.00,10,'2021-01-21 11:09:29','2021-01-21 11:09:29'),(3579,700,'30','30',530.00,10,'2021-01-21 11:09:29','2021-01-21 11:09:29'),(3580,701,'22','22',730.00,10,'2021-01-21 11:09:35','2021-01-21 11:09:35'),(3581,701,'24','24',760.00,10,'2021-01-21 11:09:35','2021-01-21 11:09:35'),(3582,701,'26','26',790.00,10,'2021-01-21 11:09:35','2021-01-21 11:09:35'),(3583,701,'28','28',820.00,10,'2021-01-21 11:09:35','2021-01-21 11:09:35'),(3584,701,'30','30',860.00,10,'2021-01-21 11:09:35','2021-01-21 11:09:35'),(3585,701,'32','32',890.00,10,'2021-01-21 11:09:35','2021-01-21 11:09:35'),(3586,701,'34','34',920.00,10,'2021-01-21 11:09:35','2021-01-21 11:09:35'),(3587,701,'36','36',950.00,10,'2021-01-21 11:09:35','2021-01-21 11:09:35'),(3588,702,'18','18',420.00,10,'2021-01-21 11:09:42','2021-01-21 11:09:42'),(3589,702,'20','20',440.00,10,'2021-01-21 11:09:42','2021-01-21 11:09:42'),(3590,702,'22','22',460.00,10,'2021-01-21 11:09:42','2021-01-21 11:09:42'),(3591,702,'24','24',480.00,10,'2021-01-21 11:09:42','2021-01-21 11:09:42'),(3592,703,'22','22',450.00,10,'2021-01-21 11:09:55','2021-01-21 11:09:55'),(3593,703,'24','24',470.00,10,'2021-01-21 11:09:55','2021-01-21 11:09:55'),(3594,703,'26','26',490.00,10,'2021-01-21 11:09:55','2021-01-21 11:09:55'),(3595,703,'28','28',510.00,10,'2021-01-21 11:09:55','2021-01-21 11:09:55'),(3596,703,'30','30',530.00,10,'2021-01-21 11:09:55','2021-01-21 11:09:55'),(3597,704,'18','18',420.00,10,'2021-01-21 11:10:04','2021-01-21 11:10:04'),(3598,704,'20','20',440.00,10,'2021-01-21 11:10:04','2021-01-21 11:10:04'),(3599,704,'22','22',460.00,10,'2021-01-21 11:10:04','2021-01-21 11:10:04'),(3600,704,'24','24',480.00,10,'2021-01-21 11:10:04','2021-01-21 11:10:04'),(3601,705,'22','22',710.00,10,'2021-01-21 11:10:09','2021-01-21 11:10:09'),(3602,705,'24','24',740.00,10,'2021-01-21 11:10:09','2021-01-21 11:10:09'),(3603,705,'26','26',770.00,10,'2021-01-21 11:10:09','2021-01-21 11:10:09'),(3604,705,'28','28',800.00,10,'2021-01-21 11:10:09','2021-01-21 11:10:09'),(3605,705,'30','30',840.00,10,'2021-01-21 11:10:09','2021-01-21 11:10:09'),(3606,705,'32','32',870.00,10,'2021-01-21 11:10:09','2021-01-21 11:10:09'),(3607,705,'34','34',900.00,10,'2021-01-21 11:10:09','2021-01-21 11:10:09'),(3608,705,'36','36',930.00,10,'2021-01-21 11:10:09','2021-01-21 11:10:09'),(3609,706,'22','22',520.00,10,'2021-01-21 11:10:13','2021-01-21 11:10:13'),(3610,706,'24','24',540.00,10,'2021-01-21 11:10:13','2021-01-21 11:10:13'),(3611,706,'26','26',560.00,10,'2021-01-21 11:10:13','2021-01-21 11:10:13'),(3612,706,'28','28',580.00,10,'2021-01-21 11:10:13','2021-01-21 11:10:13'),(3613,706,'30','30',600.00,10,'2021-01-21 11:10:13','2021-01-21 11:10:13'),(3614,707,'16','16',400.00,10,'2021-01-21 11:10:18','2021-01-21 11:10:18'),(3615,707,'18','18',400.00,10,'2021-01-21 11:10:18','2021-01-21 11:10:18'),(3616,707,'20','20',420.00,10,'2021-01-21 11:10:18','2021-01-21 11:10:18'),(3617,707,'22','22',440.00,10,'2021-01-21 11:10:18','2021-01-21 11:10:18'),(3618,707,'24','24',460.00,10,'2021-01-21 11:10:18','2021-01-21 11:10:18'),(3619,708,'22','22',450.00,10,'2021-01-21 11:10:23','2021-01-21 11:10:23'),(3620,708,'24','24',470.00,10,'2021-01-21 11:10:23','2021-01-21 11:10:23'),(3621,708,'26','26',490.00,10,'2021-01-21 11:10:23','2021-01-21 11:10:23'),(3622,708,'28','28',510.00,10,'2021-01-21 11:10:23','2021-01-21 11:10:23'),(3623,708,'30','30',530.00,10,'2021-01-21 11:10:23','2021-01-21 11:10:23'),(3624,708,'32','32',550.00,10,'2021-01-21 11:10:23','2021-01-21 11:10:23'),(3625,708,'34','34',570.00,10,'2021-01-21 11:10:23','2021-01-21 11:10:23'),(3626,709,'22','22',710.00,10,'2021-01-21 11:10:30','2021-01-21 11:10:30'),(3627,709,'24','24',740.00,10,'2021-01-21 11:10:30','2021-01-21 11:10:30'),(3628,709,'26','26',770.00,10,'2021-01-21 11:10:30','2021-01-21 11:10:30'),(3629,709,'28','28',800.00,10,'2021-01-21 11:10:30','2021-01-21 11:10:30'),(3630,709,'30','30',840.00,10,'2021-01-21 11:10:30','2021-01-21 11:10:30'),(3631,709,'32','32',870.00,10,'2021-01-21 11:10:30','2021-01-21 11:10:30'),(3632,709,'34','34',900.00,10,'2021-01-21 11:10:30','2021-01-21 11:10:30'),(3633,709,'36','36',930.00,10,'2021-01-21 11:10:30','2021-01-21 11:10:30'),(3634,710,'22','22',450.00,10,'2021-01-21 11:10:38','2021-01-21 11:10:38'),(3635,710,'24','24',470.00,10,'2021-01-21 11:10:38','2021-01-21 11:10:38'),(3636,710,'26','26',490.00,10,'2021-01-21 11:10:38','2021-01-21 11:10:38'),(3637,710,'28','28',510.00,10,'2021-01-21 11:10:38','2021-01-21 11:10:38'),(3638,710,'30','30',530.00,10,'2021-01-21 11:10:38','2021-01-21 11:10:38'),(3639,710,'32','32',550.00,10,'2021-01-21 11:10:38','2021-01-21 11:10:38'),(3728,716,'16','16',430.00,10,'2021-01-21 11:13:53','2021-01-21 11:13:53'),(3729,716,'18','18',450.00,10,'2021-01-21 11:13:53','2021-01-21 11:13:53'),(3730,716,'20','20',470.00,10,'2021-01-21 11:13:53','2021-01-21 11:13:53'),(3731,716,'22','22',490.00,10,'2021-01-21 11:13:53','2021-01-21 11:13:53'),(3732,716,'24','24',510.00,10,'2021-01-21 11:13:53','2021-01-21 11:13:53'),(3733,715,'16','16',470.00,10,'2021-01-21 11:13:59','2021-01-21 11:13:59'),(3734,715,'18','18',490.00,10,'2021-01-21 11:13:59','2021-01-21 11:13:59'),(3735,715,'20','20',510.00,10,'2021-01-21 11:13:59','2021-01-21 11:13:59'),(3736,715,'22','22',530.00,10,'2021-01-21 11:13:59','2021-01-21 11:13:59'),(3737,715,'24','24',550.00,10,'2021-01-21 11:13:59','2021-01-21 11:13:59'),(3738,714,'16','16',430.00,10,'2021-01-21 11:14:05','2021-01-21 11:14:05'),(3739,714,'18','18',450.00,10,'2021-01-21 11:14:05','2021-01-21 11:14:05'),(3740,714,'20','20',470.00,10,'2021-01-21 11:14:05','2021-01-21 11:14:05'),(3741,714,'22','22',490.00,10,'2021-01-21 11:14:05','2021-01-21 11:14:05'),(3742,714,'24','24',510.00,10,'2021-01-21 11:14:05','2021-01-21 11:14:05'),(3743,713,'16','16',430.00,10,'2021-01-21 11:14:13','2021-01-21 11:14:13'),(3744,713,'18','18',450.00,10,'2021-01-21 11:14:13','2021-01-21 11:14:13'),(3745,713,'20','20',470.00,10,'2021-01-21 11:14:13','2021-01-21 11:14:13'),(3746,713,'22','22',490.00,10,'2021-01-21 11:14:13','2021-01-21 11:14:13'),(3747,713,'24','24',510.00,10,'2021-01-21 11:14:13','2021-01-21 11:14:13'),(3748,712,'24','24',710.00,10,'2021-01-21 11:14:18','2021-01-21 11:14:18'),(3749,712,'26','26',740.00,10,'2021-01-21 11:14:18','2021-01-21 11:14:18'),(3750,712,'28','28',770.00,10,'2021-01-21 11:14:18','2021-01-21 11:14:18'),(3751,712,'30','30',800.00,10,'2021-01-21 11:14:18','2021-01-21 11:14:18'),(3752,712,'32','32',830.00,10,'2021-01-21 11:14:18','2021-01-21 11:14:18'),(3753,712,'34','34',860.00,10,'2021-01-21 11:14:18','2021-01-21 11:14:18'),(3754,712,'36','36',910.00,10,'2021-01-21 11:14:18','2021-01-21 11:14:18'),(3755,711,'18','18',420.00,10,'2021-01-21 11:14:24','2021-01-21 11:14:24'),(3756,711,'20','20',440.00,10,'2021-01-21 11:14:24','2021-01-21 11:14:24'),(3757,711,'22','22',460.00,10,'2021-01-21 11:14:24','2021-01-21 11:14:24'),(3798,339,NULL,NULL,270.00,1,'2021-01-21 11:19:36','2021-01-21 11:19:36'),(3799,341,NULL,NULL,300.00,1,'2021-01-21 11:19:45','2021-01-21 11:19:45'),(3800,343,NULL,NULL,390.00,1,'2021-01-21 11:19:56','2021-01-21 11:19:56'),(3801,345,NULL,NULL,750.00,1,'2021-01-21 11:20:05','2021-01-21 11:20:05'),(3802,347,NULL,NULL,270.00,1,'2021-01-21 11:20:15','2021-01-21 11:20:15'),(3803,349,NULL,NULL,270.00,1,'2021-01-21 11:20:26','2021-01-21 11:20:26'),(3868,755,'StandardSize',NULL,150.00,10,'2021-01-21 11:23:56','2021-01-21 11:23:56'),(3869,754,'StandardSize',NULL,150.00,10,'2021-01-21 11:24:01','2021-01-21 11:24:01'),(3939,778,'StandardSize','StandardSize',100.00,10,'2021-01-21 11:24:49','2021-01-21 11:24:49'),(3940,777,'StandardSize',NULL,100.00,10,'2021-01-21 11:24:57','2021-01-21 11:24:57'),(4056,794,'StandardSize',NULL,100.00,10,'2021-01-21 11:31:54','2021-01-21 11:31:54'),(4057,793,'StandardSize','StandardSize',100.00,10,'2021-01-21 11:31:58','2021-01-21 11:31:58'),(4058,792,'StandardSize','StandardSize',100.00,10,'2021-01-21 11:32:02','2021-01-21 11:32:02'),(4059,791,'StandardSize','StandardSize',100.00,10,'2021-01-21 11:32:11','2021-01-21 11:32:11'),(4060,790,'StandardSize',NULL,0.00,10,'2021-01-21 11:32:16','2021-01-21 11:32:16'),(4061,788,'StandardSize',NULL,100.00,10,'2021-01-21 11:32:21','2021-01-21 11:32:21'),(4062,787,'StandardSize','StandardSize',100.00,10,'2021-01-21 11:32:26','2021-01-21 11:32:26'),(4063,785,'StandardSize','StandardSize',100.00,10,'2021-01-21 11:32:31','2021-01-21 11:32:31'),(4064,783,'StandardSize',NULL,100.00,10,'2021-01-21 11:32:37','2021-01-21 11:32:37'),(4065,781,'StandardSize',NULL,100.00,10,'2021-01-21 11:32:42','2021-01-21 11:32:42'),(4069,795,NULL,NULL,150.00,1,'2021-01-21 11:34:37','2021-01-21 11:34:37'),(4070,796,NULL,NULL,200.00,1,'2021-01-21 11:34:40','2021-01-21 11:34:40'),(4071,797,NULL,NULL,150.00,1,'2021-01-21 11:34:45','2021-01-21 11:34:45'),(4072,799,NULL,NULL,150.00,1,'2021-01-21 11:34:48','2021-01-21 11:34:48'),(4073,800,NULL,NULL,200.00,1,'2021-01-21 11:34:57','2021-01-21 11:34:57'),(4074,801,NULL,NULL,200.00,1,'2021-01-21 11:35:01','2021-01-21 11:35:01'),(4075,802,NULL,NULL,150.00,1,'2021-01-21 11:35:05','2021-01-21 11:35:05'),(4076,803,NULL,NULL,150.00,1,'2021-01-21 11:35:11','2021-01-21 11:35:11'),(4182,846,'S',NULL,80.00,10,'2021-01-21 11:49:54','2021-01-21 11:49:54'),(4183,846,'M',NULL,120.00,10,'2021-01-21 11:49:54','2021-01-21 11:49:54'),(4184,846,'L',NULL,170.00,10,'2021-01-21 11:49:54','2021-01-21 11:49:54'),(4185,847,'S',NULL,60.00,10,'2021-01-21 11:49:58','2021-01-21 11:49:58'),(4186,847,'M',NULL,80.00,10,'2021-01-21 11:49:58','2021-01-21 11:49:58'),(4187,847,'L',NULL,120.00,10,'2021-01-21 11:49:58','2021-01-21 11:49:58'),(4188,848,'S','S',60.00,10,'2021-01-21 11:50:04','2021-01-21 11:50:04'),(4189,848,'M','M',80.00,10,'2021-01-21 11:50:04','2021-01-21 11:50:04'),(4190,848,'L','L',120.00,10,'2021-01-21 11:50:04','2021-01-21 11:50:04'),(4191,849,'S',NULL,60.00,10,'2021-01-21 11:50:10','2021-01-21 11:50:10'),(4192,849,'M',NULL,80.00,10,'2021-01-21 11:50:10','2021-01-21 11:50:10'),(4193,849,'L',NULL,120.00,10,'2021-01-21 11:50:10','2021-01-21 11:50:10'),(4194,850,'S','S',60.00,10,'2021-01-21 11:50:19','2021-01-21 11:50:19'),(4195,850,'M','M',80.00,10,'2021-01-21 11:50:19','2021-01-21 11:50:19'),(4196,850,'L','L',120.00,10,'2021-01-21 11:50:19','2021-01-21 11:50:19'),(4197,851,'S',NULL,60.00,10,'2021-01-21 11:50:38','2021-01-21 11:50:38'),(4198,851,'M',NULL,80.00,10,'2021-01-21 11:50:38','2021-01-21 11:50:38'),(4199,851,'L',NULL,120.00,10,'2021-01-21 11:50:38','2021-01-21 11:50:38'),(4200,852,'S','S',60.00,10,'2021-01-21 11:50:45','2021-01-21 11:50:45'),(4201,852,'M','M',80.00,10,'2021-01-21 11:50:45','2021-01-21 11:50:45'),(4202,852,'L','L',120.00,10,'2021-01-21 11:50:45','2021-01-21 11:50:45'),(4203,853,'S',NULL,80.00,10,'2021-01-21 11:51:03','2021-01-21 11:51:03'),(4204,853,'M',NULL,120.00,10,'2021-01-21 11:51:03','2021-01-21 11:51:03'),(4205,853,'L',NULL,170.00,10,'2021-01-21 11:51:03','2021-01-21 11:51:03'),(4206,854,'Standardsize',NULL,120.00,10,'2021-01-21 11:51:12','2021-01-21 11:51:12'),(4207,855,'StandardSize',NULL,170.00,10,'2021-01-21 11:51:23','2021-01-21 11:51:23'),(4208,856,'StandardSize',NULL,170.00,10,'2021-01-21 11:51:34','2021-01-21 11:51:34'),(4209,857,'S',NULL,60.00,10,'2021-01-21 11:52:03','2021-01-21 11:52:03'),(4210,857,'M',NULL,80.00,10,'2021-01-21 11:52:03','2021-01-21 11:52:03'),(4211,857,'L',NULL,120.00,10,'2021-01-21 11:52:03','2021-01-21 11:52:03'),(4212,858,'S',NULL,60.00,10,'2021-01-21 11:52:09','2021-01-21 11:52:09'),(4213,858,'M',NULL,80.00,10,'2021-01-21 11:52:09','2021-01-21 11:52:09'),(4214,858,'L',NULL,120.00,10,'2021-01-21 11:52:09','2021-01-21 11:52:09'),(4215,859,'S','S',60.00,10,'2021-01-21 11:52:19','2021-01-21 11:52:19'),(4216,859,'M','M',80.00,10,'2021-01-21 11:52:19','2021-01-21 11:52:19'),(4217,859,'L','L',120.00,10,'2021-01-21 11:52:19','2021-01-21 11:52:19'),(4218,860,'S',NULL,80.00,10,'2021-01-21 11:52:28','2021-01-21 11:52:28'),(4219,860,'M',NULL,120.00,10,'2021-01-21 11:52:28','2021-01-21 11:52:28'),(4220,860,'L',NULL,170.00,10,'2021-01-21 11:52:28','2021-01-21 11:52:28'),(4221,861,'S',NULL,80.00,10,'2021-01-21 11:52:33','2021-01-21 11:52:33'),(4222,861,'M',NULL,120.00,10,'2021-01-21 11:52:33','2021-01-21 11:52:33'),(4223,861,'L',NULL,170.00,10,'2021-01-21 11:52:33','2021-01-21 11:52:33'),(4224,862,'S',NULL,60.00,10,'2021-01-21 11:52:39','2021-01-21 11:52:39'),(4225,862,'M',NULL,80.00,10,'2021-01-21 11:52:39','2021-01-21 11:52:39'),(4226,862,'L',NULL,120.00,10,'2021-01-21 11:52:39','2021-01-21 11:52:39'),(4227,863,'S',NULL,60.00,10,'2021-01-21 11:52:51','2021-01-21 11:52:51'),(4228,863,'M',NULL,80.00,10,'2021-01-21 11:52:51','2021-01-21 11:52:51'),(4229,863,'L',NULL,120.00,10,'2021-01-21 11:52:51','2021-01-21 11:52:51'),(4230,864,'S',NULL,80.00,10,'2021-01-21 11:52:55','2021-01-21 11:52:55'),(4231,864,'M',NULL,120.00,10,'2021-01-21 11:52:55','2021-01-21 11:52:55'),(4232,864,'L',NULL,170.00,10,'2021-01-21 11:52:55','2021-01-21 11:52:55'),(4233,865,'StandardSize',NULL,120.00,10,'2021-01-21 11:53:02','2021-01-21 11:53:02'),(4234,866,'S',NULL,60.00,10,'2021-01-21 11:53:07','2021-01-21 11:53:07'),(4235,866,'M',NULL,80.00,10,'2021-01-21 11:53:07','2021-01-21 11:53:07'),(4236,866,'L',NULL,120.00,10,'2021-01-21 11:53:07','2021-01-21 11:53:07'),(4237,397,NULL,NULL,1450.00,10,'2021-01-21 11:55:39','2021-01-21 11:55:39'),(4238,410,NULL,NULL,1450.00,10,'2021-01-21 11:55:45','2021-01-21 11:55:45'),(4239,413,NULL,NULL,990.00,1,'2021-01-21 11:55:53','2021-01-21 11:55:53'),(4240,415,NULL,NULL,990.00,1,'2021-01-21 11:56:03','2021-01-21 11:56:03'),(4250,845,'S','S',120.00,10,'2021-01-22 07:28:27','2021-01-22 07:28:27'),(4251,845,'M','M',120.00,10,'2021-01-22 07:28:27','2021-01-22 07:28:27'),(4252,845,'L','L',120.00,10,'2021-01-22 07:28:27','2021-01-22 07:28:27'),(4253,844,'S',NULL,120.00,10,'2021-01-22 07:28:52','2021-01-22 07:28:52'),(4254,844,'M',NULL,120.00,10,'2021-01-22 07:28:52','2021-01-22 07:28:52'),(4255,844,'L',NULL,120.00,10,'2021-01-22 07:28:52','2021-01-22 07:28:52'),(4256,843,'S',NULL,150.00,10,'2021-01-22 07:30:13','2021-01-22 07:30:13'),(4257,843,'M',NULL,150.00,10,'2021-01-22 07:30:13','2021-01-22 07:30:13'),(4258,843,'L',NULL,150.00,10,'2021-01-22 07:30:13','2021-01-22 07:30:13'),(4259,842,'S','S',120.00,10,'2021-01-22 07:31:03','2021-01-22 07:31:03'),(4260,842,'M','M',120.00,10,'2021-01-22 07:31:03','2021-01-22 07:31:03'),(4261,842,'L','L',120.00,10,'2021-01-22 07:31:03','2021-01-22 07:31:03'),(4262,841,'S','S',120.00,10,'2021-01-22 07:31:31','2021-01-22 07:31:31'),(4263,841,'M','M',120.00,10,'2021-01-22 07:31:31','2021-01-22 07:31:31'),(4264,841,'L','L',120.00,10,'2021-01-22 07:31:31','2021-01-22 07:31:31'),(4265,840,'S',NULL,120.00,10,'2021-01-22 07:32:28','2021-01-22 07:32:28'),(4266,840,'M',NULL,120.00,10,'2021-01-22 07:32:28','2021-01-22 07:32:28'),(4267,840,'L',NULL,120.00,10,'2021-01-22 07:32:28','2021-01-22 07:32:28'),(4268,839,'S',NULL,120.00,10,'2021-01-22 07:33:14','2021-01-22 07:33:14'),(4269,839,'M',NULL,120.00,10,'2021-01-22 07:33:14','2021-01-22 07:33:14'),(4270,839,'L',NULL,120.00,10,'2021-01-22 07:33:14','2021-01-22 07:33:14'),(4274,838,'S','S',120.00,10,'2021-01-22 07:37:09','2021-01-22 07:37:09'),(4275,838,'M','M',120.00,10,'2021-01-22 07:37:09','2021-01-22 07:37:09'),(4276,838,'L','L',120.00,10,'2021-01-22 07:37:09','2021-01-22 07:37:09'),(4277,837,'S',NULL,120.00,10,'2021-01-22 07:43:59','2021-01-22 07:43:59'),(4278,837,'M',NULL,120.00,10,'2021-01-22 07:43:59','2021-01-22 07:43:59'),(4279,837,'L',NULL,120.00,10,'2021-01-22 07:43:59','2021-01-22 07:43:59'),(4280,836,'S','S',120.00,10,'2021-01-22 07:45:20','2021-01-22 07:45:20'),(4281,836,'M','M',120.00,10,'2021-01-22 07:45:20','2021-01-22 07:45:20'),(4282,836,'L','L',120.00,10,'2021-01-22 07:45:20','2021-01-22 07:45:20'),(4283,835,'S','S',120.00,10,'2021-01-22 07:45:56','2021-01-22 07:45:56'),(4284,835,'M','M',120.00,10,'2021-01-22 07:45:56','2021-01-22 07:45:56'),(4285,835,'L','L',120.00,10,'2021-01-22 07:45:56','2021-01-22 07:45:56'),(4286,834,'S',NULL,120.00,10,'2021-01-22 07:47:22','2021-01-22 07:47:22'),(4287,834,'M',NULL,120.00,10,'2021-01-22 07:47:22','2021-01-22 07:47:22'),(4288,834,'L',NULL,120.00,10,'2021-01-22 07:47:22','2021-01-22 07:47:22'),(4289,833,'S',NULL,150.00,10,'2021-01-22 07:48:47','2021-01-22 07:48:47'),(4290,833,'M',NULL,150.00,10,'2021-01-22 07:48:47','2021-01-22 07:48:47'),(4291,833,'L',NULL,150.00,10,'2021-01-22 07:48:47','2021-01-22 07:48:47'),(4292,832,'S','S',120.00,10,'2021-01-22 07:49:30','2021-01-22 07:49:30'),(4293,832,'M','M',120.00,10,'2021-01-22 07:49:30','2021-01-22 07:49:30'),(4294,832,'L','L',120.00,10,'2021-01-22 07:49:30','2021-01-22 07:49:30'),(4295,831,'S',NULL,120.00,10,'2021-01-22 07:50:21','2021-01-22 07:50:21'),(4296,831,'M',NULL,120.00,10,'2021-01-22 07:50:21','2021-01-22 07:50:21'),(4297,831,'L',NULL,120.00,10,'2021-01-22 07:50:21','2021-01-22 07:50:21'),(4298,830,'S',NULL,120.00,10,'2021-01-22 07:51:09','2021-01-22 07:51:09'),(4299,830,'M',NULL,120.00,10,'2021-01-22 07:51:09','2021-01-22 07:51:09'),(4300,830,'L',NULL,120.00,10,'2021-01-22 07:51:09','2021-01-22 07:51:09'),(4301,829,'S',NULL,120.00,10,'2021-01-22 07:52:32','2021-01-22 07:52:32'),(4302,829,'M',NULL,120.00,10,'2021-01-22 07:52:32','2021-01-22 07:52:32'),(4303,829,'L',NULL,120.00,10,'2021-01-22 07:52:32','2021-01-22 07:52:32'),(4304,828,'S',NULL,330.00,10,'2021-01-22 07:53:27','2021-01-22 07:53:27'),(4305,828,'M',NULL,350.00,10,'2021-01-22 07:53:27','2021-01-22 07:53:27'),(4306,828,'L',NULL,370.00,10,'2021-01-22 07:53:27','2021-01-22 07:53:27'),(4307,827,'S',NULL,350.00,10,'2021-01-22 07:54:07','2021-01-22 07:54:07'),(4308,827,'M',NULL,370.00,10,'2021-01-22 07:54:07','2021-01-22 07:54:07'),(4309,827,'L',NULL,390.00,10,'2021-01-22 07:54:07','2021-01-22 07:54:07'),(4310,826,'S','S',330.00,10,'2021-01-22 07:55:05','2021-01-22 07:55:05'),(4311,826,'M','M',350.00,10,'2021-01-22 07:55:05','2021-01-22 07:55:05'),(4312,826,'L','L',370.00,10,'2021-01-22 07:55:05','2021-01-22 07:55:05'),(4313,825,'S',NULL,330.00,10,'2021-01-22 07:55:38','2021-01-22 07:55:38'),(4314,825,'M',NULL,350.00,10,'2021-01-22 07:55:38','2021-01-22 07:55:38'),(4315,825,'L',NULL,370.00,10,'2021-01-22 07:55:38','2021-01-22 07:55:38'),(4316,824,'XL',NULL,500.00,10,'2021-01-22 07:56:27','2021-01-22 07:56:27'),(4323,823,'S','S',350.00,10,'2021-01-22 07:59:43','2021-01-22 07:59:43'),(4324,823,'M','M',370.00,10,'2021-01-22 07:59:43','2021-01-22 07:59:43'),(4325,823,'L','L',390.00,10,'2021-01-22 07:59:43','2021-01-22 07:59:43'),(4326,822,'S',NULL,350.00,10,'2021-01-22 08:39:57','2021-01-22 08:39:57'),(4327,822,'M',NULL,370.00,10,'2021-01-22 08:39:57','2021-01-22 08:39:57'),(4328,822,'L',NULL,390.00,10,'2021-01-22 08:39:57','2021-01-22 08:39:57'),(4329,821,'S',NULL,330.00,10,'2021-01-22 09:53:30','2021-01-22 09:53:30'),(4330,821,'M',NULL,350.00,10,'2021-01-22 09:53:30','2021-01-22 09:53:30'),(4331,821,'L',NULL,370.00,10,'2021-01-22 09:53:30','2021-01-22 09:53:30'),(4332,820,'XL','XL',400.00,10,'2021-01-22 09:57:48','2021-01-22 09:57:48'),(4333,819,'XL',NULL,400.00,10,'2021-01-22 09:58:30','2021-01-22 09:58:30'),(4334,818,'XL',NULL,500.00,10,'2021-01-22 13:28:22','2021-01-22 13:28:22'),(4335,817,'S',NULL,330.00,10,'2021-01-22 13:30:58','2021-01-22 13:30:58'),(4336,817,'M',NULL,350.00,10,'2021-01-22 13:30:58','2021-01-22 13:30:58'),(4337,817,'L',NULL,370.00,10,'2021-01-22 13:30:58','2021-01-22 13:30:58'),(4338,816,'S',NULL,330.00,10,'2021-01-22 13:48:08','2021-01-22 13:48:08'),(4339,816,'M',NULL,350.00,10,'2021-01-22 13:48:08','2021-01-22 13:48:08'),(4340,816,'L',NULL,370.00,10,'2021-01-22 13:48:08','2021-01-22 13:48:08'),(4341,815,'S','S',310.00,10,'2021-01-22 13:49:57','2021-01-22 13:49:57'),(4342,815,'M','M',330.00,10,'2021-01-22 13:49:57','2021-01-22 13:49:57'),(4343,815,'L','L',350.00,10,'2021-01-22 13:49:57','2021-01-22 13:49:57'),(4344,814,'S','S',310.00,10,'2021-01-22 13:51:30','2021-01-22 13:51:30'),(4345,814,'M','M',330.00,10,'2021-01-22 13:51:30','2021-01-22 13:51:30'),(4346,814,'L','L',350.00,10,'2021-01-22 13:51:30','2021-01-22 13:51:30'),(4347,813,'S',NULL,310.00,10,'2021-01-22 13:52:09','2021-01-22 13:52:09'),(4348,813,'M',NULL,330.00,10,'2021-01-22 13:52:09','2021-01-22 13:52:09'),(4349,813,'L',NULL,350.00,10,'2021-01-22 13:52:09','2021-01-22 13:52:09'),(4350,812,'L',NULL,400.00,10,'2021-01-22 13:53:43','2021-01-22 13:53:43'),(4351,812,'XL','XL',400.00,10,'2021-01-22 13:53:43','2021-01-22 13:53:43'),(4352,811,'S',NULL,310.00,10,'2021-01-22 13:56:51','2021-01-22 13:56:51'),(4353,811,'M',NULL,330.00,10,'2021-01-22 13:56:51','2021-01-22 13:56:51'),(4354,811,'L',NULL,350.00,10,'2021-01-22 13:56:51','2021-01-22 13:56:51'),(4355,810,'S',NULL,310.00,10,'2021-01-22 13:57:21','2021-01-22 13:57:21'),(4356,810,'M',NULL,330.00,10,'2021-01-22 13:57:21','2021-01-22 13:57:21'),(4357,810,'L',NULL,350.00,10,'2021-01-22 13:57:21','2021-01-22 13:57:21'),(4358,809,'S',NULL,310.00,10,'2021-01-22 13:58:50','2021-01-22 13:58:50'),(4359,809,'M',NULL,330.00,10,'2021-01-22 13:58:50','2021-01-22 13:58:50'),(4360,809,'L',NULL,350.00,10,'2021-01-22 13:58:50','2021-01-22 13:58:50'),(4361,808,'S',NULL,330.00,10,'2021-01-22 14:00:45','2021-01-22 14:00:45'),(4362,808,'M',NULL,350.00,10,'2021-01-22 14:00:45','2021-01-22 14:00:45'),(4363,808,'L',NULL,370.00,10,'2021-01-22 14:00:45','2021-01-22 14:00:45'),(4376,804,'S',NULL,330.00,10,'2021-01-22 14:13:35','2021-01-22 14:13:35'),(4377,804,'M',NULL,350.00,10,'2021-01-22 14:13:35','2021-01-22 14:13:35'),(4378,804,'L',NULL,370.00,10,'2021-01-22 14:13:35','2021-01-22 14:13:35'),(4379,776,'34',NULL,1000.00,10,'2021-01-22 14:18:45','2021-01-22 14:18:45'),(4380,776,'36',NULL,1000.00,10,'2021-01-22 14:18:45','2021-01-22 14:18:45'),(4381,776,'38',NULL,1000.00,10,'2021-01-22 14:18:45','2021-01-22 14:18:45'),(4382,776,'40',NULL,1000.00,10,'2021-01-22 14:18:45','2021-01-22 14:18:45'),(4383,776,'42',NULL,1000.00,10,'2021-01-22 14:18:45','2021-01-22 14:18:45'),(4384,775,'18','18',1180.00,10,'2021-01-22 14:19:53','2021-01-22 14:19:53'),(4385,775,'20','20',1320.00,10,'2021-01-22 14:19:53','2021-01-22 14:19:53'),(4386,775,'22','22',1440.00,10,'2021-01-22 14:19:53','2021-01-22 14:19:53'),(4387,775,'24','24',1560.00,10,'2021-01-22 14:19:53','2021-01-22 14:19:53'),(4388,775,'26','26',1690.00,10,'2021-01-22 14:19:53','2021-01-22 14:19:53'),(4389,775,'28','28',1810.00,10,'2021-01-22 14:19:53','2021-01-22 14:19:53'),(4390,775,'30','30',1930.00,10,'2021-01-22 14:19:53','2021-01-22 14:19:53'),(4391,775,'32','32',2080.00,10,'2021-01-22 14:19:53','2021-01-22 14:19:53'),(4392,775,'34','34',2230.00,10,'2021-01-22 14:19:53','2021-01-22 14:19:53'),(4393,774,'18','18',1180.00,10,'2021-01-22 14:21:12','2021-01-22 14:21:12'),(4394,774,'20','20',1320.00,10,'2021-01-22 14:21:12','2021-01-22 14:21:12'),(4395,774,'22','22',1440.00,10,'2021-01-22 14:21:12','2021-01-22 14:21:12'),(4396,774,'24','24',1560.00,10,'2021-01-22 14:21:12','2021-01-22 14:21:12'),(4397,774,'26','26',1690.00,10,'2021-01-22 14:21:12','2021-01-22 14:21:12'),(4398,774,'28','28',1810.00,10,'2021-01-22 14:21:12','2021-01-22 14:21:12'),(4399,774,'30','30',1930.00,10,'2021-01-22 14:21:12','2021-01-22 14:21:12'),(4400,774,'32','32',2080.00,10,'2021-01-22 14:21:12','2021-01-22 14:21:12'),(4401,774,'34','34',2230.00,10,'2021-01-22 14:21:12','2021-01-22 14:21:12'),(4402,773,'18',NULL,1180.00,10,'2021-01-22 14:22:44','2021-01-22 14:22:44'),(4403,773,'20',NULL,1320.00,10,'2021-01-22 14:22:44','2021-01-22 14:22:44'),(4404,773,'22',NULL,1440.00,10,'2021-01-22 14:22:44','2021-01-22 14:22:44'),(4405,773,'24',NULL,1560.00,10,'2021-01-22 14:22:44','2021-01-22 14:22:44'),(4406,773,'26',NULL,1690.00,10,'2021-01-22 14:22:44','2021-01-22 14:22:44'),(4407,773,'28',NULL,1810.00,10,'2021-01-22 14:22:44','2021-01-22 14:22:44'),(4408,773,'30',NULL,1930.00,10,'2021-01-22 14:22:44','2021-01-22 14:22:44'),(4409,773,'32',NULL,2080.00,10,'2021-01-22 14:22:44','2021-01-22 14:22:44'),(4410,773,'34',NULL,2230.00,10,'2021-01-22 14:22:44','2021-01-22 14:22:44'),(4411,772,'18','18',1180.00,10,'2021-01-22 14:23:18','2021-01-22 14:23:18'),(4412,772,'20','20',1320.00,10,'2021-01-22 14:23:18','2021-01-22 14:23:18'),(4413,772,'22','22',1440.00,10,'2021-01-22 14:23:18','2021-01-22 14:23:18'),(4414,772,'24','24',1560.00,10,'2021-01-22 14:23:18','2021-01-22 14:23:18'),(4415,772,'26','26',1690.00,10,'2021-01-22 14:23:18','2021-01-22 14:23:18'),(4416,772,'28','28',1810.00,10,'2021-01-22 14:23:18','2021-01-22 14:23:18'),(4417,772,'30','30',1930.00,10,'2021-01-22 14:23:18','2021-01-22 14:23:18'),(4418,772,'32','32',2080.00,10,'2021-01-22 14:23:18','2021-01-22 14:23:18'),(4419,772,'34','34',2230.00,10,'2021-01-22 14:23:18','2021-01-22 14:23:18'),(4420,771,'18','18',1180.00,10,'2021-01-22 14:24:39','2021-01-22 14:24:39'),(4421,771,'20','20',1320.00,10,'2021-01-22 14:24:39','2021-01-22 14:24:39'),(4422,771,'22','22',1440.00,10,'2021-01-22 14:24:39','2021-01-22 14:24:39'),(4423,771,'24','24',1560.00,10,'2021-01-22 14:24:39','2021-01-22 14:24:39'),(4424,771,'26','26',1690.00,10,'2021-01-22 14:24:39','2021-01-22 14:24:39'),(4425,771,'28','28',1810.00,10,'2021-01-22 14:24:39','2021-01-22 14:24:39'),(4426,771,'30','30',1930.00,10,'2021-01-22 14:24:39','2021-01-22 14:24:39'),(4427,771,'32','32',2080.00,10,'2021-01-22 14:24:39','2021-01-22 14:24:39'),(4428,771,'34','34',2230.00,10,'2021-01-22 14:24:39','2021-01-22 14:24:39'),(4429,770,'18','18',1180.00,10,'2021-01-22 14:25:52','2021-01-22 14:25:52'),(4430,770,'20','20',1320.00,10,'2021-01-22 14:25:52','2021-01-22 14:25:52'),(4431,770,'22','22',1440.00,10,'2021-01-22 14:25:52','2021-01-22 14:25:52'),(4432,770,'24','24',1560.00,10,'2021-01-22 14:25:52','2021-01-22 14:25:52'),(4433,770,'26','26',1690.00,10,'2021-01-22 14:25:52','2021-01-22 14:25:52'),(4434,770,'28','28',1810.00,10,'2021-01-22 14:25:52','2021-01-22 14:25:52'),(4435,770,'30','30',1930.00,10,'2021-01-22 14:25:52','2021-01-22 14:25:52'),(4436,770,'32','32',2080.00,10,'2021-01-22 14:25:52','2021-01-22 14:25:52'),(4437,770,'34','34',2230.00,10,'2021-01-22 14:25:52','2021-01-22 14:25:52'),(4438,769,'26','26',1690.00,10,'2021-01-22 14:26:20','2021-01-22 14:26:20'),(4439,769,'28','28',1810.00,10,'2021-01-22 14:26:20','2021-01-22 14:26:20'),(4440,769,'30','30',1930.00,10,'2021-01-22 14:26:20','2021-01-22 14:26:20'),(4441,769,'32','32',2080.00,10,'2021-01-22 14:26:20','2021-01-22 14:26:20'),(4442,769,'34','34',2230.00,10,'2021-01-22 14:26:20','2021-01-22 14:26:20'),(4443,768,'26','26',1690.00,10,'2021-01-22 14:27:12','2021-01-22 14:27:12'),(4444,768,'28','28',1810.00,10,'2021-01-22 14:27:12','2021-01-22 14:27:12'),(4445,768,'30','30',1930.00,10,'2021-01-22 14:27:12','2021-01-22 14:27:12'),(4446,768,'32','32',2080.00,10,'2021-01-22 14:27:12','2021-01-22 14:27:12'),(4447,768,'34','34',2230.00,10,'2021-01-22 14:27:12','2021-01-22 14:27:12'),(4448,767,'18','18',1180.00,10,'2021-01-22 14:27:55','2021-01-22 14:27:55'),(4449,767,'20','20',1320.00,10,'2021-01-22 14:27:55','2021-01-22 14:27:55'),(4450,767,'22','22',1440.00,10,'2021-01-22 14:27:55','2021-01-22 14:27:55'),(4451,767,'24','24',1560.00,10,'2021-01-22 14:27:55','2021-01-22 14:27:55'),(4452,767,'26','26',1690.00,10,'2021-01-22 14:27:55','2021-01-22 14:27:55'),(4453,767,'28','28',1810.00,10,'2021-01-22 14:27:55','2021-01-22 14:27:55'),(4454,767,'30','30',1930.00,10,'2021-01-22 14:27:55','2021-01-22 14:27:55'),(4455,767,'32','32',2080.00,10,'2021-01-22 14:27:55','2021-01-22 14:27:55'),(4456,767,'34','34',2230.00,10,'2021-01-22 14:27:55','2021-01-22 14:27:55'),(4457,766,'18','18',1180.00,10,'2021-01-22 14:28:19','2021-01-22 14:28:19'),(4458,766,'20','20',1320.00,10,'2021-01-22 14:28:19','2021-01-22 14:28:19'),(4459,766,'22','22',1440.00,10,'2021-01-22 14:28:19','2021-01-22 14:28:19'),(4460,766,'24','24',1560.00,10,'2021-01-22 14:28:19','2021-01-22 14:28:19'),(4461,766,'26','26',1690.00,10,'2021-01-22 14:28:19','2021-01-22 14:28:19'),(4462,766,'28','28',1810.00,10,'2021-01-22 14:28:19','2021-01-22 14:28:19'),(4463,766,'30','30',1930.00,10,'2021-01-22 14:28:19','2021-01-22 14:28:19'),(4464,766,'32','32',2080.00,10,'2021-01-22 14:28:19','2021-01-22 14:28:19'),(4465,766,'34','34',2230.00,10,'2021-01-22 14:28:19','2021-01-22 14:28:19'),(4466,765,'18',NULL,1180.00,10,'2021-01-22 14:28:54','2021-01-22 14:28:54'),(4467,765,'20',NULL,1320.00,10,'2021-01-22 14:28:54','2021-01-22 14:28:54'),(4468,765,'22',NULL,1440.00,10,'2021-01-22 14:28:54','2021-01-22 14:28:54'),(4469,765,'24',NULL,1560.00,10,'2021-01-22 14:28:54','2021-01-22 14:28:54'),(4470,765,'26',NULL,1690.00,10,'2021-01-22 14:28:54','2021-01-22 14:28:54'),(4471,765,'28',NULL,1810.00,10,'2021-01-22 14:28:54','2021-01-22 14:28:54'),(4472,765,'30',NULL,1930.00,10,'2021-01-22 14:28:54','2021-01-22 14:28:54'),(4473,765,'32',NULL,2080.00,10,'2021-01-22 14:28:54','2021-01-22 14:28:54'),(4474,765,'34',NULL,2230.00,10,'2021-01-22 14:28:54','2021-01-22 14:28:54'),(4475,764,'18','18',1180.00,10,'2021-01-22 14:30:00','2021-01-22 14:30:00'),(4476,764,'20','20',1320.00,10,'2021-01-22 14:30:00','2021-01-22 14:30:00'),(4477,764,'22','22',1440.00,10,'2021-01-22 14:30:00','2021-01-22 14:30:00'),(4478,764,'24','24',1560.00,10,'2021-01-22 14:30:00','2021-01-22 14:30:00'),(4479,764,'26','26',1690.00,10,'2021-01-22 14:30:00','2021-01-22 14:30:00'),(4480,764,'28','28',1810.00,10,'2021-01-22 14:30:00','2021-01-22 14:30:00'),(4481,764,'30','30',1930.00,10,'2021-01-22 14:30:00','2021-01-22 14:30:00'),(4482,764,'32','32',2080.00,10,'2021-01-22 14:30:00','2021-01-22 14:30:00'),(4483,764,'34','34',2230.00,10,'2021-01-22 14:30:00','2021-01-22 14:30:00'),(4484,763,'18','18',1180.00,10,'2021-01-22 14:31:22','2021-01-22 14:31:22'),(4485,763,'20','20',1320.00,10,'2021-01-22 14:31:22','2021-01-22 14:31:22'),(4486,763,'22','22',1440.00,10,'2021-01-22 14:31:22','2021-01-22 14:31:22'),(4487,763,'24','24',1560.00,10,'2021-01-22 14:31:22','2021-01-22 14:31:22'),(4488,763,'26','26',1690.00,10,'2021-01-22 14:31:22','2021-01-22 14:31:22'),(4489,763,'28','28',1810.00,10,'2021-01-22 14:31:22','2021-01-22 14:31:22'),(4490,763,'30','30',1930.00,10,'2021-01-22 14:31:22','2021-01-22 14:31:22'),(4491,763,'32','32',2080.00,10,'2021-01-22 14:31:22','2021-01-22 14:31:22'),(4492,763,'34','34',2230.00,10,'2021-01-22 14:31:22','2021-01-22 14:31:22'),(4502,762,'18',NULL,1180.00,10,'2021-01-22 14:32:16','2021-01-22 14:32:16'),(4503,762,'20',NULL,1320.00,10,'2021-01-22 14:32:16','2021-01-22 14:32:16'),(4504,762,'22',NULL,1440.00,10,'2021-01-22 14:32:16','2021-01-22 14:32:16'),(4505,762,'24',NULL,1560.00,10,'2021-01-22 14:32:16','2021-01-22 14:32:16'),(4506,762,'26',NULL,1690.00,10,'2021-01-22 14:32:16','2021-01-22 14:32:16'),(4507,762,'28',NULL,1810.00,10,'2021-01-22 14:32:16','2021-01-22 14:32:16'),(4508,762,'30',NULL,1930.00,10,'2021-01-22 14:32:16','2021-01-22 14:32:16'),(4509,762,'32',NULL,2080.00,10,'2021-01-22 14:32:16','2021-01-22 14:32:16'),(4510,762,'34',NULL,2230.00,10,'2021-01-22 14:32:16','2021-01-22 14:32:16'),(4511,761,'18',NULL,1180.00,10,'2021-01-22 14:33:53','2021-01-22 14:33:53'),(4512,761,'20',NULL,1320.00,10,'2021-01-22 14:33:53','2021-01-22 14:33:53'),(4513,761,'22',NULL,1440.00,10,'2021-01-22 14:33:53','2021-01-22 14:33:53'),(4514,761,'24',NULL,1560.00,10,'2021-01-22 14:33:53','2021-01-22 14:33:53'),(4515,761,'26',NULL,1690.00,10,'2021-01-22 14:33:53','2021-01-22 14:33:53'),(4516,761,'28',NULL,1810.00,10,'2021-01-22 14:33:53','2021-01-22 14:33:53'),(4517,761,'30',NULL,1930.00,10,'2021-01-22 14:33:53','2021-01-22 14:33:53'),(4518,761,'32',NULL,2080.00,10,'2021-01-22 14:33:53','2021-01-22 14:33:53'),(4519,761,'34',NULL,2230.00,10,'2021-01-22 14:33:53','2021-01-22 14:33:53'),(4520,760,'18',NULL,1180.00,10,'2021-01-22 14:34:49','2021-01-22 14:34:49'),(4521,760,'20',NULL,1320.00,10,'2021-01-22 14:34:49','2021-01-22 14:34:49'),(4522,760,'22',NULL,1440.00,10,'2021-01-22 14:34:49','2021-01-22 14:34:49'),(4523,760,'24',NULL,1560.00,10,'2021-01-22 14:34:49','2021-01-22 14:34:49'),(4524,760,'26',NULL,1690.00,10,'2021-01-22 14:34:49','2021-01-22 14:34:49'),(4525,760,'28',NULL,1810.00,10,'2021-01-22 14:34:49','2021-01-22 14:34:49'),(4526,760,'30',NULL,1930.00,10,'2021-01-22 14:34:49','2021-01-22 14:34:49'),(4527,760,'32',NULL,2080.00,10,'2021-01-22 14:34:49','2021-01-22 14:34:49'),(4528,760,'34',NULL,2230.00,10,'2021-01-22 14:34:49','2021-01-22 14:34:49'),(4529,759,'18',NULL,1180.00,10,'2021-01-22 14:37:49','2021-01-22 14:37:49'),(4530,759,'20',NULL,1320.00,10,'2021-01-22 14:37:49','2021-01-22 14:37:49'),(4531,759,'22',NULL,1440.00,10,'2021-01-22 14:37:49','2021-01-22 14:37:49'),(4532,759,'24',NULL,1560.00,10,'2021-01-22 14:37:49','2021-01-22 14:37:49'),(4533,759,'26',NULL,1690.00,10,'2021-01-22 14:37:49','2021-01-22 14:37:49'),(4534,759,'28',NULL,1810.00,10,'2021-01-22 14:37:49','2021-01-22 14:37:49'),(4535,759,'30',NULL,1930.00,10,'2021-01-22 14:37:49','2021-01-22 14:37:49'),(4536,759,'32',NULL,2080.00,10,'2021-01-22 14:37:49','2021-01-22 14:37:49'),(4537,759,'34',NULL,2230.00,10,'2021-01-22 14:37:49','2021-01-22 14:37:49'),(4538,758,'22',NULL,500.00,10,'2021-01-22 14:38:15','2021-01-22 14:38:15'),(4539,758,'24',NULL,520.00,10,'2021-01-22 14:38:15','2021-01-22 14:38:15'),(4540,758,'26',NULL,540.00,10,'2021-01-22 14:38:15','2021-01-22 14:38:15'),(4541,758,'28',NULL,560.00,10,'2021-01-22 14:38:15','2021-01-22 14:38:15'),(4542,758,'30',NULL,590.00,10,'2021-01-22 14:38:15','2021-01-22 14:38:15'),(4543,758,'32',NULL,610.00,10,'2021-01-22 14:38:15','2021-01-22 14:38:15'),(4544,758,'34',NULL,650.00,10,'2021-01-22 14:38:15','2021-01-22 14:38:15'),(4545,758,'36',NULL,680.00,10,'2021-01-22 14:38:15','2021-01-22 14:38:15'),(4546,758,'38',NULL,720.00,10,'2021-01-22 14:38:15','2021-01-22 14:38:15'),(4547,758,'40',NULL,750.00,10,'2021-01-22 14:38:15','2021-01-22 14:38:15'),(4548,758,'42',NULL,810.00,10,'2021-01-22 14:38:15','2021-01-22 14:38:15'),(4549,757,'22',NULL,500.00,10,'2021-01-22 14:39:11','2021-01-22 14:39:11'),(4550,757,'24',NULL,520.00,10,'2021-01-22 14:39:11','2021-01-22 14:39:11'),(4551,757,'26',NULL,540.00,10,'2021-01-22 14:39:11','2021-01-22 14:39:11'),(4552,757,'28',NULL,560.00,10,'2021-01-22 14:39:11','2021-01-22 14:39:11'),(4553,757,'30',NULL,590.00,10,'2021-01-22 14:39:11','2021-01-22 14:39:11'),(4554,757,'32',NULL,610.00,10,'2021-01-22 14:39:11','2021-01-22 14:39:11'),(4555,757,'34',NULL,650.00,10,'2021-01-22 14:39:11','2021-01-22 14:39:11'),(4556,757,'36',NULL,680.00,10,'2021-01-22 14:39:11','2021-01-22 14:39:11'),(4557,757,'38',NULL,720.00,10,'2021-01-22 14:39:11','2021-01-22 14:39:11'),(4558,757,'40',NULL,750.00,10,'2021-01-22 14:39:11','2021-01-22 14:39:11'),(4559,757,'42',NULL,810.00,10,'2021-01-22 14:39:11','2021-01-22 14:39:11'),(4560,756,'22',NULL,500.00,10,'2021-01-22 14:39:35','2021-01-22 14:39:35'),(4561,756,'24',NULL,520.00,10,'2021-01-22 14:39:35','2021-01-22 14:39:35'),(4562,756,'26',NULL,540.00,10,'2021-01-22 14:39:35','2021-01-22 14:39:35'),(4563,756,'28',NULL,560.00,10,'2021-01-22 14:39:35','2021-01-22 14:39:35'),(4564,756,'30',NULL,590.00,10,'2021-01-22 14:39:35','2021-01-22 14:39:35'),(4565,756,'32',NULL,610.00,10,'2021-01-22 14:39:35','2021-01-22 14:39:35'),(4566,756,'34',NULL,650.00,10,'2021-01-22 14:39:35','2021-01-22 14:39:35'),(4567,756,'36',NULL,680.00,10,'2021-01-22 14:39:35','2021-01-22 14:39:35'),(4568,756,'38',NULL,720.00,10,'2021-01-22 14:39:35','2021-01-22 14:39:35'),(4569,756,'40',NULL,750.00,10,'2021-01-22 14:39:35','2021-01-22 14:39:35'),(4570,756,'42',NULL,810.00,10,'2021-01-22 14:39:35','2021-01-22 14:39:35'),(4571,753,'22',NULL,560.00,10,'2021-01-22 14:40:41','2021-01-22 14:40:41'),(4572,753,'24',NULL,590.00,10,'2021-01-22 14:40:41','2021-01-22 14:40:41'),(4573,753,'26',NULL,630.00,10,'2021-01-22 14:40:41','2021-01-22 14:40:41'),(4574,753,'28',NULL,670.00,10,'2021-01-22 14:40:41','2021-01-22 14:40:41'),(4575,753,'30',NULL,710.00,10,'2021-01-22 14:40:41','2021-01-22 14:40:41'),(4576,753,'32',NULL,750.00,10,'2021-01-22 14:40:41','2021-01-22 14:40:41'),(4577,753,'34',NULL,790.00,10,'2021-01-22 14:40:41','2021-01-22 14:40:41'),(4578,753,'36',NULL,830.00,10,'2021-01-22 14:40:41','2021-01-22 14:40:41'),(4579,753,'38',NULL,870.00,10,'2021-01-22 14:40:41','2021-01-22 14:40:41'),(4580,753,'40',NULL,910.00,10,'2021-01-22 14:40:41','2021-01-22 14:40:41'),(4581,753,'42',NULL,950.00,10,'2021-01-22 14:40:41','2021-01-22 14:40:41'),(4582,752,'22',NULL,560.00,10,'2021-01-22 14:41:02','2021-01-22 14:41:02'),(4583,752,'24',NULL,590.00,10,'2021-01-22 14:41:02','2021-01-22 14:41:02'),(4584,752,'26',NULL,630.00,10,'2021-01-22 14:41:02','2021-01-22 14:41:02'),(4585,752,'28',NULL,670.00,10,'2021-01-22 14:41:02','2021-01-22 14:41:02'),(4586,752,'30',NULL,710.00,10,'2021-01-22 14:41:02','2021-01-22 14:41:02'),(4587,752,'32',NULL,750.00,10,'2021-01-22 14:41:02','2021-01-22 14:41:02'),(4588,752,'34',NULL,790.00,10,'2021-01-22 14:41:02','2021-01-22 14:41:02'),(4589,752,'36',NULL,830.00,10,'2021-01-22 14:41:02','2021-01-22 14:41:02'),(4590,752,'38',NULL,870.00,10,'2021-01-22 14:41:02','2021-01-22 14:41:02'),(4591,752,'40',NULL,910.00,10,'2021-01-22 14:41:02','2021-01-22 14:41:02'),(4592,752,'42',NULL,950.00,10,'2021-01-22 14:41:02','2021-01-22 14:41:02'),(4593,751,'22',NULL,560.00,10,'2021-01-22 14:41:26','2021-01-22 14:41:26'),(4594,751,'24',NULL,580.00,10,'2021-01-22 14:41:26','2021-01-22 14:41:26'),(4595,751,'26',NULL,600.00,10,'2021-01-22 14:41:26','2021-01-22 14:41:26'),(4596,751,'28',NULL,620.00,10,'2021-01-22 14:41:26','2021-01-22 14:41:26'),(4597,751,'30',NULL,640.00,10,'2021-01-22 14:41:26','2021-01-22 14:41:26'),(4598,751,'32',NULL,660.00,10,'2021-01-22 14:41:26','2021-01-22 14:41:26'),(4599,751,'34',NULL,700.00,10,'2021-01-22 14:41:26','2021-01-22 14:41:26'),(4600,751,'36',NULL,730.00,10,'2021-01-22 14:41:26','2021-01-22 14:41:26'),(4601,751,'38',NULL,760.00,10,'2021-01-22 14:41:26','2021-01-22 14:41:26'),(4602,750,'22',NULL,500.00,10,'2021-01-22 14:41:49','2021-01-22 14:41:49'),(4603,750,'24',NULL,520.00,10,'2021-01-22 14:41:49','2021-01-22 14:41:49'),(4604,750,'26',NULL,540.00,10,'2021-01-22 14:41:49','2021-01-22 14:41:49'),(4605,750,'28',NULL,560.00,10,'2021-01-22 14:41:49','2021-01-22 14:41:49'),(4606,750,'30',NULL,590.00,10,'2021-01-22 14:41:49','2021-01-22 14:41:49'),(4607,750,'32',NULL,610.00,10,'2021-01-22 14:41:49','2021-01-22 14:41:49'),(4608,750,'34',NULL,650.00,10,'2021-01-22 14:41:49','2021-01-22 14:41:49'),(4609,750,'36',NULL,680.00,10,'2021-01-22 14:41:49','2021-01-22 14:41:49'),(4610,750,'38',NULL,720.00,10,'2021-01-22 14:41:49','2021-01-22 14:41:49'),(4611,750,'40',NULL,750.00,10,'2021-01-22 14:41:49','2021-01-22 14:41:49'),(4612,750,'42',NULL,810.00,10,'2021-01-22 14:41:49','2021-01-22 14:41:49'),(4613,749,'22',NULL,500.00,10,'2021-01-22 14:42:39','2021-01-22 14:42:39'),(4614,749,'24',NULL,520.00,10,'2021-01-22 14:42:39','2021-01-22 14:42:39'),(4615,749,'26',NULL,540.00,10,'2021-01-22 14:42:39','2021-01-22 14:42:39'),(4616,749,'28',NULL,560.00,10,'2021-01-22 14:42:39','2021-01-22 14:42:39'),(4617,749,'30',NULL,590.00,10,'2021-01-22 14:42:39','2021-01-22 14:42:39'),(4618,749,'32',NULL,610.00,10,'2021-01-22 14:42:39','2021-01-22 14:42:39'),(4619,749,'34',NULL,650.00,10,'2021-01-22 14:42:39','2021-01-22 14:42:39'),(4620,749,'36',NULL,680.00,10,'2021-01-22 14:42:39','2021-01-22 14:42:39'),(4621,749,'38',NULL,720.00,10,'2021-01-22 14:42:39','2021-01-22 14:42:39'),(4622,749,'40',NULL,750.00,10,'2021-01-22 14:42:39','2021-01-22 14:42:39'),(4623,749,'42',NULL,810.00,10,'2021-01-22 14:42:39','2021-01-22 14:42:39'),(4624,748,'22',NULL,500.00,10,'2021-01-22 14:42:58','2021-01-22 14:42:58'),(4625,748,'24',NULL,520.00,10,'2021-01-22 14:42:58','2021-01-22 14:42:58'),(4626,748,'26',NULL,540.00,10,'2021-01-22 14:42:58','2021-01-22 14:42:58'),(4627,748,'28',NULL,560.00,10,'2021-01-22 14:42:58','2021-01-22 14:42:58'),(4628,748,'30',NULL,590.00,10,'2021-01-22 14:42:58','2021-01-22 14:42:58'),(4629,748,'32',NULL,610.00,10,'2021-01-22 14:42:58','2021-01-22 14:42:58'),(4630,748,'34',NULL,650.00,10,'2021-01-22 14:42:58','2021-01-22 14:42:58'),(4631,748,'36',NULL,680.00,10,'2021-01-22 14:42:58','2021-01-22 14:42:58'),(4632,748,'38',NULL,720.00,10,'2021-01-22 14:42:58','2021-01-22 14:42:58'),(4633,748,'40',NULL,750.00,10,'2021-01-22 14:42:58','2021-01-22 14:42:58'),(4634,748,'42',NULL,810.00,10,'2021-01-22 14:42:58','2021-01-22 14:42:58'),(4635,747,'34',NULL,820.00,10,'2021-01-22 14:43:24','2021-01-22 14:43:24'),(4636,747,'36',NULL,820.00,10,'2021-01-22 14:43:24','2021-01-22 14:43:24'),(4637,747,'38',NULL,820.00,10,'2021-01-22 14:43:24','2021-01-22 14:43:24'),(4638,747,'40',NULL,820.00,10,'2021-01-22 14:43:24','2021-01-22 14:43:24'),(4639,747,'42',NULL,820.00,10,'2021-01-22 14:43:24','2021-01-22 14:43:24'),(4640,746,'22','22',620.00,10,'2021-01-22 14:45:53','2021-01-22 14:45:53'),(4641,746,'24','24',660.00,10,'2021-01-22 14:45:53','2021-01-22 14:45:53'),(4642,746,'26','26',700.00,10,'2021-01-22 14:45:53','2021-01-22 14:45:53'),(4643,746,'28','28',740.00,10,'2021-01-22 14:45:53','2021-01-22 14:45:53'),(4644,746,'30','30',780.00,10,'2021-01-22 14:45:53','2021-01-22 14:45:53'),(4645,746,'32','32',820.00,10,'2021-01-22 14:45:53','2021-01-22 14:45:53'),(4646,746,'34','34',860.00,10,'2021-01-22 14:45:53','2021-01-22 14:45:53'),(4647,746,'36','36',900.00,10,'2021-01-22 14:45:53','2021-01-22 14:45:53'),(4648,746,'38','38',940.00,10,'2021-01-22 14:45:53','2021-01-22 14:45:53'),(4649,746,'40','40',980.00,10,'2021-01-22 14:45:53','2021-01-22 14:45:53'),(4650,746,'42','42',1020.00,10,'2021-01-22 14:45:53','2021-01-22 14:45:53'),(4651,745,'22',NULL,620.00,10,'2021-01-22 14:46:16','2021-01-22 14:46:16'),(4652,745,'24',NULL,660.00,10,'2021-01-22 14:46:16','2021-01-22 14:46:16'),(4653,745,'26',NULL,700.00,10,'2021-01-22 14:46:16','2021-01-22 14:46:16'),(4654,745,'28',NULL,740.00,10,'2021-01-22 14:46:16','2021-01-22 14:46:16'),(4655,745,'30',NULL,780.00,10,'2021-01-22 14:46:16','2021-01-22 14:46:16'),(4656,745,'32',NULL,820.00,10,'2021-01-22 14:46:16','2021-01-22 14:46:16'),(4657,745,'34',NULL,860.00,10,'2021-01-22 14:46:16','2021-01-22 14:46:16'),(4658,745,'36',NULL,900.00,10,'2021-01-22 14:46:16','2021-01-22 14:46:16'),(4659,745,'38',NULL,940.00,10,'2021-01-22 14:46:16','2021-01-22 14:46:16'),(4660,745,'40',NULL,980.00,10,'2021-01-22 14:46:16','2021-01-22 14:46:16'),(4661,745,'42',NULL,1020.00,10,'2021-01-22 14:46:16','2021-01-22 14:46:16'),(4662,744,'22',NULL,620.00,10,'2021-01-22 14:47:28','2021-01-22 14:47:28'),(4663,744,'24',NULL,660.00,10,'2021-01-22 14:47:28','2021-01-22 14:47:28'),(4664,744,'26',NULL,700.00,10,'2021-01-22 14:47:28','2021-01-22 14:47:28'),(4665,744,'28',NULL,740.00,10,'2021-01-22 14:47:28','2021-01-22 14:47:28'),(4666,744,'30',NULL,780.00,10,'2021-01-22 14:47:28','2021-01-22 14:47:28'),(4667,744,'32',NULL,820.00,10,'2021-01-22 14:47:28','2021-01-22 14:47:28'),(4668,744,'34',NULL,860.00,10,'2021-01-22 14:47:28','2021-01-22 14:47:28'),(4669,744,'36',NULL,900.00,10,'2021-01-22 14:47:28','2021-01-22 14:47:28'),(4670,744,'38',NULL,940.00,10,'2021-01-22 14:47:28','2021-01-22 14:47:28'),(4671,744,'40',NULL,980.00,10,'2021-01-22 14:47:28','2021-01-22 14:47:28'),(4672,744,'42',NULL,1020.00,10,'2021-01-22 14:47:28','2021-01-22 14:47:28'),(4673,743,'22',NULL,620.00,10,'2021-01-22 14:47:48','2021-01-22 14:47:48'),(4674,743,'24',NULL,660.00,10,'2021-01-22 14:47:48','2021-01-22 14:47:48'),(4675,743,'26',NULL,700.00,10,'2021-01-22 14:47:48','2021-01-22 14:47:48'),(4676,743,'28',NULL,740.00,10,'2021-01-22 14:47:48','2021-01-22 14:47:48'),(4677,743,'30',NULL,780.00,10,'2021-01-22 14:47:48','2021-01-22 14:47:48'),(4678,743,'32',NULL,820.00,10,'2021-01-22 14:47:48','2021-01-22 14:47:48'),(4679,743,'34',NULL,860.00,10,'2021-01-22 14:47:48','2021-01-22 14:47:48'),(4680,743,'36',NULL,900.00,10,'2021-01-22 14:47:48','2021-01-22 14:47:48'),(4681,743,'38',NULL,940.00,10,'2021-01-22 14:47:48','2021-01-22 14:47:48'),(4682,743,'40',NULL,980.00,10,'2021-01-22 14:47:48','2021-01-22 14:47:48'),(4683,743,'42',NULL,1020.00,10,'2021-01-22 14:47:48','2021-01-22 14:47:48'),(4684,742,'22',NULL,620.00,10,'2021-01-22 14:48:05','2021-01-22 14:48:05'),(4685,742,'24',NULL,660.00,10,'2021-01-22 14:48:05','2021-01-22 14:48:05'),(4686,742,'26',NULL,700.00,10,'2021-01-22 14:48:05','2021-01-22 14:48:05'),(4687,742,'28',NULL,740.00,10,'2021-01-22 14:48:05','2021-01-22 14:48:05'),(4688,742,'30',NULL,780.00,10,'2021-01-22 14:48:05','2021-01-22 14:48:05'),(4689,742,'32',NULL,820.00,10,'2021-01-22 14:48:05','2021-01-22 14:48:05'),(4690,742,'34',NULL,860.00,10,'2021-01-22 14:48:05','2021-01-22 14:48:05'),(4691,742,'36',NULL,900.00,10,'2021-01-22 14:48:05','2021-01-22 14:48:05'),(4692,742,'38',NULL,940.00,10,'2021-01-22 14:48:05','2021-01-22 14:48:05'),(4693,742,'40',NULL,980.00,10,'2021-01-22 14:48:05','2021-01-22 14:48:05'),(4694,742,'42',NULL,1020.00,10,'2021-01-22 14:48:05','2021-01-22 14:48:05'),(4695,741,'22',NULL,620.00,10,'2021-01-22 14:49:06','2021-01-22 14:49:06'),(4696,741,'24',NULL,660.00,10,'2021-01-22 14:49:06','2021-01-22 14:49:06'),(4697,741,'26',NULL,700.00,10,'2021-01-22 14:49:06','2021-01-22 14:49:06'),(4698,741,'28',NULL,740.00,10,'2021-01-22 14:49:06','2021-01-22 14:49:06'),(4699,741,'30',NULL,780.00,10,'2021-01-22 14:49:06','2021-01-22 14:49:06'),(4700,741,'32',NULL,820.00,10,'2021-01-22 14:49:06','2021-01-22 14:49:06'),(4701,741,'34',NULL,860.00,10,'2021-01-22 14:49:06','2021-01-22 14:49:06'),(4702,741,'36',NULL,900.00,10,'2021-01-22 14:49:06','2021-01-22 14:49:06'),(4703,741,'38',NULL,940.00,10,'2021-01-22 14:49:06','2021-01-22 14:49:06'),(4704,741,'40',NULL,980.00,10,'2021-01-22 14:49:06','2021-01-22 14:49:06'),(4705,741,'42',NULL,1020.00,10,'2021-01-22 14:49:06','2021-01-22 14:49:06'),(4706,740,'32',NULL,1000.00,10,'2021-01-22 14:49:24','2021-01-22 14:49:24'),(4707,740,'34',NULL,1000.00,10,'2021-01-22 14:49:24','2021-01-22 14:49:24'),(4708,740,'36',NULL,1000.00,10,'2021-01-22 14:49:24','2021-01-22 14:49:24'),(4709,740,'38',NULL,1000.00,10,'2021-01-22 14:49:24','2021-01-22 14:49:24'),(4710,740,'40',NULL,1000.00,10,'2021-01-22 14:49:24','2021-01-22 14:49:24'),(4711,740,'42',NULL,1000.00,10,'2021-01-22 14:49:24','2021-01-22 14:49:24'),(4712,739,'34',NULL,1000.00,10,'2021-01-22 14:49:47','2021-01-22 14:49:47'),(4713,739,'36',NULL,1000.00,10,'2021-01-22 14:49:47','2021-01-22 14:49:47'),(4714,739,'38',NULL,1000.00,10,'2021-01-22 14:49:47','2021-01-22 14:49:47'),(4715,739,'40',NULL,1000.00,10,'2021-01-22 14:49:47','2021-01-22 14:49:47'),(4716,739,'42',NULL,1000.00,10,'2021-01-22 14:49:47','2021-01-22 14:49:47'),(4717,733,'S',NULL,1050.00,10,'2021-01-22 14:50:22','2021-01-22 14:50:22'),(4718,733,'M',NULL,1050.00,10,'2021-01-22 14:50:22','2021-01-22 14:50:22'),(4719,733,'L',NULL,1050.00,10,'2021-01-22 14:50:22','2021-01-22 14:50:22'),(4720,733,'XL',NULL,1050.00,10,'2021-01-22 14:50:22','2021-01-22 14:50:22'),(4721,733,'XXL',NULL,1050.00,10,'2021-01-22 14:50:22','2021-01-22 14:50:22'),(4722,732,'16',NULL,890.00,10,'2021-01-22 14:50:41','2021-01-22 14:50:41'),(4723,732,'18',NULL,890.00,10,'2021-01-22 14:50:41','2021-01-22 14:50:41'),(4724,732,'20',NULL,930.00,10,'2021-01-22 14:50:41','2021-01-22 14:50:41'),(4725,732,'`22',NULL,950.00,10,'2021-01-22 14:50:41','2021-01-22 14:50:41'),(4726,732,'24',NULL,980.00,10,'2021-01-22 14:50:41','2021-01-22 14:50:41'),(4727,732,'26',NULL,1010.00,10,'2021-01-22 14:50:41','2021-01-22 14:50:41'),(4728,732,'28',NULL,1040.00,10,'2021-01-22 14:50:41','2021-01-22 14:50:41'),(4729,732,'30',NULL,1070.00,10,'2021-01-22 14:50:41','2021-01-22 14:50:41'),(4730,732,'32',NULL,1100.00,10,'2021-01-22 14:50:41','2021-01-22 14:50:41'),(4731,731,'18',NULL,1180.00,10,'2021-01-22 14:52:40','2021-01-22 14:52:40'),(4732,731,'20',NULL,1320.00,10,'2021-01-22 14:52:40','2021-01-22 14:52:40'),(4733,731,'22',NULL,1440.00,10,'2021-01-22 14:52:40','2021-01-22 14:52:40'),(4734,731,'24',NULL,1560.00,10,'2021-01-22 14:52:40','2021-01-22 14:52:40'),(4735,731,'26',NULL,1690.00,10,'2021-01-22 14:52:40','2021-01-22 14:52:40'),(4736,731,'28',NULL,1810.00,10,'2021-01-22 14:52:40','2021-01-22 14:52:40'),(4737,731,'30',NULL,1930.00,10,'2021-01-22 14:52:40','2021-01-22 14:52:40'),(4738,731,'32',NULL,2080.00,10,'2021-01-22 14:52:40','2021-01-22 14:52:40'),(4739,731,'34',NULL,2230.00,10,'2021-01-22 14:52:40','2021-01-22 14:52:40'),(4740,730,'34',NULL,1000.00,10,'2021-01-22 14:54:16','2021-01-22 14:54:16'),(4741,730,'36',NULL,1000.00,10,'2021-01-22 14:54:16','2021-01-22 14:54:16'),(4742,730,'38',NULL,1000.00,10,'2021-01-22 14:54:16','2021-01-22 14:54:16'),(4743,730,'40',NULL,1000.00,10,'2021-01-22 14:54:16','2021-01-22 14:54:16'),(4744,730,'42',NULL,1000.00,10,'2021-01-22 14:54:16','2021-01-22 14:54:16'),(4745,729,'22',NULL,530.00,10,'2021-01-22 14:54:35','2021-01-22 14:54:35'),(4746,729,'24',NULL,550.00,10,'2021-01-22 14:54:35','2021-01-22 14:54:35'),(4747,729,'26',NULL,570.00,10,'2021-01-22 14:54:35','2021-01-22 14:54:35'),(4748,729,'28',NULL,590.00,10,'2021-01-22 14:54:35','2021-01-22 14:54:35'),(4749,729,'30',NULL,620.00,10,'2021-01-22 14:54:35','2021-01-22 14:54:35'),(4750,729,'32',NULL,640.00,10,'2021-01-22 14:54:35','2021-01-22 14:54:35'),(4751,729,'34',NULL,680.00,10,'2021-01-22 14:54:35','2021-01-22 14:54:35'),(4752,728,'22',NULL,560.00,10,'2021-01-22 14:54:55','2021-01-22 14:54:55'),(4753,728,'24',NULL,580.00,10,'2021-01-22 14:54:55','2021-01-22 14:54:55'),(4754,728,'26',NULL,600.00,10,'2021-01-22 14:54:55','2021-01-22 14:54:55'),(4755,728,'28',NULL,620.00,10,'2021-01-22 14:54:55','2021-01-22 14:54:55'),(4756,728,'30',NULL,640.00,10,'2021-01-22 14:54:55','2021-01-22 14:54:55'),(4757,728,'32',NULL,660.00,10,'2021-01-22 14:54:55','2021-01-22 14:54:55'),(4758,728,'34',NULL,700.00,10,'2021-01-22 14:54:55','2021-01-22 14:54:55'),(4759,728,'36',NULL,730.00,10,'2021-01-22 14:54:55','2021-01-22 14:54:55'),(4760,727,'34',NULL,820.00,10,'2021-01-22 14:56:03','2021-01-22 14:56:03'),(4761,727,'36',NULL,820.00,10,'2021-01-22 14:56:03','2021-01-22 14:56:03'),(4762,727,'38',NULL,820.00,10,'2021-01-22 14:56:03','2021-01-22 14:56:03'),(4763,727,'40',NULL,820.00,10,'2021-01-22 14:56:03','2021-01-22 14:56:03'),(4764,727,'42',NULL,820.00,10,'2021-01-22 14:56:03','2021-01-22 14:56:03'),(4765,726,'34',NULL,930.00,10,'2021-01-22 14:56:26','2021-01-22 14:56:26'),(4766,726,'36',NULL,930.00,10,'2021-01-22 14:56:26','2021-01-22 14:56:26'),(4767,726,'38',NULL,930.00,10,'2021-01-22 14:56:26','2021-01-22 14:56:26'),(4768,726,'40',NULL,930.00,10,'2021-01-22 14:56:26','2021-01-22 14:56:26'),(4769,726,'42',NULL,930.00,10,'2021-01-22 14:56:26','2021-01-22 14:56:26'),(4770,725,'20',NULL,930.00,10,'2021-01-22 14:58:38','2021-01-22 14:58:38'),(4771,725,'22',NULL,950.00,10,'2021-01-22 14:58:38','2021-01-22 14:58:38'),(4772,725,'24',NULL,980.00,10,'2021-01-22 14:58:38','2021-01-22 14:58:38'),(4773,725,'26',NULL,1010.00,10,'2021-01-22 14:58:38','2021-01-22 14:58:38'),(4774,725,'28',NULL,1040.00,10,'2021-01-22 14:58:38','2021-01-22 14:58:38'),(4775,725,'30',NULL,1070.00,10,'2021-01-22 14:58:38','2021-01-22 14:58:38'),(4776,725,'32',NULL,1100.00,10,'2021-01-22 14:58:38','2021-01-22 14:58:38'),(4777,725,'34',NULL,1130.00,10,'2021-01-22 14:58:38','2021-01-22 14:58:38'),(4778,724,'34',NULL,820.00,10,'2021-01-22 14:58:57','2021-01-22 14:58:57'),(4779,724,'36',NULL,820.00,10,'2021-01-22 14:58:57','2021-01-22 14:58:57'),(4780,724,'38',NULL,820.00,10,'2021-01-22 14:58:57','2021-01-22 14:58:57'),(4781,724,'40',NULL,820.00,10,'2021-01-22 14:58:57','2021-01-22 14:58:57'),(4782,724,'42',NULL,820.00,10,'2021-01-22 14:58:57','2021-01-22 14:58:57'),(4783,723,'34',NULL,820.00,10,'2021-01-22 14:59:27','2021-01-22 14:59:27'),(4784,723,'36',NULL,820.00,10,'2021-01-22 14:59:27','2021-01-22 14:59:27'),(4785,723,'38',NULL,820.00,10,'2021-01-22 14:59:27','2021-01-22 14:59:27'),(4786,723,'40',NULL,820.00,10,'2021-01-22 14:59:27','2021-01-22 14:59:27'),(4787,723,'42',NULL,820.00,10,'2021-01-22 14:59:27','2021-01-22 14:59:27'),(4788,722,'22',NULL,560.00,10,'2021-01-22 15:00:19','2021-01-22 15:00:19'),(4789,722,'24',NULL,590.00,10,'2021-01-22 15:00:19','2021-01-22 15:00:19'),(4790,722,'26',NULL,630.00,10,'2021-01-22 15:00:19','2021-01-22 15:00:19'),(4791,722,'28',NULL,670.00,10,'2021-01-22 15:00:19','2021-01-22 15:00:19'),(4792,722,'30',NULL,710.00,10,'2021-01-22 15:00:19','2021-01-22 15:00:19'),(4793,722,'32',NULL,750.00,10,'2021-01-22 15:00:19','2021-01-22 15:00:19'),(4794,722,'34',NULL,790.00,10,'2021-01-22 15:00:19','2021-01-22 15:00:19'),(4795,722,'36',NULL,830.00,10,'2021-01-22 15:00:19','2021-01-22 15:00:19'),(4796,722,'38',NULL,870.00,10,'2021-01-22 15:00:19','2021-01-22 15:00:19'),(4797,722,'40',NULL,910.00,10,'2021-01-22 15:00:19','2021-01-22 15:00:19'),(4798,722,'42',NULL,950.00,10,'2021-01-22 15:00:19','2021-01-22 15:00:19'),(4799,721,'22',NULL,560.00,10,'2021-01-22 15:05:48','2021-01-22 15:05:48'),(4800,721,'24',NULL,590.00,10,'2021-01-22 15:05:48','2021-01-22 15:05:48'),(4801,721,'26',NULL,630.00,10,'2021-01-22 15:05:48','2021-01-22 15:05:48'),(4802,721,'28',NULL,670.00,10,'2021-01-22 15:05:48','2021-01-22 15:05:48'),(4803,721,'30',NULL,710.00,10,'2021-01-22 15:05:48','2021-01-22 15:05:48'),(4804,721,'32',NULL,750.00,10,'2021-01-22 15:05:48','2021-01-22 15:05:48'),(4805,721,'34',NULL,790.00,10,'2021-01-22 15:05:48','2021-01-22 15:05:48'),(4806,721,'36',NULL,830.00,10,'2021-01-22 15:05:48','2021-01-22 15:05:48'),(4807,721,'38',NULL,870.00,10,'2021-01-22 15:05:48','2021-01-22 15:05:48'),(4808,721,'40',NULL,910.00,10,'2021-01-22 15:05:48','2021-01-22 15:05:48'),(4809,721,'42',NULL,950.00,10,'2021-01-22 15:05:48','2021-01-22 15:05:48'),(4810,720,'32',NULL,750.00,10,'2021-01-22 15:06:26','2021-01-22 15:06:26'),(4811,720,'34',NULL,790.00,10,'2021-01-22 15:06:26','2021-01-22 15:06:26'),(4812,720,'36',NULL,830.00,10,'2021-01-22 15:06:26','2021-01-22 15:06:26'),(4813,720,'38',NULL,870.00,10,'2021-01-22 15:06:26','2021-01-22 15:06:26'),(4814,720,'40',NULL,910.00,10,'2021-01-22 15:06:26','2021-01-22 15:06:26'),(4815,720,'42',NULL,950.00,10,'2021-01-22 15:06:26','2021-01-22 15:06:26'),(4816,719,'22',NULL,560.00,10,'2021-01-22 15:06:50','2021-01-22 15:06:50'),(4817,719,'24',NULL,590.00,10,'2021-01-22 15:06:50','2021-01-22 15:06:50'),(4818,719,'26',NULL,630.00,10,'2021-01-22 15:06:50','2021-01-22 15:06:50'),(4819,719,'28',NULL,670.00,10,'2021-01-22 15:06:50','2021-01-22 15:06:50'),(4820,719,'30',NULL,710.00,10,'2021-01-22 15:06:50','2021-01-22 15:06:50'),(4821,719,'32',NULL,750.00,10,'2021-01-22 15:06:50','2021-01-22 15:06:50'),(4822,719,'34',NULL,790.00,10,'2021-01-22 15:06:50','2021-01-22 15:06:50'),(4823,719,'36',NULL,830.00,10,'2021-01-22 15:06:50','2021-01-22 15:06:50'),(4824,719,'38',NULL,870.00,10,'2021-01-22 15:06:50','2021-01-22 15:06:50'),(4825,719,'40',NULL,910.00,10,'2021-01-22 15:06:50','2021-01-22 15:06:50'),(4826,719,'42',NULL,950.00,10,'2021-01-22 15:06:50','2021-01-22 15:06:50'),(4827,718,'22','22',560.00,10,'2021-01-22 15:07:50','2021-01-22 15:07:50'),(4828,718,'24','24',590.00,10,'2021-01-22 15:07:50','2021-01-22 15:07:50'),(4829,718,'26','26',630.00,10,'2021-01-22 15:07:50','2021-01-22 15:07:50'),(4830,718,'28','28',670.00,10,'2021-01-22 15:07:50','2021-01-22 15:07:50'),(4831,718,'30','30',710.00,10,'2021-01-22 15:07:50','2021-01-22 15:07:50'),(4832,718,'32','32',750.00,10,'2021-01-22 15:07:50','2021-01-22 15:07:50'),(4833,718,'34','34',790.00,10,'2021-01-22 15:07:50','2021-01-22 15:07:50'),(4834,718,'36','36',830.00,10,'2021-01-22 15:07:50','2021-01-22 15:07:50'),(4835,718,'38','38',870.00,10,'2021-01-22 15:07:50','2021-01-22 15:07:50'),(4836,718,'40','40',910.00,10,'2021-01-22 15:07:50','2021-01-22 15:07:50'),(4837,718,'42','42',950.00,10,'2021-01-22 15:07:50','2021-01-22 15:07:50'),(4838,717,'22','22',560.00,10,'2021-01-22 15:13:39','2021-01-22 15:13:39'),(4839,717,'24','24',590.00,10,'2021-01-22 15:13:39','2021-01-22 15:13:39'),(4840,717,'26','26',630.00,10,'2021-01-22 15:13:39','2021-01-22 15:13:39'),(4841,717,'28','28',670.00,10,'2021-01-22 15:13:39','2021-01-22 15:13:39'),(4842,717,'30','30',710.00,10,'2021-01-22 15:13:39','2021-01-22 15:13:39'),(4843,717,'32','32',750.00,10,'2021-01-22 15:13:39','2021-01-22 15:13:39'),(4844,717,'34','34',790.00,10,'2021-01-22 15:13:39','2021-01-22 15:13:39'),(4845,717,'36','36',830.00,10,'2021-01-22 15:13:39','2021-01-22 15:13:39'),(4846,717,'38','38',870.00,10,'2021-01-22 15:13:39','2021-01-22 15:13:39'),(4847,717,'40','40',910.00,10,'2021-01-22 15:13:39','2021-01-22 15:13:39'),(4848,717,'42','42',950.00,10,'2021-01-22 15:13:39','2021-01-22 15:13:39'),(4849,807,'S(5to8Year)','S(5to8Year)',300.00,10,'2021-01-23 03:34:06','2021-01-23 03:34:06'),(4850,807,'M(7to10Year)','M(7to10Year)',300.00,10,'2021-01-23 03:34:06','2021-01-23 03:34:06'),(4851,807,'L(11to14Year)','L(11to14Year)',300.00,10,'2021-01-23 03:34:06','2021-01-23 03:34:06'),(4852,806,'S(5to8Year)','S(5to8Year)',250.00,10,'2021-01-23 03:36:49','2021-01-23 03:36:49'),(4853,806,'M(7to10yera)','M(7to10yera)',250.00,10,'2021-01-23 03:36:49','2021-01-23 03:36:49'),(4854,806,'L(11to14Year)','L(11to14Year)',250.00,10,'2021-01-23 03:36:49','2021-01-23 03:36:49'),(4855,805,'S(5to8year)','S(5to8year)',250.00,10,'2021-01-23 03:37:51','2021-01-23 03:37:51'),(4856,805,'M(7to10Year)','M(7to10Year)',250.00,10,'2021-01-23 03:37:51','2021-01-23 03:37:51'),(4857,805,'L(11to14Year)','L(11to14Year)',250.00,10,'2021-01-23 03:37:51','2021-01-23 03:37:51'),(4867,869,'40*28',NULL,690.00,10,'2021-01-23 03:58:50','2021-01-23 03:58:50'),(4868,869,'40*30',NULL,710.00,10,'2021-01-23 03:58:50','2021-01-23 03:58:50'),(4869,869,'40*32',NULL,730.00,10,'2021-01-23 03:58:50','2021-01-23 03:58:50'),(4870,869,'40*34',NULL,750.00,10,'2021-01-23 03:58:50','2021-01-23 03:58:50'),(4871,869,'40*36',NULL,780.00,10,'2021-01-23 03:58:50','2021-01-23 03:58:50'),(4872,869,'40*38',NULL,800.00,10,'2021-01-23 03:58:50','2021-01-23 03:58:50'),(4873,869,'42*28',NULL,710.00,10,'2021-01-23 03:58:50','2021-01-23 03:58:50'),(4874,869,'42*30',NULL,730.00,10,'2021-01-23 03:58:50','2021-01-23 03:58:50'),(4875,869,'42*32',NULL,750.00,10,'2021-01-23 03:58:50','2021-01-23 03:58:50'),(4876,869,'42*34',NULL,770.00,10,'2021-01-23 03:58:50','2021-01-23 03:58:50'),(4877,869,'42*36',NULL,800.00,10,'2021-01-23 03:58:50','2021-01-23 03:58:50'),(4878,869,'42*38',NULL,820.00,10,'2021-01-23 03:58:50','2021-01-23 03:58:50'),(4879,869,'42*40',NULL,840.00,10,'2021-01-23 03:58:50','2021-01-23 03:58:50'),(4880,869,'42*42',NULL,870.00,10,'2021-01-23 03:58:50','2021-01-23 03:58:50'),(4881,868,'22',NULL,470.00,10,'2021-01-23 03:59:12','2021-01-23 03:59:12'),(4882,868,'24',NULL,490.00,10,'2021-01-23 03:59:12','2021-01-23 03:59:12'),(4883,868,'26',NULL,510.00,10,'2021-01-23 03:59:12','2021-01-23 03:59:12'),(4884,868,'28',NULL,530.00,10,'2021-01-23 03:59:12','2021-01-23 03:59:12'),(4885,868,'30',NULL,550.00,10,'2021-01-23 03:59:12','2021-01-23 03:59:12'),(4886,868,'32',NULL,580.00,10,'2021-01-23 03:59:12','2021-01-23 03:59:12'),(4887,868,'34',NULL,610.00,10,'2021-01-23 03:59:12','2021-01-23 03:59:12'),(4888,868,'36',NULL,640.00,10,'2021-01-23 03:59:12','2021-01-23 03:59:12'),(4889,868,'38',NULL,670.00,10,'2021-01-23 03:59:12','2021-01-23 03:59:12'),(4890,867,'22',NULL,470.00,10,'2021-01-23 03:59:22','2021-01-23 03:59:22'),(4891,867,'24',NULL,490.00,10,'2021-01-23 03:59:22','2021-01-23 03:59:22'),(4892,867,'26',NULL,510.00,10,'2021-01-23 03:59:22','2021-01-23 03:59:22'),(4893,867,'28',NULL,530.00,10,'2021-01-23 03:59:22','2021-01-23 03:59:22'),(4894,867,'30',NULL,550.00,10,'2021-01-23 03:59:22','2021-01-23 03:59:22'),(4895,867,'32',NULL,580.00,10,'2021-01-23 03:59:22','2021-01-23 03:59:22'),(4896,867,'34',NULL,610.00,10,'2021-01-23 03:59:22','2021-01-23 03:59:22'),(4897,867,'36',NULL,640.00,10,'2021-01-23 03:59:22','2021-01-23 03:59:22'),(4898,867,'38',NULL,670.00,10,'2021-01-23 03:59:22','2021-01-23 03:59:22'),(4899,870,'22','22',470.00,10,'2021-01-23 04:13:44','2021-01-23 04:13:44'),(4900,870,'24','24',490.00,10,'2021-01-23 04:13:44','2021-01-23 04:13:44'),(4901,870,'26','26',510.00,10,'2021-01-23 04:13:44','2021-01-23 04:13:44'),(4902,870,'28','28',530.00,10,'2021-01-23 04:13:44','2021-01-23 04:13:44'),(4903,870,'30','30',550.00,10,'2021-01-23 04:13:44','2021-01-23 04:13:44'),(4904,870,'32','32',580.00,10,'2021-01-23 04:13:44','2021-01-23 04:13:44'),(4905,870,'34','34',610.00,10,'2021-01-23 04:13:44','2021-01-23 04:13:44'),(4906,870,'36','36',640.00,10,'2021-01-23 04:13:44','2021-01-23 04:13:44'),(4907,870,'38','38',670.00,10,'2021-01-23 04:13:44','2021-01-23 04:13:44'),(4908,871,'40*28','40*28',690.00,10,'2021-01-23 04:17:41','2021-01-23 04:17:41'),(4909,871,'40*30','40*30',710.00,10,'2021-01-23 04:17:41','2021-01-23 04:17:41'),(4910,871,'40*32','40*32',730.00,10,'2021-01-23 04:17:41','2021-01-23 04:17:41'),(4911,871,'40*34','40*34',750.00,10,'2021-01-23 04:17:41','2021-01-23 04:17:41'),(4912,871,'40*36','40*36',780.00,10,'2021-01-23 04:17:41','2021-01-23 04:17:41'),(4913,871,'40*38','40*38',800.00,10,'2021-01-23 04:17:41','2021-01-23 04:17:41'),(4914,871,'42*28','42*28',710.00,10,'2021-01-23 04:17:41','2021-01-23 04:17:41'),(4915,871,'42*30','42*30',730.00,10,'2021-01-23 04:17:41','2021-01-23 04:17:41'),(4916,871,'42*32','42*32',750.00,10,'2021-01-23 04:17:41','2021-01-23 04:17:41'),(4917,871,'42*34','42*34',770.00,10,'2021-01-23 04:17:41','2021-01-23 04:17:41'),(4918,871,'42*36','42*36',800.00,10,'2021-01-23 04:17:41','2021-01-23 04:17:41'),(4919,871,'42*38','42*38',820.00,10,'2021-01-23 04:17:41','2021-01-23 04:17:41'),(4920,871,'42*40','42*40',840.00,10,'2021-01-23 04:17:41','2021-01-23 04:17:41'),(4921,871,'42*42','42*42',870.00,10,'2021-01-23 04:17:41','2021-01-23 04:17:41'),(4922,872,'18',NULL,420.00,10,'2021-01-23 05:34:25','2021-01-23 05:34:25'),(4923,872,'20',NULL,440.00,10,'2021-01-23 05:34:25','2021-01-23 05:34:25'),(4924,872,'22',NULL,460.00,10,'2021-01-23 05:34:25','2021-01-23 05:34:25'),(4925,872,'24',NULL,480.00,10,'2021-01-23 05:34:25','2021-01-23 05:34:25'),(4926,872,'26',NULL,500.00,10,'2021-01-23 05:34:25','2021-01-23 05:34:25'),(4927,872,'28',NULL,520.00,10,'2021-01-23 05:34:25','2021-01-23 05:34:25'),(4928,872,'30',NULL,550.00,10,'2021-01-23 05:34:25','2021-01-23 05:34:25'),(4929,872,'S',NULL,570.00,10,'2021-01-23 05:34:25','2021-01-23 05:34:25'),(4930,872,'M',NULL,590.00,10,'2021-01-23 05:34:25','2021-01-23 05:34:25'),(4931,872,'L',NULL,610.00,10,'2021-01-23 05:34:25','2021-01-23 05:34:25'),(4932,373,NULL,NULL,550.00,1,'2021-01-23 07:27:39','2021-01-23 07:27:39'),(4933,375,NULL,NULL,550.00,1,'2021-01-23 07:28:28','2021-01-23 07:28:28'),(4934,378,NULL,NULL,550.00,1,'2021-01-23 07:29:01','2021-01-23 07:29:01'),(4935,381,NULL,NULL,550.00,1,'2021-01-23 07:29:36','2021-01-23 07:29:36'),(4936,384,NULL,NULL,550.00,1,'2021-01-23 07:30:09','2021-01-23 07:30:09'),(4937,386,NULL,NULL,550.00,1,'2021-01-23 07:30:49','2021-01-23 07:30:49'),(4938,388,NULL,NULL,550.00,1,'2021-01-23 07:31:17','2021-01-23 07:31:17'),(4939,390,NULL,NULL,520.00,1,'2021-01-23 07:32:44','2021-01-23 07:32:44'),(4940,392,NULL,NULL,520.00,1,'2021-01-23 07:33:10','2021-01-23 07:33:10'),(4941,394,NULL,NULL,520.00,1,'2021-01-23 07:33:35','2021-01-23 07:33:35'),(4942,395,NULL,NULL,550.00,1,'2021-01-23 07:33:58','2021-01-23 07:33:58'),(4943,396,NULL,NULL,550.00,1,'2021-01-23 07:34:24','2021-01-23 07:34:24'),(4944,398,NULL,NULL,330.00,1,'2021-01-23 07:34:56','2021-01-23 07:34:56'),(4945,399,NULL,NULL,330.00,1,'2021-01-23 07:35:20','2021-01-23 07:35:20'),(4946,400,NULL,NULL,330.00,1,'2021-01-23 07:35:40','2021-01-23 07:35:40'),(4947,401,NULL,NULL,330.00,1,'2021-01-23 07:36:42','2021-01-23 07:36:42'),(4948,402,NULL,NULL,330.00,1,'2021-01-23 07:36:54','2021-01-23 07:36:54'),(4949,403,NULL,NULL,420.00,1,'2021-01-23 07:37:51','2021-01-23 07:37:51'),(4950,404,NULL,NULL,420.00,1,'2021-01-23 07:38:19','2021-01-23 07:38:19'),(4951,405,NULL,NULL,420.00,1,'2021-01-23 07:38:48','2021-01-23 07:38:48'),(4952,406,NULL,NULL,420.00,1,'2021-01-23 07:39:15','2021-01-23 07:39:15'),(4953,407,NULL,NULL,450.00,1,'2021-01-23 07:39:45','2021-01-23 07:39:45'),(4954,450,NULL,NULL,500.00,0,'2021-01-23 07:40:52','2021-01-23 07:40:52'),(4956,602,NULL,NULL,1450.00,1,'2021-01-23 07:43:31','2021-01-23 07:43:31'),(4957,601,NULL,NULL,1450.00,1,'2021-01-23 07:44:06','2021-01-23 07:44:06'),(4958,600,NULL,NULL,1450.00,1,'2021-01-23 07:44:36','2021-01-23 07:44:36'),(4959,599,NULL,NULL,1450.00,1,'2021-01-23 07:46:01','2021-01-23 07:46:01'),(4969,575,NULL,NULL,1720.00,10,'2021-01-23 07:50:59','2021-01-23 07:50:59'),(4970,576,NULL,NULL,1720.00,10,'2021-01-23 07:51:09','2021-01-23 07:51:09'),(4971,577,NULL,NULL,1720.00,10,'2021-01-23 07:51:16','2021-01-23 07:51:16'),(4972,578,NULL,NULL,1720.00,10,'2021-01-23 07:51:26','2021-01-23 07:51:26'),(4973,579,NULL,NULL,1720.00,10,'2021-01-23 07:51:33','2021-01-23 07:51:33'),(4974,580,NULL,NULL,1720.00,10,'2021-01-23 07:51:48','2021-01-23 07:51:48'),(4975,337,NULL,NULL,270.00,1,'2021-01-23 07:54:20','2021-01-23 07:54:20');
/*!40000 ALTER TABLE `product_stocks` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `product_translations`
--

DROP TABLE IF EXISTS `product_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `product_translations` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `product_id` bigint(20) NOT NULL,
  `name` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
  `unit` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
  `description` longtext COLLATE utf8_unicode_ci,
  `lang` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=578 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `product_translations`
--

LOCK TABLES `product_translations` WRITE;
/*!40000 ALTER TABLE `product_translations` DISABLE KEYS */;
INSERT INTO `product_translations` (`id`, `product_id`, `name`, `unit`, `description`, `lang`, `created_at`, `updated_at`) VALUES (1,512,'Lion Star Water Bottle HU-4','pc','<strong>Article no: HU-4</strong><br><br><strong>Product Description:</strong><br><br>Two gorgeous and attractive colors of water bottle HU-4 are available here:<br><ul><br> 	<li>Green</li><br> 	<li>Orange</li><br></ul>','en','2021-01-09 01:44:15','2021-01-09 01:44:15'),(2,513,'Lion Star Water Bottle HU-5','pc','<strong>Article no: HU-5</strong><br><br><strong>Product Description:</strong><br><br>Two gorgeous and attractive colors of water bottle HU-5 are available here:<br><ul><br> 	<li>Green</li><br> 	<li>Orange</li><br></ul>','en','2021-01-09 01:47:00','2021-01-09 01:47:00'),(3,514,'Lion Star Water Bottle HU-8','pc','<strong>Article no: HU-8</strong><br><br><strong>Product Description:</strong><br><br>Two gorgeous and attractive colors of water bottle HU-8 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Red</li><br></ul>','en','2021-01-09 02:12:11','2021-01-09 02:12:11'),(4,515,'Lion Star Water Bottle HU-9','pc','<strong>Article no: HU-9</strong><br><br><strong>Product Description:</strong><br><br>Two gorgeous and attractive colors of water bottle HU-9 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Red</li><br></ul>','en','2021-01-09 02:14:49','2021-01-09 02:14:49'),(5,516,'Lion Star Water Bottle HU-13','pc','<strong>Article no: HU-13</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-13 are available here:<br><ul><br> 	<li>Pink</li><br> 	<li>Purple</li><br> 	<li>Red</li><br></ul>','en','2021-01-09 02:17:29','2021-01-09 02:17:29'),(6,517,'Lion Star Water Bottle HU-14','pc','<strong>Article no: HU-14</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-14 are available here:<br><ul><br> 	<li>Green</li><br> 	<li>Blue</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-09 02:22:55','2021-01-09 02:22:55'),(7,518,'Lion Star Water Bottle HU-15','pc','<strong>Article no: HU-15</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-15 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-09 02:29:00','2021-01-09 02:29:00'),(8,519,'Lion Star Water Bottle HU-16','pc','<strong>Article no: HU-16</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-16 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-09 02:34:08','2021-01-09 02:34:08'),(9,520,'Lion Star Water Bottle HU-17','pc','<strong>Article no: HU-17</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-17 are available here:<br><ul><br> 	<li>Red</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-09 02:36:34','2021-01-09 02:36:34'),(10,521,'Lion Star Water Bottle HU-18','pc','<strong>Article no: HU-18</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-18 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-09 02:41:45','2021-01-09 02:41:45'),(11,522,'Lion Star Water Bottle HU-20','pc','<strong>Article no: HU-20</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-20 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-09 03:10:34','2021-01-09 03:10:34'),(12,523,'Lion Star Water Bottle HU-21','pc','<strong>Article no: HU-21</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-21 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Red</li><br></ul>','en','2021-01-09 03:14:36','2021-01-09 03:14:36'),(13,524,'Lion Star Water Bottle HU-22','pc','<strong>Article no: HU-22</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-22 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Red</li><br></ul>','en','2021-01-09 03:17:53','2021-01-09 03:17:53'),(14,525,'Lion Star Water Bottle HU-24','pc','<strong>Article no: HU-24</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-24 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-09 03:21:45','2021-01-09 03:21:45'),(15,526,'Lion Star Water Bottle HU-25','pc','<strong>Article no: HU-25</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-25 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-09 03:24:02','2021-01-09 03:24:02'),(16,527,'Lion Star Water Bottle HU-27','pc','<strong>Article no: HU-27</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-27 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-09 03:30:29','2021-01-09 03:30:29'),(17,528,'Lion Star Water Bottle HU-28','pc','<strong>Article no: HU-28</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-28 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-09 03:35:12','2021-01-09 03:35:12'),(18,529,'Lion Star Water Bottle HU-29','pc','<strong>Article no: HU-29</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-29 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-09 03:39:05','2021-01-09 03:39:05'),(19,530,'Lion Star Water Bottle HU-36','pc','<strong>Article no: HU-36</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-36 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-09 03:41:33','2021-01-09 03:41:33'),(20,531,'Pair Of Lion Star Water Bottle & Lunch Box SB-4','pc','<strong>Article no: SB-4</strong><br><br><strong>Product Description:</strong><br><br>Vel burry Offers you a pair of Lion star water bottle &amp; lunch box at a reasonable price.<br><br>Some gorgeous and attractive colors of water bottle &amp; Lunch Box SB-4 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-09 03:47:26','2021-01-09 03:47:26'),(21,532,'Lion Star Water Bottle SB-12','pc','<strong>Article no: SB-12</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle SB-12 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-09 03:51:22','2021-01-09 03:51:22'),(22,533,'Pair Of Lion Star Water Bottle & Lunch Box SB-5','pc','<strong>Article no: SB-5</strong><br><br><strong>Product Description:</strong><br><br>Vel burry Offers you a pair of Lion star water bottle &amp; lunch box at a reasonable price.<br><br>Some gorgeous and attractive colors of water bottle &amp; Lunch Box SB-5 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br></ul>','en','2021-01-09 03:53:21','2021-01-09 03:53:21'),(23,534,'Pair Of Lion Star Water Bottle & Lunch Box SB-21','pc','<strong>Article no: SB-21</strong><br><br><strong>Product Description:</strong><br><br>Vel burry Offers you a pair of Lion star water bottle &amp; lunch box at a reasonable price.<br><br>Some gorgeous and attractive colors of water bottle &amp; Lunch Box SB-21 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-09 03:55:02','2021-01-09 03:59:19'),(24,535,'Pair Of Lion Star Water Bottle & Lunch Box SB-11','pc','<strong>Article no: SB-11</strong><br><br><strong>Product Description:</strong><br><br>Vel burry Offers you a pair of Lion star water bottle &amp; lunch box at a reasonable price.<br><br>Some gorgeous and attractive colors of water bottle &amp; Lunch Box SB-11 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-09 04:04:32','2021-01-09 04:04:32'),(25,536,'Pair Of Lion Star Water Bottle & Lunch Box SB-22','pc','<strong>Article no: SB-22</strong><br><br><strong>Product Description:</strong><br><br>Vel burry Offers you a pair of Lion star water bottle &amp; lunch box at a reasonable price.<br><br>Some gorgeous and attractive colors of water bottle &amp; Lunch Box SB-22 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-09 04:09:17','2021-01-09 04:09:17'),(26,537,'Nivea Cold Cream 60ml','pc','<strong>Article no: 2030</strong><br><br><strong>Product description:</strong><br><br><b>Nivea Cold Cream</b> contains skin-related Eucerin a unique moisturizing ingredient. The best part is that it is soft and a creamy multipurpose <b>cream</b>. As a result, it can be used as a moisturizer during all seasons. After using it, the skin soothes up and gets moisturized which lasts for long time.<br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Nivea creme, all season multipurpose cream, 60ml</span></li><br> 	<li><span class=\"a-list-item\">Pamper your skin withthe formula of Nivea creme which not only cares but also protects your skin leaving it healthy and moisturized</span></li><br> 	<li><span class=\"a-list-item\">Skin compatibility dermatologically approved</span></li><br></ul>','en','2021-01-09 04:18:30','2021-01-09 04:18:30'),(27,538,'Nivea Cold Cream 150ml','pc','<strong>Article No: 2031</strong><br><br><strong>Product Description</strong><br><br><b>Nivea Cold Cream</b> contains skin-related Eucerin a unique moisturising ingredient. The best part is that it is soft and a creamy multipurpose <b>cream</b>. As a result, it can be used as a moisturizer during all seasons. After using it, the skin soothes up and gets moisturized which lasts for long time','en','2021-01-10 10:16:32','2021-01-10 10:16:32'),(28,539,'Pond’s White Beauty BB+ Fairness Cream','pc','<strong>Article no: 2044</strong><br><br><strong>Product description:</strong><br><br>This <b>BB</b> + <b>Cream</b> is a fairness <b>cream</b> and a foundation, all-in-one. It protects against UVA and UVB rays while working from inside to lighten dark spots and circles. The secret to spotless pinkish <b>white</b> skin lies in its Pro-Vitamin B3.<br><br><strong>• Instant natural coverage<span id=\"more-150402\"></span><br>• Non-pores clogging<br>• Light, non-oily texture<br>• Lightens from within epidermis level<br>• Reduces dark spots<br>• Evens skin tone<br>• SPF 30 PA++ protects from UVA, UVB, and visible light</strong>','en','2021-01-10 10:18:46','2021-01-10 10:18:46'),(29,540,'Dove Beauty Cream 75ml','pc','<strong>Article No: 2032</strong><br><br><strong>Product Description</strong><br><br>With a rich moisturising formula, Dove Beauty Cream nourishes <b>skin</b> to leave it looking and feeling beautiful. Rich doesnt mean heavy though – this lightweight moisturising cream leaves no greasiness or oily residue behind – so its perfect for all <b>skin</b> types, including oily <b>skin</b>.','en','2021-01-10 10:20:36','2021-01-10 10:20:36'),(30,541,'Dove Silky Nourishment Body Cream 300ml','pc','<strong>Article No: 2033</strong><br><br><strong>Product Description</strong><br><br><b>Dove Body Lotion</b> Moisturising <b>Cream Silk</b>. <b>Dove Body Silk Body Cream</b> is a moisturising <b>cream</b> for dry skin. It leaves you with nourished and <b>silky</b> skin, and contains <b>Doves</b> unique DeepCare Complex, a combination of skin natural nutrients and rich essential oils, to help gradually improve skin, starting deep down','en','2021-01-10 10:23:40','2021-01-10 10:23:40'),(31,542,'Garnier SkinActive BB Cream Anti-Aging Face Moisturizer','pc','<strong>Article no: 2045</strong><br><h6>Product Description:</h6><br>This moisturizing anti-aging BB Cream with Pro-xylane Antioxidant Apricot and tinted mineral pigments is the 5-in-1 tinted moisturizer that simplifies your skincare routine. This anti-aging face moisturizer reduces the look of wrinkles, firms skin, evens skin tone, deeply hydrates and helps prevent sunburn with Broad Spectrum SPF 15. Get a youthful-looking, more even skin tone with just one product. Suitable for all skin types.<br><br>This Anti-Aging BB Cream has a moisturizing formula made with antioxidant Apricot, Pro-Xylane, tinted mineral pigments and broad spectrum SPF 15<br>This tinted face moisturizer reduces wrinkles, firms skin, evens skin tone, deeply hydrates and helps prevent sunburn<br>Simplify your daily routine with this 5-in-1, anti-aging tinted moisturizer that will give you more radiant, youthful-looking skin<br>Use this tinted moisturizer for a more even complexion and healthier glowand in 4 weeks, skin will be significantly firmer with visibly less wrinkles<br>In just one step, combat the signs of aging, get 24-hour hydration and natural-looking radiance with this lightweight BB cream face moisturizer that primes, corrects and hydrates skin.','en','2021-01-10 10:26:49','2021-01-10 10:26:49'),(32,543,'Dabur Amla Hair - Oil Natural care','pc','<strong>Article No: 2034</strong><br><br><strong>Product Description</strong><br><br>Original Indian <b>hair oil</b> Alma is a product labelled as a cosmetic that should be applied to dark <b>hair</b> only. It seems rational because <b>Amla</b> works similarly to castor plant. In spite of its astonishing <b>hair</b> growth accelerating features, both <b>oils</b> are able to <b>darker hair</b>.','en','2021-01-10 10:30:03','2021-01-10 10:30:03'),(33,544,'L\'Oreal Paris Youth Code BB Cream Illuminator 75ml','pc','<strong>Article no: 2046</strong><br><h6 class=\"default\">Product description:</h6><br><b>Youth code BB cream</b> illuminator instantly evens, illuminates, perfects, moisturizes, and protects skin. In one week, tone and texture are improved and skin is healthier looking. Contains broad spectrum SPF 15.<br><ul><br> 	<li><strong>Complexion appears more Luminous with an even finish </strong></li><br> 	<li><strong>Skin appears smoothers, Soften  </strong></li><br> 	<li><strong>Helps to prevent Sunburn. Decrease the risk of Skin Cancer and Early Skin ageing caused by the Sun</strong></li><br> 	<li><strong>Imperfection appear diminished  even without makeup </strong></li><br> 	<li><strong>Skin’s texture is Refined  </strong></li><br> 	<li><strong>Non-greasy</strong></li><br> 	<li><strong>Dermatologist tested for gentleness </strong></li><br> 	<li><strong>Non-comedogenic</strong></li><br></ul>','en','2021-01-10 10:32:30','2021-01-10 10:32:30'),(34,545,'Lakme 9 to 5 Complexion Care Face Cream','pc','<strong>Article no: 2047</strong><br><br><strong>Product description:</strong><br><br>Product details of <b>Lakme 9 to 5 BB cream</b> (bright benefit <b>cream</b>) The <b>cream</b> is available in skin tones that work perfectly well for all WORLD skin tones. ... <b>LAKMÉ BB Cream</b> Combines the goodness of your daily skin <b>cream</b> with just the right touch of make-up to give you that perfect look in just a few minutes.<br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Provides UV Protection</span></li><br> 	<li><span class=\"a-list-item\">Moisturizes</span></li><br> 	<li><span class=\"a-list-item\">Conceals</span></li><br> 	<li><span class=\"a-list-item\">Gives Smooth Coverage</span></li><br> 	<li><span class=\"a-list-item\">Lightens Skin</span></li><br> 	<li><span class=\"a-list-item\">Evens skin tone</span></li><br></ul>','en','2021-01-10 10:34:10','2021-01-10 10:34:10'),(35,546,'Dabur Amla Hair oil 200ml','pc','<strong>Article No: 2035</strong><br><br><strong>Product Description</strong><br><br>It is so rich in Vitamin C and anti-oxidant properties that not only does it prevents <b>hair</b> from premature graying but also <b>make</b> them healthy and shining. - <b>Take</b> a small quantity of coconut oil. Put some dry <b>Amla</b> pieces or dry <b>Amla powder</b> in it. Let it <b>turn black</b>','en','2021-01-10 10:35:41','2021-01-10 10:35:41'),(36,547,'Gatsby Hair Gel 150gm','pc','<strong>Article no: 2048</strong><br><h6>product Description:</h6><br>Styling ingredient binds hair closely together, so hairstyle is held for several hours. Spreads and blends well with no stickiness. Gives a natural shine to hair. Easy to wash off.<br><br>Helps create extreme style of your desire. Wet-look shine and supple flow plus compact shape with no hard setting. Create Natural Hairstyles.<br><br>All flavours of Gatsby hair gel Are available here:<br><ul><br> 	<li>soft</li><br> 	<li>Hyper solid</li><br> 	<li>Hard</li><br> 	<li>Super Hard</li><br></ul>','en','2021-01-10 10:38:48','2021-01-21 10:59:30'),(37,548,'KEUNE | Style Defrizz Serum N°17','pc','<strong>Article no: 2049</strong><br><h6 class=\"block-title \">PRODUCT DESCRIPTION:</h6><br>A luxurious <b>serum</b> that smooths frizz and leaves hair polished and shiny, without being greasy or weighed down. Used as a finishing touch when styling, this <b>serum</b> leaves hair healthy, glossy and smooth, with wonderful factor 7 shine. ...<br><ul><br> 	<li>Frizz-free hair that shines.</li><br> 	<li>Hold factor    : 1</li><br> 	<li>Shine factor  : 7 q</li><br></ul><br>Get ready for some smooth moves with N°17 Defrizz Serum – as you calm the frizz down. Used as a finishing touch when styling, this serum leaves hair healthy, glossy and smooth, with wonderful factor 7 shine. Out salon tip? Mix N°17 Defrizz Serum with N°62 Matte Cream to add texture and shine to short or medium length hair.','en','2021-01-10 10:40:19','2021-01-10 10:40:19'),(38,549,'Keune Sleek & Shine Rebonding Conditioner','pc','<strong>Article no: 2050</strong><br><br><strong>Product Description:</strong><br><br>Keune Sleek &amp; Shine Rebonding Conditioner is a repairing formula for hair to make them healthy and strong. It provides damage therapy to the chemically treated hair. The intense formula gives quick repairing treatment to fix the straightened, curled or rebonded hair by deeply conditioning them. It can be used before or after chemical treatment or heat styling of hair. Just in 3 minutes of application time, it strengthens hair, turns them shiny and detangles knots. The light weight conditioner does not leave residue or build-up behind.<br><ul class=\"list__product--listings\"><br> 	<li>Provides deep nourishment and conditioning to rebonded or straightened hair</li><br> 	<li>Repairs damaged and untreated hair structure</li><br> 	<li>Light in weight - does not feel heavy on hair</li><br> 	<li>Leaves no residue behind</li><br> 	<li class=\"\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.74a5606dCixPtE\">Nourish hair</li><br> 	<li class=\"\">With damage thrapy</li><br> 	<li class=\"\">Lightweight, clear formula</li><br> 	<li class=\"\">Works to build strength, detangle, revitalize</li><br></ul>','en','2021-01-10 10:42:42','2021-01-10 10:42:42'),(39,550,'Lofty Multivitamin Cream 500ml','pc','<strong>Article no: 2051</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.60285a35xGxWZB\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">With Sun Block Spf -15</li><br> 	<li class=\"\">500 ml</li><br> 	<li class=\"\">Vitamin C E &amp; A</li><br> 	<li class=\"\">Repairing formula for dead skin</li><br> 	<li class=\"\">Oil free</li><br> 	<li class=\"\">Leave the skin soft and smooth</li><br></ul><br></div><br><div class=\"html-content detail-content\"><br><br>Lofty gives me unmatched fairness. For me it’s my most trusted skin expert, I get perfect glow and perfect even tone.<br><br></div><br></div><br></div>','en','2021-01-10 10:44:11','2021-01-10 10:44:11'),(40,551,'Original Lofty Vitamin E Moisturizer Cream 250 ML','pc','<strong>Article no: 2052</strong><br><br><strong>Product Description:</strong><br><br><b>Lofty Vitamin</b>-<b>E cream</b> ia a general revitalizing <b>cream</b>. Its increases elasticity of skin, repair damaged tissue and removes fine lines. <b>Vitamin E</b> neutralizes free radicals &amp; prevents premature aging. Its regular use keeps skin soft, suppl and wrinkle free.<br><ul class=\"\"><br> 	<li class=\"\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.496e1fc0324Zuo\">Prevents Premature Aging</li><br> 	<li class=\"\">With Sunblock SPF 15</li><br> 	<li class=\"\">For Daily Use</li><br></ul>','en','2021-01-10 10:45:23','2021-01-10 10:45:23'),(41,552,'Nair Rose Hair Removal Spray','pc','<div class=\"mod\" lang=\"en-PK\" data-md=\"61\"><br><div><strong>Article No: 2036</strong></div><br><div></div><br><div class=\"LGOjhe\" role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CA4QAA\"><br><div class=\"d9FyLd XcVN5d\"><strong>Product description</strong></div><br><div></div><br><span class=\"ILfuVd\"><span class=\"hgKElc\"><b>Nair</b> has launched <b>hair removal sprays</b> which is in the form of a <b>spray</b> and can help in <b>removing hair</b> from difficult or large areas. With baby oil it is meant for all <b>hair</b> types and will offer a radiant, silky-smooth skin.</span></span><br><br></div><br></div><br><div class=\"g\"><br><div class=\"rc\" data-hveid=\"CAgQAA\" data-ved=\"2ahUKEwidpKCgjv3tAhW_QUEAHVxiAcMQFSgAMAJ6BAgIEAA\"></div><br></div>','en','2021-01-10 10:47:35','2021-01-10 10:47:35'),(42,553,'Heaven Dove Whitening Cream Professional','pc','<strong>Article no: 2053</strong><br><br><strong>product description:</strong><br><br>Gives a shining, Instant white and moisturized skin, <b>Cream</b> helps protect skin from sun damage with SPF 50, It can totally treat all skin types for a fascinating aura of bright skin and skin smoothness.<br><br>• Gender: Female<br>• Item Type: Cream<br>• Model Number: Shea Butter Moist Body Lotion<br>• Ingredient: BUTYROSPERMUM PARKII (SHEA BUTTER), HYDROGENATED OLIVE OIL<br>• Country/Region of Manufacture: China<br>• Use: Body<br>• NET WT: 250g<br>• Feature: Moisturizing','en','2021-01-10 10:50:36','2021-01-10 10:50:36'),(43,554,'Nair Sensitive Hair Removal Cream','pc','<strong>Article No: 2037</strong><br><br><strong>Product Description</strong><br><br><b>Nair</b> Sensitive <b>Hair Removal Cream</b> with moisturising Sweet Almond Oil is specially formulated for sensitive skin and is gentle enough to use anywhere on the body – legs, bikini area, underarms and face. ... Perfect for sensitive skin, <b>Nair</b> Sensitive <b>Hair Removal Cream</b> will moisturise your skin leaving it soft and smooth.','en','2021-01-10 10:52:25','2021-01-10 10:52:25'),(44,555,'Nair Hair Remover Lotion','pc','<strong>Article No: 2038</strong><br><br><strong>Product Description</strong><br><br>Get ready to bare more and wear less, <b>Nair Lotion</b> with Cocoa Butter will beautify your skin. With a seductive scent and skin-nourishing <b>ingredients</b>, this <b>hair removal lotion</b> lasts days longer than shaving and is infused with natural cocoa butter. ... Within minutes youll have smooth, clean skin without nicks or bumps.','en','2021-01-10 10:54:42','2021-01-10 10:54:42'),(45,556,'Fair & Lovely with Vitamins And Lotus Extracts Cream','pc','<strong>Article no: 2054</strong><br><h6 class=\"default\">Product description:</h6><br>Fair &amp; Lovely is a face cream with the hero ingredient of multivitamins, which are understood to work from within to give skin a blemish-free glow along with a smooth and soft texture. Women today want more skin quality led benefits like a radiant glow, skin that is free from blemishes and imperfections. While this new aspiration of skin, has visible radiance, it is also strongly associated with the quality of skin itself. Fair &amp; Lovely offers its consumer a high definition glow - which comprises skin clarity, more radiance and skin that is free from imperfections. Infused with Multivitamins - Vitamin B3, C, E and B6 and Niacinamide, it brightens your skin, reduces inflammation and hyperpigmentation and smoothens overall skin texture.<br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Skin Clarity: Reduce dark marks</span></li><br> 	<li><span class=\"a-list-item\">Brightness: Brighten skin</span></li><br> 	<li><span class=\"a-list-item\">Radiance: Illuminate skin inside out</span></li><br> 	<li><span class=\"a-list-item\">Even tone: Even skin tone. HD Glow: High Definition Glow</span></li><br> 	<li><span class=\"a-list-item\">Ingredients: Aqua, Palmitic Acid and Stearic Acid, Niacinamide, Glycerine, Dimethicone, EthylhexylMethoxycinnamate, Butyl Methoxydibenzoylmethane, Tianium Dioxide, Sodium Ascorbyl Phosphate, Isopropyl Myristate, Tocopheryl Acetate, Allantoin, Pyridoxine Hydrochloride, Cetyl Alcohol, Titanium Dioxide and Aluminum Hydroxide and Stearic Acid, Phenoxyethanol, Methyl Paraben, Propyl Paraben, Potassium Hydroxide, Disodium EDTA, Perfume</span></li><br></ul>','en','2021-01-10 10:56:07','2021-01-10 10:56:07'),(46,557,'Coswin Aloe Vera Gel 260ml','pc','<strong>Article No: 2039</strong><br><br><strong>Product Description:</strong><br><br><b>Coswin Aloe Vera Gel</b> Uses Pure Bioactive Organic <b>Aloe Vera</b>. This Ensures That The Plants Beneficial Polysaccharide Levels Are Captured &amp; Maximised To Help Soothe, Moisturise &amp; Restore Dry &amp; Sun Exposed Skin.','en','2021-01-10 11:01:50','2021-01-21 11:01:10'),(47,558,'Livon Hair Serum 50ml','pc','<div role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CA0QAA\"><strong>Article No: 2040</strong></div><br><div role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CA0QAA\"></div><br><div class=\"mod\" lang=\"en-PK\" data-md=\"61\"><br><div role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CA0QAA\"><strong>Product Description</strong></div><br><div role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CA0QAA\"></div><br><div class=\"LGOjhe\" role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CA0QAA\"><span class=\"ILfuVd\"><span class=\"hgKElc\"><b>Livon</b> Hair <b>Serum</b> is a lightweight, non-greasy solution that reduces breakage and gives you soft and silky hair. It also reduces frizz and leaves behind a light floral fragrance. It works well as a heat protectant.</span></span></div><br></div><br><div class=\"g\"><br><div class=\"rc\" data-hveid=\"CAgQAA\" data-ved=\"2ahUKEwjOtPmQkf3tAhWknVwKHVbGACwQFSgAMAJ6BAgIEAA\"></div><br></div>','en','2021-01-10 11:04:22','2021-01-10 11:04:22'),(48,559,'Jolen creme bleach pot 30ml','pc','<strong>Article no: 2055</strong><br><br><b>Product Description:</b><br><br>Go confidently with <b>Jolen Creme Bleach</b> Original Formula! Its the simplest and safest way to lighten unwanted <b>hair</b> so that it blends beautifully with your natural skin tone, making it virtually invisible! And its perfect to lighten your eyebrows to match your <b>hair</b> color!<br><ul class=\"list__product--listings\"><br> 	<li>Exclusive no-drip formula</li><br> 	<li>Fast action bleach</li><br> 	<li>Mixing cup included</li><br> 	<li>Suitable for face and body</li><br></ul>','en','2021-01-10 11:05:35','2021-01-10 11:05:35'),(49,560,'Livon Hair Serum Reviews 100ml','pc','<div role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CA0QAA\"><strong>Article No: 2041</strong></div><br><div role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CA0QAA\"></div><br><div role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CA0QAA\"><strong>Product Description</strong></div><br><div role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CA0QAA\"></div><br><div class=\"mod\" lang=\"en-PK\" data-md=\"61\"><br><div class=\"LGOjhe\" role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CA0QAA\"><span class=\"ILfuVd\"><span class=\"hgKElc\"><b>Livon</b> Hair <b>Serum</b> is a lightweight, non-greasy solution that reduces breakage and gives you soft and silky hair. It also reduces frizz and leaves behind a light floral fragrance. It works well as a heat protectant.</span></span></div><br></div><br><div class=\"g\"><br><div class=\"rc\" data-hveid=\"CAgQAA\" data-ved=\"2ahUKEwjOtPmQkf3tAhWknVwKHVbGACwQFSgAMAJ6BAgIEAA\"></div><br></div>','en','2021-01-10 11:09:33','2021-01-10 11:09:33'),(50,561,'Olay Active Hydrating Beauty Fluid Lotion','pc','<strong>Article No: 2042</strong><br><br><strong>Product Description</strong><br><br>Replenish skin with 48 hours of moisture with the original <b>Pink</b> Beauty Fluid, <b>Olays</b> Active Hydrating Moisturizing <b>Lotion</b>. This hydrating and non-greasy face <b>lotion</b> restores skins moisture to reduce the appearance of fine lines and wrinkles without clogging pores.','en','2021-01-10 11:11:14','2021-01-10 11:11:14'),(51,562,'Eveline White Prestige 4D Whitening Day Cream','pc','<strong>Article no: 2056</strong><br><br><strong>Product description:</strong><br><br>Hyaluronic Acid &amp; Lumiskin™ 4D White Complex.<br>UVA / UVB Filters.<br>Re-lighting &amp; moisturising 48h.<br>Nn-greasy &amp; light formula.<br>For oily and combination skin.<br><br>48-h Professional Whitening Program – day by day skin becomes lighter and more radiant!<br>White Prestige 4D cosmetics series is the innovative treatment, acting in four dimensions: lightens complexion, evens out its tone and counteracts excessive pigmentation for up to 48h after application.','en','2021-01-10 11:12:54','2021-01-10 11:12:54'),(52,563,'Olay Day Cream Natural White','pc','<strong>Article No: 2043</strong><br><br><strong>Product Description</strong><br><br>Your skin is vulnerable to the suns UV rays and signs of skin darkening during the <b>day</b>, <b>Olay</b> Glowing Fairness <b>cream</b> helps prevent skin tanning and gives you soft, glowing and brighter looking skin .It is powered with a tri vitamin boost of B3, pro B5 and E and SPF 24/PA++','en','2021-01-10 11:14:39','2021-01-10 11:14:39'),(53,564,'Eveline White Prestige 4D Intensive Whitening Night Cream','pc','<strong>Article no: 2057</strong><br><br><strong>Product description:</strong><br><br>White Prestige 4D Hyaluronic Acid &amp; Lumiskin™ 4D White Complex.<br><br>Re-lighting &amp; regeneration.<br>Non-greasy light formula.<br>For oily and combination skin.<br><br>48-h Professional Whitening Program – day by day skin becomes lighter and more radiant!<br><br>White Prestige 4D cosmetics series is the innovative treatment, acting in four dimensions: lightens complexion, evens out its tone and counteracts excessive pigmentation for up to 48h after application.','en','2021-01-10 11:16:44','2021-01-10 11:16:44'),(54,565,'Eveline White Prestige 4D Whitening Facial Wash Gel','pc','<strong>Article no: 2058</strong><br><h6 class=\"subtitle\">PRODUCT DESCRIPTION:</h6><br><ul><br> 	<li>White Prestige 4D Advanced Technology</li><br> 	<li>Lumiskin 4D White Complex</li><br> 	<li>Re-lights, perfectly cleanses and refreshes effectively reduces hyperpigmented areas for oily and combination skin</li><br></ul><br>Gel Blanchissant NettoyantWhite Prestige 4D cosmetics series is the innovative treatment, acting in four dimensions: lightens complexion, evens out its tone and counteracts excessive pigmentation for up to 48h after application.','en','2021-01-10 11:18:05','2021-01-10 11:18:05'),(55,566,'EVELINE white prestige 4d Multifunction BB Cream','pc','<strong>Article no: 2059</strong><br><h6 class=\"widget-title\">Product description:</h6><br>HYALURONIC ACID &amp; Lumiskin™4D White Complex All in one Lighter skin Perfect coverage Advanced skincare BABY FACE™ eﬀect SPF 15 For all skin types INTENSIVE HYDRATION 48h Flawless skin in just one step! WHITENS &amp; LIGHTENS: Whitening Multifunction BB Cream (Blemish Base) based on unique whitening complex Lumiskin™ 4D White Complex instantly lightens, moisturizes, smoothens, and perfectly blends with complexion, ensuring immediate BABY FACE™ eﬀect of ideally smooth skin. Innovative active ingredients reﬂect light and neutralize grey tone thus skin becomes radiant. Velvety texture spreads quickly, eﬀectively conceals imperfections making skin look relaxed and regain natural glow and energy.<br><ul class=\"\"><br> 	<li class=\"\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.61493228PKFwEF\">Multi-function BB Cream 50ml</li><br></ul>','en','2021-01-10 11:19:58','2021-01-10 11:19:58'),(56,567,'Heaven Dove Anti-Acne Cream','pc','<strong>Article no: 2060</strong><br><br><strong>Product description:</strong><br><br>Heaven Dove Anti Acne Clean Pox Smooth Cleanser 120gm.<br><ul><br> 	<li>Applied For Face.</li><br> 	<li>Used For Cleansing.</li><br> 	<li>For All Skin Types.</li><br> 	<li>Suitable For Women.</li><br> 	<li>Lotion Form.</li><br></ul>','en','2021-01-10 11:21:10','2021-01-10 11:21:10'),(57,568,'Mistine Acne Clear Facial Foam','pc','<strong>Article no: 2061</strong><br><h6 class=\"subtitle\">PRODUCT DESCRIPTION:</h6><br><div class=\"ProductDescriptionContainer prodAccordionContent\"><br><br>Facial Cleansing Foam Effectively clean your face with 5 valuable ingredients. Your face will noticeably cleaner and visibly clearer from acne.<br><ul><br> 	<li>Comedolytic against impurities</li><br> 	<li>Oil control formula</li><br> 	<li>Highly moisturizing effect</li><br> 	<li>Suitable for acne scar</li><br> 	<li>Special formula for acne skin</li><br></ul><br></div>','en','2021-01-10 11:46:11','2021-01-10 11:46:11'),(58,569,'Silky Cool Aloe Vera Gel For Face','pc','<strong>Article no: 2062</strong><br><br><strong>Product description:</strong><br><br><strong>Silky Cool Aloe Vera Gel For Face 350ml</strong><br><ul><br> 	<li><br><ul><br> 	<li>For All Skin Type</li><br> 	<li>Sooting</li><br> 	<li>moisturizing</li><br> 	<li>After-sun care</li><br> 	<li>Skin oil control</li><br> 	<li>Made in UAE</li><br></ul><br></li><br></ul>','en','2021-01-10 11:47:55','2021-01-10 11:47:55'),(59,570,'Dove White Beauty Bar Gentle Cleanser','pc','<strong>Article no: 2063</strong><br><br><strong>Product Description:</strong><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">LOCK-IN MOISTURE: The classic Dove White Beauty Bar nourishes and pampers skin to give you softer, smoother, more radiant-looking skin than ordinary bar soap.</span></li><br> 	<li><span class=\"a-list-item\">RICH HYDRATION: Help maintain your skin’s natural moisture barrier and hydration with this beauty bar ideal to use as a facial cleanser and body wash for sensitive skin.</span></li><br></ul><br>Thats because <b>Dove</b> isnt a <b>soap bar</b>, its a <b>Beauty Bar</b>. While ordinary <b>soaps</b> can strip skin of essential nutrients, <b>Dove Beauty Bar</b> has mild cleansers to care for skin as it cleans. With our ¼ moisturizing cream, <b>Dove Beauty Bar</b> leaves your face and body feeling soft, smooth, and more radiant than ordinary <b>soap</b>.<br><br>&nbsp;','en','2021-01-10 11:49:02','2021-01-10 11:49:02'),(60,571,'Dove Pink Beauty Bar Gentle Cleanser','pc','<strong>Article no: 2064</strong><br><br><strong>Product description:</strong><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">LOCK-IN MOISTURE: The classic Dove Beauty Bar, with a delicate blush of color, nourishes and pampers skin to give you softer, smoother, more radiant-looking skin than ordinary bar soap.</span></li><br> 	<li><span class=\"a-list-item\">RICH HYDRATION: Help maintain your skin’s natural moisture barrier and hydration with this beauty bar ideal to use as a facial cleanser and body soap.</span></li><br> 	<li><span class=\"a-list-item\">#1 DERMATOLOGIST RECOMMENDED: Formulated with mild cleansers and ¼ moisturizing cream, Dove moisturizing beauty bar leaves skin instantly soft and smooth with lasting nourishment.</span></li><br> 	<li><span class=\"a-list-item\">GENTLE CLEANSING The luxurious lather of this Dove Beauty Bar won’t dry skin like ordinary bar soap. Dove Beauty Bar is also effective at cleansing hands.</span></li><br> 	<li><span class=\"a-list-item\">THOUGHTFULLY MADE: This beauty bar is PETA-certified cruelty-free so you can feel good about switching from ordinary soap to Dove Beauty Bar.</span></li><br> 	<li><span class=\"a-list-item\">CARE AS YOU CLEAN: The cleansing efficacy and skincare you need, all in one product.</span></li><br></ul>','en','2021-01-10 11:50:17','2021-01-10 11:50:17'),(61,572,'Pears Yellow Natural Glycerine Transparent Soap','pc','<strong>Article no: 2065</strong><br><br><strong>Product description:</strong><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Gentle Care Transparent Bar by Pears for Unisex - 4.4 oz Soap</span></li><br> 	<li><span class=\"a-list-item\">Gentle Care Transparent Bar by Pears for Unisex</span></li><br> 	<li><span class=\"a-list-item\">A gentle soap based on glycerine and other natural products</span></li><br> 	<li class=\"\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.71e64a29CVzOWs\">Brand: Pears</li><br> 	<li class=\"\">Pears Natural Glycerin Transparent Soap is a natural way to attain clean, healthy-looking skin</li><br> 	<li class=\"\">It is hypoallergenic and Non-Comedogenic</li><br> 	<li class=\"\">It contains high-quality skincare ingredients like glycerin and natural oils</li><br> 	<li class=\"\">Pears Soap is specially made to take care of even sensitive and delicate skin</li><br> 	<li class=\"\">Size: 125 G</li><br></ul>','en','2021-01-10 11:52:48','2021-01-10 11:52:48'),(62,573,'Pears Oil Clear Green Hypoallergenic Soap','pc','<strong>Article no: 2066</strong><br><br><strong>Product description:</strong><br><div class=\"overall-review\"><br><div class=\"pros_cons\"><br><div class=\"pros-bar\"><br><ul><br> 	<li>Oil-clear formula</li><br> 	<li>Imparts natural glow</li><br> 	<li>Controls sebum production</li><br> 	<li>Affordable</li><br></ul><br></div><br></div><br></div><br><div><br><div class=\"show-read-more\"><br><p class=\"more\">Pears oil control soap is a green-colored transparent soap. It is known to treat and control oil production and excess sebum. Oil control also helps to control pimples and acne. It has a mild fragrance and is affordable. It can be used to fight excess sebum Production and also acne.</p><br><br></div><br></div>','en','2021-01-10 11:54:37','2021-01-10 11:54:37'),(63,574,'Pears Blue Soap with Mint Extract Soap','pc','<strong>Article no: 2067</strong><br><br><strong>Product Description:</strong><br><br><b>Pears</b> Transparent <b>Soap Blue</b> pamper your skin with this Pure and Gentle <b>soap</b> bar from <b>Pears</b>. Made with the goodness of natural oils and pure glycerin, this <b>soap</b> bar moisturizes your skin and gives it a soft and supple feel. ... This <b>soap</b> also retains the natural oil of your skin to not leave it dry after a bath.<br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Mint Extracts Keep Your Skin Soft &amp; Fresh During Summers</span></li><br> 	<li><span class=\"a-list-item\">Pure Glycerin In Pears Preserves Your SkinS Natural Moisture To Keep It, Young</span></li><br> 	<li><span class=\"a-list-item\">Keeps Your Skin Young</span></li><br> 	<li><span class=\"a-list-item\">Keeps Your Skin Moisturised</span></li><br> 	<li><span class=\"a-list-item\">Locks In The Natural Moisture Of Your Skin Original Glycerine Bar</span></li><br></ul>','en','2021-01-10 11:55:56','2021-01-10 11:55:56'),(64,575,'Molfix No. 1 Newborn, 2-5 KG, 84-Pack','pc','<strong>Article no: 5001</strong><br><br><strong>Product Description:</strong><br><br><b>Molfix</b> baby diapers are produced with the utmost care, they are extremely gentle on your babys sensitive skin, and their green absorbent layer provides perfect dryness while the outer surface of the <b>diaper</b> protects the skin.<br><ul><br> 	<li>Newborn 2-5KG / 84 pcs</li><br> 	<li>Comfortable and Flexible Central Elastic System</li><br></ul><br><strong>•</strong> 3D Technology preventing sagging; More Elastic Side Bands<br><strong>•</strong> Hypoallergenic Latex Paraben and BPA Free.<br><strong>•</strong> Packing May be Changed Available in Market.<br><br><strong>•</strong> Double Anti Leakage Elastic Barriers<br><strong>•</strong> Aloe Vera and Chamomile Extracts that prevents rashes<br><strong>•</strong> Air Soft Technology to keep it breathable<br><strong>•</strong> Anti-Leakage Elastic Barriers<br><strong>•</strong> No Sagging<br><strong>•</strong> Skin Friendly Approved.<br><br>&nbsp;','en','2021-01-10 11:59:30','2021-01-10 11:59:30'),(65,576,'Molfix No. 2 Mini, 3-6 KG, 80-Pack','pc','<strong>Article no: 5002</strong><br><br><strong>Product Description:</strong><br><br><b>Molfix</b> baby diapers are produced with the utmost care, they are extremely gentle on your baby’s sensitive skin, and their green absorbent layer provides perfect dryness while the outer surface of the <b>diaper</b> protects the skin.<br><ul><br> 	<li>Mini 3-6 KG / 80 pcs</li><br> 	<li>Comfortable and Flexible Central Elastic System</li><br></ul><br><strong>•</strong> 3D Technology preventing sagging; More Elastic Side Bands<br><strong>•</strong> Hypoallergenic Latex Paraben and BPA Free.<br><strong>•</strong> Packing May be Changed Available in Market.<br><br><strong>•</strong> Double Anti Leakage Elastic Barriers<br><strong>•</strong> Aloe Vera and Chamomile Extracts that prevents rashes<br><strong>•</strong> Air Soft Technology to keep it breathable<br><strong>•</strong> Anti-Leakage Elastic Barriers<br><strong>•</strong> No Sagging<br><strong>•</strong> Skin Friendly Approved.','en','2021-01-10 12:00:35','2021-01-10 12:00:35'),(66,577,'Molfix No. 3 Midi, 4-9 KG, 64-Pack','pc','<strong>Article no: 5003</strong><br><br><strong>Product Description:</strong><br><br><b>Molfix</b> baby diapers are produced with the utmost care, they are extremely gentle on your baby’s sensitive skin, and their green absorbent layer provides perfect dryness while the outer surface of the <b>diaper</b> protects the skin.<br><ul><br> 	<li>Midi 4-9KG / 64 pcs</li><br> 	<li>Comfortable and Flexible Central Elastic System</li><br></ul><br><strong>•</strong> 3D Technology preventing sagging; More Elastic Side Bands<br><strong>•</strong> Hypoallergenic Latex Paraben and BPA Free.<br><strong>•</strong> Packing May be Changed Available in Market.<br><br><strong>•</strong> Double Anti Leakage Elastic Barriers<br><strong>•</strong> Aloe Vera and Chamomile Extracts that prevents rashes<br><strong>•</strong> Air Soft Technology to keep it breathable<br><strong>•</strong> Anti-Leakage Elastic Barriers<br><strong>•</strong> No Sagging<br><strong>•</strong> Skin Friendly Approved.','en','2021-01-10 13:30:28','2021-01-10 13:30:28'),(67,578,'Molfix No. 4 maxi, 7-14 KG, 58-Pack','pc','<strong>Article no: 5004</strong><br><br><strong>Product Description:</strong><br><br><b>Molfix</b> baby diapers are produced with the utmost care, they are extremely gentle on your baby’s sensitive skin, and their green absorbent layer provides perfect dryness while the outer surface of the <b>diaper</b> protects the skin.<br><ul><br> 	<li>Maxi 7-14KG / 58 pcs</li><br> 	<li>Comfortable and Flexible Central Elastic System</li><br></ul><br><strong>•</strong> 3D Technology preventing sagging; More Elastic Side Bands<br><strong>•</strong> Hypoallergenic Latex Paraben and BPA Free.<br><strong>•</strong> Packing May be Changed Available in Market.<br><br><strong>•</strong> Double Anti Leakage Elastic Barriers<br><strong>•</strong> Aloe Vera and Chamomile Extracts that prevents rashes<br><strong>•</strong> Air Soft Technology to keep it breathable<br><strong>•</strong> Anti-Leakage Elastic Barriers<br><strong>•</strong> No Sagging<br><strong>•</strong> Skin Friendly Approved.','en','2021-01-10 13:53:33','2021-01-10 13:53:33'),(68,579,'Molfix No. 5 junior, 11-18 KG, 52-Pack','pc','<strong>Article no: 5005</strong><br><br><strong>Product Description:</strong><br><br><b>Molfix</b> baby diapers are produced with the utmost care, they are extremely gentle on your baby’s sensitive skin, and their green absorbent layer provides perfect dryness while the outer surface of the <b>diaper</b> protects the skin.<br><ul><br> 	<li>junior 11-18KG / 52 pcs</li><br> 	<li>Comfortable and Flexible Central Elastic System</li><br></ul><br><strong>•</strong> 3D Technology preventing sagging; More Elastic Side Bands<br><strong>•</strong> Hypoallergenic Latex Paraben and BPA Free.<br><strong>•</strong> Packing May be Changed Available in Market.<br><br><strong>•</strong> Double Anti Leakage Elastic Barriers<br><strong>•</strong> Aloe Vera and Chamomile Extracts that prevents rashes<br><strong>•</strong> Air Soft Technology to keep it breathable<br><strong>•</strong> Anti-Leakage Elastic Barriers<br><strong>•</strong> No Sagging<br><strong>•</strong> Skin Friendly Approved.','en','2021-01-10 14:00:30','2021-01-10 14:00:30'),(69,580,'Molfix No. 6 Extra large, 15+ KG, 46-Pack','pc','<strong>Article no: 5006</strong><br><br><strong>Product Description:</strong><br><br><b>Molfix</b> baby diapers are produced with the utmost care, they are extremely gentle on your baby’s sensitive skin, and their green absorbent layer provides perfect dryness while the outer surface of the <b>diaper</b> protects the skin.<br><ul><br> 	<li>Extra large  15+KG / 46 pcs</li><br> 	<li>Comfortable and Flexible Central Elastic System</li><br></ul><br><strong>•</strong> 3D Technology preventing sagging; More Elastic Side Bands<br><strong>•</strong> Hypoallergenic Latex Paraben and BPA Free.<br><strong>•</strong> Packing May be Changed Available in Market.<br><br><strong>•</strong> Double Anti Leakage Elastic Barriers<br><strong>•</strong> Aloe Vera and Chamomile Extracts that prevents rashes<br><strong>•</strong> Air Soft Technology to keep it breathable<br><strong>•</strong> Anti-Leakage Elastic Barriers<br><strong>•</strong> No Sagging<br><strong>•</strong> Skin Friendly Approved.','en','2021-01-10 14:07:48','2021-01-10 14:07:48'),(70,490,'Nivea Soft Cream 200ml','pc','<strong>Article No: 2029</strong><br><br><strong>Product Description</strong><br><br>Enriched with Jojoba oil and Vitamin E, <b>NIVEA Soft</b> is an invigorating and fast absorbing moisture <b>cream</b> that refreshes your skin, leaving a unique fragrance and making it smooth, <b>soft</b>, supple and healthy. <b>Use</b> it on your dry hands and chapped feet during the chilled winter days to obtain great results.','en','2021-01-10 14:10:42','2021-01-10 14:10:42'),(73,493,'Lion Star Lunch Box BC-17','pc','<strong>Article no: BC-17</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box BC-17 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-10 14:23:12','2021-01-10 14:23:12'),(74,494,'Lion Star Lunch Box FB-1','pc','<strong>Article no: FB-1</strong><br><br><strong>Product description:</strong><br><br>Some different colors of lunch box FB-1 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-10 14:26:53','2021-01-10 14:26:53'),(75,495,'Lion Star Lunch Box KB-1','pc','<strong>Article no: KB-1</strong><br><br>Some different colors of lunch box KB-1 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-10 14:29:51','2021-01-10 14:29:51'),(76,496,'Lion Star Lunch Box MC-4','pc','<strong>Article no: MC-4</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box MC-4 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-10 14:39:20','2021-01-10 14:39:20'),(77,497,'Lion Star Lunch Box MC-6','pc','<strong>Article no: MC-6</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box MC-6 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-10 14:43:45','2021-01-10 14:43:45'),(78,498,'Lion Star Lunch Box MC-8','pc','<strong>Article no: MC-8</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box MC-8 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-10 14:46:21','2021-01-10 14:46:21'),(79,499,'Lion Star Lunch Box MC-9','pc','<strong>Article no: MC-9</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box MC-9 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-10 14:50:27','2021-01-10 14:50:27'),(80,500,'Lion Star Lunch Box MC-24','pc','<strong>Article no: MC-24</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box MC-24 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-10 14:53:29','2021-01-10 14:53:29'),(81,501,'Lion Star Lunch Box MC-26','pc','<strong>Article no: MC-26</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box MC-26 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-10 14:56:36','2021-01-10 14:56:36'),(82,502,'Lion Star Lunch Box MC-32','pc','<strong>Article no: MC-32</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box MC-32 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-10 15:00:29','2021-01-10 15:00:29'),(83,503,'Lion Star Lunch Box MC-33','pc','<strong>Article no: MC-33</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box MC-33 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-10 15:03:38','2021-01-10 15:03:38'),(84,504,'Lion Star Lunch Box MC-36','pc','<strong>Article no: MC-36</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box MC-36 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-10 15:06:07','2021-01-10 15:06:07'),(85,505,'Lion Star Lunch Box SB-13','pc','<strong>Article no: SB-13</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box SB-13 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-10 15:12:26','2021-01-10 15:12:26'),(86,506,'Lion Star Lunch Box SB-14','pc','<strong>Article no: SB-14</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box SB-14 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-10 15:13:10','2021-01-10 15:13:10'),(87,507,'Lion Star Lunch Box SB-32','pc','<strong>Article no: SB-32</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box SB-32 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-10 15:16:54','2021-01-10 15:16:54'),(88,508,'Lion Star Lunch Box SB-33','pc','<strong>Article no: SB-33</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box SB-33 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-10 15:19:51','2021-01-10 15:19:51'),(89,509,'Lion Star Water Bottle HU-1','pc','<strong>Article no: HU-1</strong><br><br><strong>Product Description:</strong><br><br>Two gorgeous and attractive colors of water bottle HU-1 are available here:<br><ul><br> 	<li>Green</li><br> 	<li>Orange</li><br></ul>','en','2021-01-10 15:21:27','2021-01-10 15:21:27'),(90,510,'Lion Star Water Bottle HU-2','pc','<strong>Article no: HU-2</strong><br><br><strong>Product Description:</strong><br><br>Two gorgeous and attractive colors of water bottle HU-2 are available here:<br><ul><br> 	<li>Green</li><br> 	<li>Orange</li><br></ul>','en','2021-01-10 15:23:10','2021-01-10 15:23:10'),(91,511,'Lion Star Water Bottle HU-3','pc','<strong>Article no: HU-3</strong><br><br><strong>Product Description:</strong><br><br>Two gorgeous and attractive colors of water bottle HU-3 are available here:<br><ul><br> 	<li>Green</li><br> 	<li>Orange</li><br></ul>','en','2021-01-11 01:07:58','2021-01-11 01:07:58'),(92,295,'Pure Black Deluxe Limited Edition For Men','pc','<strong>Article no: 1001</strong><br><br>It contains <b>notes</b> of sandalwood, citruses, and lavender. It is an exceptionally potent aroma that also makes it great for a date night. The brand behind <b>Pure Black</b> is Creation Lamis. <b>Perfumes</b> made from this brand are crafted with high-quality ingredients.','en','2021-01-11 01:13:32','2021-01-11 01:13:32'),(93,296,'Pure Blue Deluxe Edition For Men','pc','<strong>Article no: 1002</strong><br><div class=\"d9FyLd XcVN5d\"><b>Pure Blue Cologne</b></div><br><span class=\"hgKElc\"><b>Pure Blue</b> provides a perfect complement to the self-sure and confident man. This lively <b>cologne</b> features varied accords of fruity, musky, and floral <b>notes</b> that make for a versatile everyday <b>fragrance</b>. Top <b>notes</b> include bergamot, cardamom, and mandarin orange for an immediate bracing effect.</span>','en','2021-01-11 01:14:35','2021-01-11 01:14:35'),(94,297,'Royal For Men','pc','<strong>Article no: 1003</strong><br><div class=\"mod\" lang=\"en-PK\" data-md=\"61\"><br><div class=\"LGOjhe\" role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CAYQAA\"><span class=\"ILfuVd\"><span class=\"hgKElc\"><b>Royal</b> For Men By <b>Sellion</b> This wonderful <b>fragrance</b> is an intense and deep <b>fragrance</b> that is enchanting and invigorating. This <b>fragrance</b> has been crafted, successful, and hardworking for todays age. ... The <b>fragrance</b> blends in aromatic accords to create a contrast that is hard to miss.</span></span></div><br></div><br><div class=\"g\"><br><div class=\"rc\" data-hveid=\"CAQQAA\" data-ved=\"2ahUKEwiuhInb2_DtAhVGfMAKHRlNA2YQFSgAMAJ6BAgEEAA\"></div><br></div>','en','2021-01-11 01:15:53','2021-01-11 01:15:53'),(95,298,'Everyone Deluxe Limited Edition For Men','pc','<strong>Article no: 1004</strong><br><br><b>Everyone Perfume</b> by Creation Lamis, A green <b>scent</b> that marries with citrusy accords, <b>Everyone</b> is a Unisex <b>perfume</b> that provides users with an exciting and fresh aroma. Its stimulating opening starts with top <b>notes</b> of bergamot, pineapple, cardamom, mandarin and lemon.<br><br>&nbsp;','en','2021-01-11 01:16:59','2021-01-11 01:16:59'),(96,299,'Havoc Silver Atomiseur For Women','pc','<strong>Article no: 1005</strong><br><br><b>Havoc</b> is classified as a gorgeous powdery mossy, green, aldehydic chypre with a floral that begins with a tantalizing floral creme broule.<br>...<br><b>Havoc Silver</b> Eau de Toilette - 75 ml (For Women)','en','2021-01-11 01:18:22','2021-01-11 01:18:22'),(97,300,'Havoc Gold Atomiseur For Men','pc','<strong>Article no: 1006</strong><br><br>KEY <b>NOTES</b>: Cypress, bergamot, cedar, oakwood ABOUT THE <b>FRAGRANCE</b>: A beguiling blend of classic citrus with bold aromatic woods create a captivating Citrus Oriental.','en','2021-01-11 01:19:17','2021-01-11 01:19:17'),(98,301,'Shirley May Black Car For Men','pc','<strong>Article no: 1007</strong><br><ul><br> 	<li>Quantity Perfume - 100 ml</li><br> 	<li>Quantity Body Spray - 75 ml</li><br> 	<li>Good fragrance</li><br> 	<li>Long lasting</li><br> 	<li>Safe On Skin</li><br> 	<li>Best for gift</li><br> 	<li>Fragrance Notes - Top Notes - Bergamot, Lemon, Passion fruit</li><br> 	<li>Heart Notes - Basil, Patchouli</li><br> 	<li>Base Notes - Cedar, Sandalwood</li><br></ul>','en','2021-01-11 01:20:28','2021-01-11 01:20:28'),(99,302,'Shirley May Black Market For Men','pc','<strong>Article no: 1008</strong><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Long lasting</li><br> 	<li class=\"\">100 ml</li><br> 	<li class=\"\">Refreshing scent</li><br></ul><br></div><br><div class=\"html-content detail-content\">Shirley May Black Market Perfume For Men - 100ml</div>','en','2021-01-11 01:21:43','2021-01-11 01:21:43'),(100,303,'Forever For Men','pc','<strong>Article no: 1009</strong><br><ul class=\"\"><br> 	<li class=\"\">Volume: 100ml</li><br> 	<li class=\"\">Type: Eau De Parfum Spray</li><br> 	<li class=\"\">Ingredients: Alcohol Denat, Aqua(Water), Parfum(Fragrance), Amyl cinnamal, Benzyl alcohol, Cinnamyl Alcohol, Citral, Eugenol, Hydroxycitronellal, Isoeugenol, Amyl Cinnamyl etc.</li><br> 	<li class=\"\">Made in UAE</li><br></ul>','en','2021-01-11 01:22:46','2021-01-11 01:22:46'),(101,304,'Gambit Perfume For Men and Women','pc','<strong>Article no: 1010</strong><br><br>Additional Specification; Shipment Info &amp; refund policy; Reviews. Gambit Eau De Toilette Perfume Spray – 100ml is made in UAE.<br><br>Gambit Perfume For Men and Women is good for all fragrances and best results.','en','2021-01-11 01:24:11','2021-01-11 01:24:11'),(102,305,'Rasasi Secret Perfume for Women\'s','pc','<strong>Article no: 1011</strong><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">75 ml</li><br> 	<li class=\"\">For Women</li><br> 	<li class=\"\">Eau De Parfum</li><br> 	<li class=\"\">Long Lasting Fragrance</li><br></ul><br></div><br><div class=\"html-content detail-content\">Introducing a sophisticated luxurious fruity floral perfume that reflects the mysterious and emotional side of the secret lady. The fragrance opens with heady peach and sparkling orange notes that are combined with a hint of subtle violet leaves. The heart of this fragrance expresses the sensuality of the perfume blending a refined bouquet of Jasmine, Rose and lily of the valley that naturally evolves into a mysterious base of musk, ceder wood and sandalwood.</div>','en','2021-01-11 01:25:10','2021-01-11 01:25:10'),(103,306,'Blue Lady By Rasasi For Women Eau De','pc','<strong>Article no: 1012</strong><br><br>Blue Lady By <strong>Rasasi</strong> is a classical and cheerful perfume, ideal for ladies who enjoy life. Violet leaf, ylang-ylang, tuberose and orange blossom are at the top of the composition. The heart is filled with peach, plum, narcissus and jasmine, while the base is composed of sandalwood, vetiver, vanilla, amber and musk.','en','2021-01-11 01:26:00','2021-01-11 01:26:00'),(104,307,'Romance for Woman EDP - Eau De','pc','<strong>Article no: 1013</strong><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">ABOUT ROMANCE: Romance is for the woman who loves to explore the world of fantasy who likes to take a voyage to far beyond, it is for the naturally shining woman who enjoys life and fun. Fresh and sparkling top notes lead to a sumptuous bouquet of rose and jasmine,harmoniously combined with the fruity, woody, powdery notes in the dry down</span></li><br> 	<li><span class=\"a-list-item\">TOP NOTES: Rose and jasmine</span></li><br> 	<li><span class=\"a-list-item\">MIDDLE NOTES: Fruity, woody notes</span></li><br> 	<li><span class=\"a-list-item\">BASE NOTES: Powdery notes</span></li><br></ul>','en','2021-01-11 01:26:55','2021-01-11 01:26:55'),(105,308,'Rasasi Romance Forever For Men','pc','<strong>Article no: 1014</strong><br><h5 class=\"list__product--title\">Product Highlights:</h5><br><ul class=\"list__product--listings\"><br> 	<li>Soft and refreshing perfume</li><br> 	<li>Eye-catching rose color</li><br> 	<li>Blend of floral and woodsy accords</li><br> 	<li>Stylishly designed glass flacon</li><br></ul>','en','2021-01-11 01:28:20','2021-01-11 01:28:20'),(106,309,'Rasasi Emotion For Women 50ml','pc','<strong>Article no: 1015</strong><br><h5 class=\"list__product--title\">Product Highlights:</h5><br><ul class=\"list__product--listings\"><br> 	<li>A great traditional fragrance for women</li><br> 	<li>Rich and glamorous</li><br> 	<li>Features an oriental-balsamic composition</li><br> 	<li>Recommended for formal and nighttime occasions</li><br></ul>','en','2021-01-11 01:31:02','2021-01-11 01:31:02'),(107,310,'Rasasi Emotion Masculine Perfume For Men','pc','<strong>Article no: 1016</strong><br><br>Rasasi Emotion Masculine Eau De Parfum let the fragrance of Emotions weave a spell of pure magic after all that is life without Emotions? Live and Feel life....with none other than Rasasi.<br><br>Brand: Rasasi<br><br>Fragrance Perfume: Emotion Homme<br><br>Fragrance: Bergamot, orange blossom. lavender, violet, cinnamon, and rose are at the heart and the base features patchouli, Tonka, sandalwood, amber, and musk.<br><br>Gender: Men<br><br>ML: 100 EDP','en','2021-01-11 02:00:18','2021-01-11 02:00:18'),(108,311,'Rasasi Royale Blue Pour Femme EDP For Men','pc','<strong>Article no: 1017</strong><br><div class=\"d9FyLd XcVN5d\">Product <b>Description</b></div><br><span class=\"hgKElc\">Powerful and masculine is this <b>fragrance</b> from <b>Rasasi</b>, Just the way every man wants his <b>perfume</b> to be. Floral Woody Tone Both playful and serious, the <b>perfume</b> combines floral <b>notes</b> to leave the perfect undertone and intense woody to keep the masculine side highlighted.</span><br><h5 class=\"list__product--title\">Product Highlights:</h5><br><ul class=\"list__product--listings\"><br> 	<li>Long-lasting scent</li><br> 	<li>A feminine Eau de parfum</li><br> 	<li>Blend of woody and spicy notes</li><br> 	<li>Super stylish and feminine fragrance</li><br></ul>','en','2021-01-11 02:02:46','2021-01-11 02:02:46'),(109,312,'Rasasi Royale Masculine French Green - For man','pc','<strong>Article no: 1018</strong><br><h6>Product Description:</h6><br><div class=\"rte\"><br><ul><br> 	<li>Powerful and masculine is this fragrance from Rasasi,</li><br> 	<li>Just the way every man wants his perfume to be.</li><br> 	<li>Royale pour Homme. His quest for a perfect fragrance has now been fulfilled. The fragrance of the Royale…The unimaginable scent with power…lays the stone paved path to overcome the blues. Now he knows looking at the air around him… the scented grasping tendrills...like a feeling,would not leave him through the breaking twisting of a macho mans life; reluctant to part, the fresh smell of Royale. if embraced him all the time, the good feeling...the presence of the real essence of life...around him always. through the lifes tapestry, the Royale..gives him the power to be the ultimate man...The Royale Man.</li><br> 	<li>100% Original product from Rasasi - one of the best perfume brands from the Middle East.</li><br> 	<li>Rasasi Royale Green Masculine EAU DE Toilette 75 ml - For men (2.5 fl. oz.)</li><br></ul><br></div>','en','2021-01-11 02:03:59','2021-01-11 02:03:59'),(110,313,'SHALIS for men by REMY MARQUIS 3.4 OZ. EDT','pc','<strong>Article no: 1019</strong><br><div class=\"d9FyLd XcVN5d\">Product <b>description</b></div><br><span class=\"hgKElc\">Designed for the cavalier <b>man Shalis</b> is a smooth <b>scent</b> with a hint of spice to pique your interest. It has top <b>notes</b> of grapefruit mandarin orange and apple. The heart is mixed with lavender and basil.</span><br><h6>Product details</h6><br><div id=\"detailBullets_feature_div\"><br><ul class=\"a-unordered-list a-nostyle a-vertical a-spacing-none detail-bullet-list\"><br> 	<li><span class=\"a-list-item\"><span class=\"a-text-bold\">Item Weight : </span>1.5 Pounds</span></li><br> 	<li><span class=\"a-list-item\"><span class=\"a-text-bold\">Manufacturer : </span>USA</span></li><br></ul><br></div>','en','2021-01-11 02:05:15','2021-01-11 02:05:15'),(111,314,'Shalis For Woman By Remy Marquis Eau De','pc','<strong>Article no: 1020</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.634452c0b5BVrf\">Product details of Perfume For Women - 50ml</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Long Lasting</li><br> 	<li class=\"\">Floral and Musky</li><br> 	<li class=\"\">Friendly Fragrance</li><br> 	<li class=\"\">Safe on Skin</li><br> 	<li class=\"\">Daily Use</li><br></ul><br></div><br><div class=\"html-content detail-content\"><br><br>Perfume For Women - 50ml<br><br><b>Shalis</b> by Remy Marquis is a Floral Fruity <b>fragrance</b> for <b>women</b>. Top <b>notes</b> are Fruity <b>Notes</b>, Cyclamen and Lavender; middle <b>notes</b> are Rose, Magnolia and Peony; base <b>notes</b> are Musk, Amber and Patchouli.<br><br></div><br></div><br></div>','en','2021-01-11 02:06:18','2021-01-11 02:06:18'),(112,315,'Remy by Remy Marquis Eau De 3.4 oz for Women','pc','<strong>Article no: 1021</strong><br><div class=\"d9FyLd XcVN5d\">Product <b>description</b></div><br><span class=\"hgKElc\"><b>Remy</b> by <b>Remy</b> Marquis a Floral Woody Musk <b>fragrance</b> for <b>women</b>; Top <b>notes</b> are apple blossom, ivy and peach; Middle <b>notes</b> are jasmine, rose, peony and hibiscus; Base <b>notes</b> are sandalwood, white musk and amber. Size: 100 ml.</span><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.261e2dccji683e\">Product details of Remy For Women EDP 100ml</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc height-limit\"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">100% Original Perfume and Long Lasting.</li><br> 	<li class=\"\">Branded Imported product.</li><br> 	<li class=\"\">Mesmerizing Fragrance</li><br> 	<li class=\"\">Long Lasting Fragrance</li><br> 	<li class=\"\">For Daily Use</li><br> 	<li class=\"\">Premium Quality Fragrance.</li><br> 	<li class=\"\">Average Lasting More Than 6 Hours.</li><br> 	<li class=\"\">Best for Projection, Silage &amp; Longevity.</li><br> 	<li class=\"\">Best Prices.</li><br> 	<li class=\"\">One of the Bestselling Fragrances Ever.</li><br> 	<li class=\"\">No Water or Any Other Inexpensive Filler.</li><br> 	<li class=\"\">Safe For Skin</li><br> 	<li class=\"\">Official Seller Genuine product</li><br> 	<li class=\"\">Best For Gift &amp; Personal Use.</li><br> 	<li class=\"\">All our fragrances are 100% originals by their original designers. We do not sell any knockoffs or imitations.</li><br></ul><br></div><br></div><br></div>','en','2021-01-11 02:07:23','2021-01-11 02:07:23'),(113,316,'CIGAR Perfume By REMY LATOUR For MEN','pc','<strong>Article no: 1022</strong><br><br><b>Cigar</b> by <b>Remy Latour</b> is a Aromatic Fruity fragrance for men. <b>Cigar</b> was launched in 1996. Top notes are Plum, Pineapple, Pear, Bergamot and Amalfi Lemon; middle notes are Bay Leaf, Marigold, Geranium and Jasmine; base notes are Tobacco, Patchouli, Sandalwood, Virginia Cedar and Musk.<br><br>This innovative masculine aroma exceeds all expectations. Cigar perfume from the house of Rémy Latour (launched in 1996) is an intense, powerful and fresh fragrance that begins with notes of bergamot, lemon, pears, prunes and pineapple. The composition is heated by the aromatic notes of flowers such as marigold, geranium, jasmine and bay leaves. Lower notes will afford you the luxury of cedar, patchouli and sandalwood, blended with tobacco and musk.<br><br>Available as 60 and 100 ml EDT and 200 ml deodorant.','en','2021-01-11 02:08:21','2021-01-11 02:08:21'),(114,317,'Lomani Do It Lomani cologne - a fragrance for men','pc','<strong>Article no: 1023</strong><br><br><strong>Details:</strong><br><br><strong>DO IT Perfume:</strong> Aroma is to cover the smell of intemperate scent that may emerge amid times of moderate to substantial effort. The reason for scent isnt to smell wonderful yet in addition feel new constantly. Joining liquor or water and scents, aromas give dependable smell insurance by concealing smell with aroma fixings, making a situation of freshness and lessening scent.<br><br>Lomani <b>Do</b> It by Lomani is a Aromatic Spicy <b>fragrance</b> for <b>men</b>. Top <b>notes</b> are Coriander, Lemon, Galbanum, Bergamot and Juniper; middle <b>notes</b> are Geranium, Violet, Nutmeg, Lavender and Carnation; base <b>notes</b> are Oakmoss, Sandalwood, Orris Root, Patchouli, Amber and Musk.','en','2021-01-11 02:09:35','2021-01-11 02:09:35'),(115,318,'Lomani By Lomani 3.4 oz Eau De Toilette Spray for Men','pc','<strong>Article no: 1024</strong><br><br>Product details:<br><ul><br> 	<li>Quantity - 100 ml</li><br> 	<li>Good Fragrance</li><br> 	<li>Long Lasting</li><br> 	<li>Safe On Skin</li><br> 	<li>Best for Gift</li><br> 	<li>Strong &amp; Refreshing Scent</li><br> 	<li>be it parties, meetings or hangouts.</li><br> 	<li>Fragrance Notes - Top Notes - Bergamot, Lavender, Rosemary, Juniper berry</li><br> 	<li>Heart Notes - Geranium, Violet leaf</li><br> 	<li>Base Notes - Musk, Sandalwood, Cedar, Amber</li><br></ul><br>LOMANI SIGNATURE Men Eau de Toilette 3.3oz Spray','en','2021-01-11 02:10:30','2021-01-11 02:10:30'),(116,319,'Brut Prestige Paris Parfums for Men','pc','<p><strong>Article no:1025</strong></p><p><strong><br></strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.443849e6bLJKNf\">product details of Faberge Brut Classic For Men Perfume 100ml Jar:</h6><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><div class=\"pdp-product-desc \"><div class=\"html-content pdp-product-highlights\"><ul class=\"\"><br> 	<li class=\"\">Faberge Brut Classic For Men Perfume 100ml Jar</li></ul></div><div class=\"html-content detail-content\"><ul> 	<li>Faberge Brut Classic For Men Perfume 100ml Jar<a href=\"http://www.deobazaar.com/p46_Brut-Original-Perfume.html\">Brut,&nbsp;<strong>one of the most popular&nbsp;</strong>mens colognes</a>&nbsp;was first launched in 1964 by Faberge Paris. Top notes of this super sexy masculine perfume comprise of lemon, bergamot, lavender, anise and basil which blend very subtly into middle notes of geranium, jasmine and ylang-ylang. The trail holds a strong fragrance of sandalwood, oak moss, vetiver, patchouli, tonka bean and vanilla.&nbsp;<a href=\"http://www.deobazaar.com/p46_Brut-Original-Perfume.html\">Brut Perfume</a>&nbsp;is widely advertised with the slogan \"<a href=\"http://www.deobazaar.com/p46_Brut-Original-Perfume.html\">The essence of men</a>\". The nose &amp; innovator of this fragrance is Karl Mann.<br><div class=\"pdstitextie\"><strong>STORAGE:- </strong>Store bottle in a cool dry place only, Do not keep bottle with lid or cap open.<br><strong>DISCLAIMER:- </strong>Colors of the product might appear slightly different on digital devices.</div></li><br></ul><br></div><br></div><br></div></p>','en','2021-01-11 02:12:17','2021-01-11 02:12:17'),(117,320,'Mutual Love perfume For women','pc','<p><strong>Article no: 1026</strong></p><p><strong><br></strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i2.6d5c5360MhLU02\">product details of Mutual Love perfume</h6><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><div class=\"pdp-product-desc \" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i1.6d5c5360MhLU02\"><div class=\"html-content pdp-product-highlights\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.6d5c5360MhLU02\"><ul class=\"\"><br> 	<li class=\"\">MUTUAL LOVE PERFUME</li><br> 	<li class=\"\">HEART SHAPE PERFUME</li><br> 	<li class=\"\">50 ML</li><br> 	<li class=\"\">EAU DE PARFUM</li><br> 	<li class=\"\">FOR WOMEN</li><br> 	<li class=\"\">GIFTING PERFUME FOR LOVERS</li><br></ul><br></div><br><div class=\"html-content detail-content\"><br><ul>MUTUAL LOVE PERFUME&nbsp;FOR GIRL&nbsp;/ WOMEN&nbsp;EDP50 ML&nbsp;LONG LASTING&nbsp;BEST FRAGRANCE&nbsp;BEST RATEGIFTING PERFUMEORIGINAL ARTICLE</ul><br></div><br></div><br></div><br>HEART SHAPED SMALL BEAUTIFUL PERFUM , EASY TO CARRY , PERFECT FOR BAG FITTINGS, SOFT POLITE ODOUR LONG LASTING,SAFE ON SKIN AND A PERFECT GIFT.</p>','en','2021-01-11 02:13:30','2021-01-11 02:13:30'),(118,321,'Royal Ramba perfume for women','pc','<strong>Article no: 1027</strong><br><h6>product details:</h6><br><ul><br> 	<li>Size – 100 ml</li><br> 	<li>Good Fragrance</li><br> 	<li>Strong &amp; Refreshing Scent</li><br> 	<li>Sensual and Bold Fragrance</li><br> 	<li>be it parties, meetings, or hangouts</li><br></ul><br>Royal Ramba Perfume For Men and Women is good for all fragrances and best results.','en','2021-01-11 02:14:33','2021-01-11 02:14:33'),(119,322,'Rumba By Ted Lapidus For Women, Eau De Toilette Spray','pc','<strong>Article no: 1028</strong><br><div id=\"descriptionAndDetails\" class=\"a-section a-spacing-extra-large\"><br><div id=\"productDescription_feature_div\" class=\"celwidget\" data-feature-name=\"productDescription\" data-csa-c-id=\"ygppwy-mgijjm-y16svi-xz8i3j\" data-cel-widget=\"productDescription_feature_div\"><div><div id=\"productDescription_feature_div\" class=\"a-row feature\" data-feature-name=\"productDescription\" data-template-name=\"productDescription\" data-cel-widget=\"productDescription_feature_div\"><div id=\"productDescription\" class=\"a-section a-spacing-small\"><br><br>Introduced in 1989. Fragrance notes: fruity and floral, has exotic notes of light woods, musk and vanilla. Recommended use: casual.When applying any fragrance please consider that there are several factors which can affect the natural smell of your skin and, in turn, the way a scent smells on you.&nbsp; For instance, your mood, stress level, age, body chemistry, diet, and current medications may all alter the scents you wear.&nbsp;&nbsp;Similarly, factor such as dry or oily skin can even affect the amount of time a fragrance will last after being applied.<br><br></div><br></div><br></div><br></div><br></div><br><b>Rumba</b>&nbsp;by&nbsp;<b>Ted Lapidus</b>&nbsp;is a Oriental Floral fragrance for women.&nbsp;<b>Rumba</b>&nbsp;was launched in 1989. The nose behind this fragrance is Jean-Claude Ellena. Top notes are Plum, Peach, Mirabelle, Orange Blossom, Bergamot, Basil and Raspberry; middle notes are Honey, Marigold, Carnation, Tuberose, Heliotrope, Jasmine, Gardenia, Rose, Magnolia, Orchid and Lily-of-the-Valley; base notes are Leather, Oakmoss, Plum, Ambergris, Sandalwood, Musk, Styrax, Patchouli, Tonka Bean, Vanilla and Cedar.','en','2021-01-11 02:15:36','2021-01-11 02:15:36'),(120,323,'CHARLIE RED PERFUME FOR MEN','pc','<p><strong>Article no: 1029</strong></p><p><strong><br></strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.750248c3UPIjEe\">Product details of CHARLIE RED PERFUME FOR MEN 100 ML</h6><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><div class=\"pdp-product-desc \"><div class=\"html-content pdp-product-highlights\"><ul class=\"\"> 	<li class=\"\">Charlie Red Perfume</li><br> 	<li class=\"\">100 Ml</li><br> 	<li class=\"\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.750248c3UPIjEe\">For Men</li><br> 	<li class=\"\">Long Lasting</li><br></ul><br>Eau De Toilette<b>Charlie Perfume for Men</b>&nbsp;- 100mlCharlie Blue&nbsp;<b>Perfume</b>&nbsp;By Revlon, Launched By The Design House Of Revlon In 1973,&nbsp;<b>Charlie</b>&nbsp;Blue Is Classified As A Luxurious, Flowery&nbsp;<b>Fragrance</b>&nbsp;. This Feminine&nbsp;<b>Scent</b>&nbsp;Possesses A Blend Of Florals Geranium, Jasmine, And Rose, Mossy Woods, Sandalwood, Oakmoss, And Musk.<br><br></div><br></div><br></div></p>','en','2021-01-11 02:17:22','2021-01-11 02:17:22'),(121,325,'Network By Lomani For Men. Eau De Toilette','pc','<p><strong>Article no: 1031</strong></p><p><strong><br></strong><br><div>Lomani Paris&nbsp;Network&nbsp;a radically fresh composition, dictated by a name that has the ring of a manifesto. This sensually fresh scent sets a modern vision of virility with thrill of pure freshness top note face to the sensuality.</div><br><div><br><br>Brand : Lomani<br><br>Fragrance Perfume :&nbsp;Network<br><br>Fragrance : Bergamot, lavender, mint and mandarin orange, lily of the valley, nutmeg and water lily, musk, sandalwood, oakmoss, labdanum, cedar and clary sage.<br><br>Gender : Men<br><br>ML : 100 EDT<br><br><b>Network</b>&nbsp;by Lomani is a Aromatic Fougere&nbsp;<b>fragrance</b>&nbsp;for men.&nbsp;<b>Network</b>&nbsp;was launched in 1996. Top&nbsp;<b>notes</b>&nbsp;are Mandarin Orange, Lavender, Bergamot and Mint; middle&nbsp;<b>notes</b>&nbsp;are Nutmeg, Lily-of-the-Valley and Water Lily; base&nbsp;<b>notes</b>&nbsp;are Sandalwood, Clary Sage, Cedar, Musk, Oakmoss and Labdanum.<br><br></div></p>','en','2021-01-11 02:19:19','2021-01-11 02:19:19'),(122,326,'Vaseline Hair Tonic and Scalp Conditioner Hair Oil(100ml)','pc','<strong>Article no: 1066</strong><br><br>Vaseline Hair Tonic and Scalp Conditioner helps to keep the hair and scalp tidy and tamed. It provides deep nourishment to the hair and makes it healthy and strong from the hair roots to tip. It works a dual purposr of both a hair oil and a hair conditioner. This comes in transparent sleek bottle with a screw cap which makes it easy to carry around when needed.','en','2021-01-11 02:20:43','2021-01-11 02:20:43'),(123,324,'Charlie Blue Eau De toilette For Men','pc','<strong>Article no: 1030</strong><br><br><strong>Charlie Perfume for Men - 100ml</strong>Charlie Blue Perfume By Revlon, Launched By The Design House Of Revlon In 1973, Charlie Blue Is Classified As A Luxurious, Flowery Fragrance . This Feminine Scent Possesses A Blend Of Florals Geranium, Jasmine, And Rose, Mossy Woods, Sandalwood, Oakmoss, And Musk. It Is Recommended For Daytime Wear. Imported from Dubai.<br><br><b>Charlie Perfume for Men</b> - 100mlCharlie Blue <b>Perfume</b> By Revlon, Launched By The Design House Of Revlon In 1973, <b>Charlie</b> Blue Is Classified As A Luxurious, Flowery <b>Fragrance</b> . This Feminine <b>Scent</b> Possesses A Blend Of Florals Geranium, Jasmine, And Rose, Mossy Woods, Sandalwood, Oakmoss, And Musk.','en','2021-01-11 02:22:03','2021-01-11 02:22:03'),(124,327,'Vaseline Hair Tonic and Scalp Conditioner Hair Oil (200 ml)','pc','<p class=\"more\"><strong>Article no: 1067</strong></p><br><p class=\"more\">Vaseline Hair Tonic and Scalp Conditioner helps to keep the hair and scalp tidy and tamed. It provides deep nourishment to the hair and makes it healthy and strong from the hair roots to tip. It works a dual purpose of both a hair oil and a hair conditioner. This comes in transparent sleek bottle with a screw cap which makes it easy to carry around when needed.</p>','en','2021-01-11 02:23:14','2021-01-11 02:23:14'),(125,328,'Desire By Alfred Dunhill For Men','pc','<strong>Article no: 1032</strong><br><br><b>Desire Red</b> is a refreshing woody-oriental fragrance. At its heart are unique notes of rose, patchouli and teakwood. A blend of warm and sensual fruity and woody top notes contrast with undertones of vanilla and musk.<br><br><strong>Desire for a Man (Eau de Toilette)</strong> is a perfume by <a href=\"https://www.parfumo.net/Perfumes/Dunhill\"><strong>Dunhill</strong></a> for men and was released in <a href=\"https://www.parfumo.net/Release_Year/2000\">2000</a>. The scent is fruity-sweet. It was last marketed by Inter Parfums.','en','2021-01-11 02:24:34','2021-01-11 02:24:34'),(126,329,'Nitro Canada Hair','pc','<strong>Article No: 1068</strong><br>Enhance lustrous shine and fixable hold. Emphasize shape and curl of your hair. Ieal for sleek look and good scent. Easy to apply and wash off.<br><ul><br> 	<li class=\"_21Ahn-\">For Men</li><br> 	<li class=\"_21Ahn-\">For All Hair Types</li><br> 	<li class=\"_21Ahn-\">Type: Hair Wax</li><br> 	<li class=\"_21Ahn-\">Quantity: 150</li><br> 	<li class=\"_21Ahn-\">Sulfate Free</li><br></ul>','en','2021-01-11 02:25:46','2021-01-11 02:25:46'),(127,330,'Sabalon Hair Spray for Unisex - Red - 420 ml','pc','<strong>Article No: 1069</strong><br><br>Farosh offers you Sabalon Hair Spray for Unisex - Red - 420 ml. It is compatible with all types of hair for styling purposes. If you are fed up with not getting settled in the right position, Sabalon is an option to go. Once the hair is positioned with this Sabalon hair spray, they wont even change their position until washed or combed. The spray is compatible with both the males and females hair to get positioned. Start fixing your hair with Sabalon spray from today.','en','2021-01-11 02:26:56','2021-01-11 02:26:56'),(128,331,'Dunhill Desire Blue Eau De Toilette For Men','pc','<strong>Article no: 1033</strong><br><br>Desire <b>Blue</b> by Alfred <b>Dunhill</b> is a Aromatic Green <b>fragrance</b> for men. ... The nose behind this <b>fragrance</b> is Philippe Romano. Top <b>notes</b> are Litchi, Mandarin Orange, Lotus and Bergamot; middle <b>notes</b> are Sea <b>Notes</b>, Orange and Brazilian Rosewood; base <b>notes</b> are Tonka Bean, Amber, Musk and Benzoin.<br><h6 class=\"list__product--title\">Product Highlights:</h6><br><ul class=\"list__product--listings\"><br> 	<li>The perfect scent for men looking to achieve a bold fragrance</li><br> 	<li>Designed and manufactured by Philippe Romano for Dunhill London</li><br> 	<li>Top notes of litchi, lotus, and mandarin orange</li><br> 	<li>Heart notes consist of rosewood and sea notes</li><br> 	<li>Base notes are benzoin and musk</li><br></ul>','en','2021-01-11 02:28:10','2021-01-11 02:28:10'),(129,332,'Nova Gold Super Firm Hold Hair Spray(200ml)','pc','<strong>Article No: 1070</strong><br><br><strong>We brings you the best price for Nova Gold Super Firm Hold Hair Spray For Unisex 200ml with express shipping all over Pakistan.</strong><br><br><strong>Details:</strong><br><br><b>•</b> Quantity - 200ml<br><b>•</b> Super Hold Hairspray<br><b>•</b> Shake before use, spray the hair as needed<br><b>•</b> Hair styling spray<br><b>•</b> For All Hair Types<br><b>•</b> Firm look - Construing the Effect of Vogue.<br><b>•</b> Long lasting - Gives Life to Hair<br><b>•</b> Unisex: Suitable For Both Males &amp; Females<br><b>•</b> Hair Fixer','en','2021-01-11 02:29:37','2021-01-11 02:29:37'),(130,333,'Jaguar By Jaguar For Men. Eau De Toilette','pc','<p><strong>Article no: 1034</strong></p><p><strong><br></strong><br><h6 class=\"a-size-base-plus a-text-bold\">About this item</h6><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Country of origin is China</span></li><br> 	<li><span class=\"a-list-item\">The package weight of the product is 12 pounds</span></li><br> 	<li><span class=\"a-list-item\">Apply onto clean, dry skin.</span></li><br> 	<li><span class=\"a-list-item\"><span class=\"a-list-item\">This item is by designer Jaguar.</span></span><br><div id=\"tabs\" class=\"tabs \"><br><div class=\"tab active\"><br><div></div><br><span id=\"tabs-1\" class=\"tab1-desc tab-desc tab-content show-drop\">Jaguar For Men was launched by design house of Jaguar in 1988, it is classified as a luxurious, spicy, lavender, amber fragrance.<br>This masculine scent possesses a blend of basil, lavender, grapefruit and gardenia.<br>Accompanied by cedar, spruce, leather and fern.</span><br><br></div><br></div></li><br></ul></p>','en','2021-01-11 02:33:42','2021-01-11 02:33:42'),(131,334,'Garnier Hair Natural Colors','pc','<strong>Article No: 1071</strong><br><br>For over 60 years, Garnier has been creating unique hair colors and combining them with caring natural ingredients which have proven positive effects on the condition of the hair.<br><h6><b> Hair Color Shades to Try:</b></h6><br><ul><br> 	<li>Natural Black – Warm</li><br> 	<li>Reflective Blue Black – Cool</li><br> 	<li>Darkest Brown – Cool</li><br> 	<li>Light Brown  – Neutral</li><br> 	<li>Brown – Neutral</li><br> 	<li>Caramel Brown – Warm</li><br> 	<li>Intense Red – Neutral</li><br> 	<li>Copper Red – Warm</li><br> 	<li>Wine Burgundy – Cool</li><br></ul><br><pre></pre><br><pre></pre><br><pre></pre><br><pre></pre><br><pre></pre><br><pre></pre><br><strong> </strong>','en','2021-01-11 02:34:50','2021-01-11 02:34:50'),(132,335,'Eternity For Men Calvin Klein for men','pc','<strong>Article no: 1035</strong><br><br><b>Eternity for Men</b> is fresh yet woody, combining crisp, cool <b>notes</b> with warmer ingredients. This confident <b>scent</b> features green botanical top <b>notes</b>, balanced with a herbaceous hint of sage and basil at the heart, rounded off with a woodsy cedar base that lingers on the skin.<br><br>Calvin Klein Eternity for Men Eau de Parfum comes out in September 2019 as a new version of the original 1989 Eternity for Men fragrance. The brand uses phrases such as \"robust but refined\" and \"masculine but sensual\" to describe the new fragrance.','en','2021-01-11 02:36:08','2021-01-11 02:36:08'),(133,336,'Active Man Chris Adams for men','pc','<strong>Article no: 1036</strong><br><br>TOP NOTES:<br><br>Bergamot, Herbs, Lime<br><br>MIDDLE NOTES:Lavender, Rose, Jasmine, Water Flowers, Violet, Patchouli<br><br>BASE NOTES: Sandalwood, Cedarwood, Teck, Musk, Amber, Moss<br><br>OLFACTIVE FAMILY: Aromatic - Floral - Woody<br><br>Young, energetic and oozing charisma, he makes a splash wherever he goes. A cool and refreshing <b>perfume</b> that combines the freshness of aqua with tangy citrus <b>notes</b> and herbal <b>notes</b> is offset by a sensual white musk.','en','2021-01-11 02:37:07','2021-01-11 02:37:07'),(134,337,'Ponds White Beauty Lightening Facial Foam Daily Spot-Less 100gm','pc','<strong>Article No: 1072</strong><br><br><b>White Beauty Facial Foam</b> Cleanses deeply for a fair &amp; glowing skin. Unique formula that reduces dullness &amp; brightens the skin. Washes away dead skin cells to uncover bright skin cells. Cleanses deeply for a fair &amp; glowing skin.','en','2021-01-11 02:38:04','2021-01-21 11:19:25'),(135,338,'CHRIS ADAMS ACTIVE WOMAN EAU DE PARFUM','pc','<strong>Article no: 1037</strong><br><br>TOP NOTES: Bergamot, Orange, Grapefruit<br>MIDDLE NOTES: Exotic Fruits, Rose, Jasmine<br>BASE NOTES: Sandalwood, Patchouli, Tonka Beans, Vanilla, Musks<br>OLFACTIVE FAMILY: Floral-Fruity-Musky<br><br>This <b>fragrance</b> is a playful blend of exotic fruits and floral <b>notes</b>. ... MIDDLE NOTE : Basket of Exotic Fruits, Rose Petals, Aquatic Jasmine. BASE NOTE : Precious Sandalwood, Leaves of Patchouly, Tonka Beans, Vanilla Sugar, Sensual White Musks. <b>Active Woman Perfume</b> is available in 80-ml transparent pink colored bottle.','en','2021-01-11 02:39:12','2021-01-11 02:39:12'),(136,339,'POND\'S Oil Control Face Wash 100gm','pc','<strong>Article No: 1073</strong><br><br>It helps remove <b>oil</b> and grime off your <b>face</b>. Women with oily or combination skin tend to look dull due to the <b>oil</b> secretion - <b>Ponds oil control</b> is tough on the <b>oil</b> but gentle on the skin. The silica gel bead technology helps giving you an <b>oil free</b> glow. Feel the freshness with <b>Ponds oil control</b>.','en','2021-01-11 02:41:59','2021-01-21 11:19:36'),(137,340,'Marquis Remy Marquis for women','pc','<strong>Article no: 1038</strong><br><br><b>Marquis</b> by <b>Remy Marquis</b> is a Oriental Woody fragrance for women. <b>Marquis</b> was launched in 1999.<br><br><b>Marquis</b> is a full on old school <b>fragrance</b>, and definitely very close to Poême – maybe 85% the same vibe, but notably sweeter. In fact <b>Marquis</b> reads *very* sweet on my skin. It takes about 30 minutes to calm down before becoming a sweet, ambery-balsamic white floral.','en','2021-01-11 02:43:01','2021-01-11 02:43:01'),(138,341,'PONDS Pure White face wash 100gm','pc','<strong>Article No: 1074</strong><br><br>Formulated with Activated Carbon and Vitamin B3, <b>Ponds Pure White</b> Deep <b>Cleansing Facial Wash</b> removes dead skin cells and impurities in your skin from the inside, resulting in brighter, radiant skin on the outside. Achieve fairer-looking skin with <b>Ponds face cleansing</b> solution.','en','2021-01-11 02:44:06','2021-01-21 11:19:45'),(139,342,'Remy Marquis Marquis Perfume For Men','pc','<strong>Article no: 1039</strong><br><ul><br> 	<li>Size - 100 ml</li><br> 	<li>Good Fragrance</li><br> 	<li>Long Lasting</li><br> 	<li>Safe On Skin</li><br> 	<li>Fragrance Notes - Top Notes - Mint,Grapefruit,Lemon,Bergamot</li><br> 	<li>Heart Notes - Nutmeg,Geranium,Sage,Cinnamon</li><br> 	<li>Base Notes - Cedar,Amber,Sandalwood,Musk</li><br></ul><br><b>Marquis</b> is a spicy citrus <b>perfume</b> that doesnt change much through the drydown. It lasts for 5-6 hours on my skin unlike its more potent sibling, Shalis. Those who prefer citrus frags can try this one out and its pretty cheap.','en','2021-01-11 02:45:36','2021-01-11 02:45:36'),(140,343,'POND\'s Flawless White Deep Whitening Facial Foam 100gm','pc','<b>Article No: 1075</b><br><br><b></b><b>Ponds</b> Flawless White <b>Deep Whitening Facial Foam deeply</b> cleanses pores and removes impurities that causes skin dullness for fresh, soft skin with a radiant glow. How It Works: Increase your skins radiance in 7 days with a formula that brightens and clears up your complexion.','en','2021-01-11 02:46:35','2021-01-21 11:19:56'),(141,344,'CK One Calvin Klein for women and men','pc','<strong>Article no: 1040</strong><br><br>Ck One by Calvin Klein Perfume. No woman will fail to be impressed by the luxurious accents of this fragrance from the design house of Calvin Klein. <span id=\"product-read-more-text-mq1\" class=\"\">Created in 1994, Ck One perfume for women is a fragrance that conveys exotic appeal. The provocative scent contains accords of jasmine, citrus, rose and pineapple infused with green tea to create a sensuous scent that will cling to your body for hours. Youll feel confident, elegant, and adorable after spraying on this light, refreshing perfume,</span> <span id=\"product-read-more-text\" class=\"mq1dnone\">and youll be sure to attract appreciative comments from friends and acquaintances.</span>','en','2021-01-11 02:47:44','2021-01-11 02:47:44'),(142,345,'POND\'s Age Miracle Cell Regenerating Facial Foam 100gm','pc','<strong>Article No: 1076</strong><br><br>Formulated with intelligent pro-cell complex and CLA, <b>Ponds age miracle</b> facial foam is an exfoliating foam <b>cleanser</b> with gentle micro granules that remove dead skin cells to reduce dullness, and enhance your skins overall radiance.','en','2021-01-11 02:48:46','2021-01-21 11:20:05'),(143,346,'CK be Calvin Klein for women and men','pc','<strong>Article no: 1041</strong><br><br><b>CK be</b> by <b>Calvin Klein</b> is a Floral Woody Musk fragrance for women and men. <b>CK be</b> was launched in 1996. The nose behind this fragrance is Rene Morgenthaler. Top notes are Lavender, Green Notes, Bergamot, Mint, Juniper and Mandarin Orange; middle notes are Green Grass, Peach, Jasmine, Freesia, Magnolia and Orchid; base notes are Musk, Sandalwood, Cedar, Vanilla, Opoponax and Amber.<br><br><b>Ck</b> Be is a <b>fragrance</b> for men created by <b>Calvin Klein</b> in 1996. Its classic <b>notes</b> of aromatic lavender, green <b>notes</b>, fresh mint, mandarin orange and intense juniper offer a refreshing, oriental <b>scent</b> that is recommended for the office and daytime casual wear.','en','2021-01-11 02:49:52','2021-01-11 02:49:52'),(144,347,'POND\'s Pimple Clear Facewash 100gm','pc','<strong>Article No: 1077</strong><br><br><b>Ponds Pimple Clear Face Wash</b> has active Thymo-T Essence which goes deep inside your <b>skin</b> to lock the <b>pimple</b>-causing germs at its root and helps <b>clear</b> it away. This <b>face wash</b> delivers superior results that strengthen <b>skin</b> and offer offer beautifully smooth, clearer <b>skin</b> on the outside','en','2021-01-11 02:51:19','2021-01-21 11:20:15'),(145,348,'Open By Roger & Gallet Edt Spray For Men','pc','<strong>Article no: 1042</strong><br><br><b>Open</b> by Roger &amp; Gallet is a Woody Aromatic <b>fragrance</b> for men. <b>Open</b> was launched in 1985. Top <b>notes</b> are Lavender, Amalfi Lemon and Bergamot; middle <b>notes</b> are Thyme and Sage; base <b>notes</b> are Tobacco, Vetiver and Patchouli.<br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Launched by the brand Roger &amp; Gallet</span></li><br> 	<li><span class=\"a-list-item\">This Perfume for men holds a long lasting fragrance</span></li><br> 	<li><span class=\"a-list-item\">Keeps you refreshing all day</span></li><br></ul>','en','2021-01-11 02:52:24','2021-01-11 02:52:24'),(146,349,'POND\'s Clear Solution Facial Scrub 100gm','pc','<strong>Article No:1078 </strong><br><br><b>Ponds Clear Solutions</b> Facial Scrub with scrub beads, combines a Brightening Essence with a salicylic formula to effectively wash away 99% of pimple-causing germs while making your skin fairer and more radiant. Unlock your skins natural glow, without an oily shine. ... Resulting in <b>clear</b>, radiant skin.','en','2021-01-11 02:53:22','2021-01-21 11:20:26'),(147,350,'One Man Show By Jacques Bogart Eau De Toilette Spray For Men','pc','<strong>Article no: 1043</strong><br><br>Top <b>Notes</b>:<br><br>of Artemisia, caraway, galbanum, basil, bergamot and Brazilian rosewood Middle <b>Notes</b>:are labdanum, nutmeg, spices, carnation, patchouli, jasmine, vetiver, rose, pine tree needles and geranium while Base <b>Notes</b>:are leather, sandalwood, Tonka bean, amber, coconut, vanilla, oak moss, cedar, styrax and castoreum.','en','2021-01-11 02:54:39','2021-01-11 02:54:39'),(148,351,'Prophecy Prince Matchabelli for women','pc','<strong>Article no: 1044</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i0.61d4f445MvTp39\">Product details of Prophecy Perfume - 100ml</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">100 ml</li><br> 	<li class=\"\">Made in USA</li><br> 	<li class=\"\">Long Lasting</li><br></ul><br>Prince Matchabelli <b>Prophecy Cologne</b> Spray Mist is a Floral Woody Musk <b>fragrance</b> for women. Top <b>notes</b> are lily, aldehydes and pepper. Middle <b>notes</b> are cassis, gardenia, carnation, jasmine and rose. ... Top <b>notes</b> are lily, aldehydes and pepper.<br><br></div><br></div><br></div>','en','2021-01-11 02:55:40','2021-01-11 02:55:40'),(149,352,'Joop Homme by Joop 125ml EDT for Men','pc','<strong>Article no: 1045</strong><br><br><b>Fragrance Notes</b>:<br><br><b>Joop</b>! <b>Homme</b> is a very sensual, oriental <b>fragrance</b> with fresh citrus top <b>notes</b> of mandarin, lemon, bergamot and orange blossom. The floral heart is very warm and balmy, revealing jasmine, lily of the valley, heliotrope and cinnamon.<br><br>Joop Homme by Joop 125ml Eau De Toilette Spray for Men<br><br>Full of fascinating originality Joop! Homme is a celebration of masculine sensuality.<br><br>The burst of cool, fresh spiciness unfolds to reveal a nuanced warm floral body and a strong, sensual oriental character.<br><br>Designer: Joop!<br><br>Year Introduced: 1989','en','2021-01-11 02:56:42','2021-01-11 02:56:42'),(150,353,'Joop Homme by Joop 75ml EDT for Men','pc','<strong>Article no: 1046</strong><br><br><b>Fragrance Notes</b>:<br><br><b>Joop</b>! <b>Homme</b> is a very sensual, oriental <b>fragrance</b> with fresh citrus top <b>notes</b> of mandarin, lemon, bergamot and orange blossom. The floral heart is very warm and balmy, revealing jasmine, lily of the valley, heliotrope and cinnamon.<br><br>Joop Homme by Joop 125ml Eau De Toilette Spray for Men<br><br>Full of fascinating originality Joop! Homme is a celebration of masculine sensuality.<br><br>The burst of cool, fresh spiciness unfolds to reveal a nuanced warm floral body and a strong, sensual oriental character.<br><br>Designer: Joop!<br><br>Year Introduced: 1989','en','2021-01-11 02:57:49','2021-01-11 02:57:49'),(151,354,'Joop Jump EDT Perfume For Men','pc','<strong>Article no: 1047</strong><br><br><strong>Jump 100 ml eau de toilette spray for men from Joop</strong><br><br>Jump by Joop! is a Aromatic Fougere fragrance for men. Jump was launched in 2005. The nose behind this fragrance is Sophie Labbe. Top notes are rosemary, caraway and grapefruit; middle notes are coriander and heliotrope; base notes are tonka bean, musk and vetiver.<br><br>.. The nose behind this <b>fragrance</b> is Sophie Labbe. Top <b>notes</b> are Grapefruit, Rosemary and Caraway; middle <b>notes</b> are Heliotrope and Coriander; base <b>notes</b> are Tonka Bean, Musk and Vetiver.','en','2021-01-11 03:01:46','2021-01-11 03:01:46'),(152,355,'Aqua Blue Perfume For Women','pc','<strong>Article no: 1048</strong><br><h6>Key Features</h6><br><ul><br> 	<li>Quantity – 50 ml</li><br> 	<li>Long Lasting Fragrance</li><br> 	<li>Strong &amp; Refreshing Scent</li><br> 	<li>be it parties, meetings or hangouts.</li><br></ul><br><strong>Fragrance Family </strong><br><div class=\"html-content pdp-product-highlights\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.1ddd1277aCQGN8\"><br><ul class=\"\"><br> 	<li class=\"\">Qty : 50 ml</li><br> 	<li class=\"\">High quality</li><br> 	<li class=\"\">Good Fragrance</li><br> 	<li class=\"\">Refreshing scent</li><br> 	<li> Eau de Parfum</li><br></ul><br></div><br><div class=\"html-content detail-content\"><br><ul><br> 	<li>Quantity – 50 ml</li><br> 	<li>Long Lasting Fragrance</li><br> 	<li>Strong &amp; Refreshing Scent</li><br> 	<li>be it parties, meetings or hangouts.</li><br></ul><br></div>','en','2021-01-11 03:02:50','2021-01-11 03:02:50'),(153,356,'Blue For Men Rasasi cologne for men','pc','<strong>Article no: 1049</strong><br><br>Gender: Men<br>Volume: 100ML<br>Brand: Rasasi<br>Condition: Authentic<br>Type: Eau De Parfum<br>The rich composition opens with fresh sparkling aromatic and citrus accords of mint and mandarine. The aromatic theme continues into the heart of the fragrance with coriander, floral notes of rose and jasmine are present and these mingle with geranium and pepper. The warm and retentive dry down notes of precious woods and amber ads to the originality and luxuriousness of this unique fragrance.','en','2021-01-11 03:03:51','2021-01-11 03:03:51'),(154,357,'Armaf Tag-Him Pour Homme EDT For Men','pc','<strong>Article no: 1050</strong><br><h6 class=\"list__product--title\">Product Details:</h6><br><ul class=\"list__product--listings\"><br> 	<li>Beautifully designed bold black bottle</li><br> 	<li>A spicy, woody yet cool fragrance</li><br> 	<li>Wearable for any time of the day</li><br></ul><br><div class=\"d9FyLd XcVN5d\">Product <b>description</b></div><br><span class=\"hgKElc\">Confident, iconic and swashbuckling - an intense and energizing <b>scent</b> reveals masculine modernity. An aromatic woody <b>fragrance</b> with top <b>notes</b> of lemon, grapefruit and lavender mingled with spicy accents of pink pepper, ginger and warm woods of cedar and vetiver. The dry down is woody and ambery.</span>','en','2021-01-11 03:05:03','2021-01-11 03:05:03'),(155,358,'Estiara Stag White for men','pc','<strong>Article no: 1051</strong><br><br><span class=\"a-list-item\">Top Note:</span><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\"> Aquatic accords, Orange, Bergamot</span></li><br> 	<li><span class=\"a-list-item\">Middle Note: Blackcurrant, Green Tea</span></li><br> 	<li><span class=\"a-list-item\">Base Note: Musk, Sandalwood, Galbanum</span></li><br> 	<li><span class=\"a-list-item\">Available in 100ml EDT</span></li><br></ul><br><div class=\"mod\" lang=\"en-PK\" data-md=\"61\"><br><div class=\"LGOjhe\" role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CAYQAA\"><br><div class=\"d9FyLd XcVN5d\">Product <b>description</b></div><br><span class=\"ILfuVd\"><span class=\"hgKElc\"><b>STAG WHITE</b> A sparkling aromatic <b>fragrance</b> for <b>men</b> with refreshing <b>notes</b> of bergamot and orange followed by a heart of green tea and blackcurrant. Base consists of galbanum, musk and sandalwood.</span></span><br><br></div><br></div><br><div class=\"g\"><br><div class=\"rc\" data-hveid=\"CAQQAA\" data-ved=\"2ahUKEwiT_5aryfPtAhXSPsAKHdJjAtoQFSgAMAJ6BAgEEAA\"></div><br></div>','en','2021-01-11 03:07:19','2021-01-11 03:07:19'),(156,359,'Stag Black M Estiara','pc','<strong>Article no: 1052</strong><br><br>Stag Black by Estiara for Men. Stag black backs an explosive and extrovert scent for sporty men. Top opens with refreshing notes of lemon and verbena mingling with a heart of violets and exotic spices. The base consists of sandalwood and ambergris. There’s nothing more cozy and charming than a decent scent. This undetectable piece of a man’s style impacts how those around fathom his identity; verily Stag black is the particular scent you desire!<br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Good quality product</span></li><br> 	<li><span class=\"a-list-item\">Easy to use</span></li><br> 	<li><span class=\"a-list-item\">Ideal for gift purpose</span></li><br></ul>','en','2021-01-11 03:08:14','2021-01-11 03:08:14'),(157,360,'HUGO BOSS Now eau de toilette For Men','pc','<strong>Article no: 1053</strong><br><br>A compact 75ml bottle of HUGO Now eau de toilette. HUGO Now presents an original new scent, combining fresh and aromatic notes of cardamom, lemon zest, lavender, mint and vetiver. This invigorating fragrance is ideal for those with an adventurous spirit.<br><br>The <b>fragrance</b> delivers an energising hit of fresh, crisp green apple, twisted with vibrant herbal aromas and the smoky, earthy scents of a wild forest. An optimistic <b>scent</b> for a liberated soul, <b>HUGO Man</b> is presented in a sleek flask with a strapped-on cap, designed for <b>men</b> on the move.','en','2021-01-11 03:09:33','2021-01-11 03:09:33'),(158,361,'Tradition For Men Perfume','pc','<strong>Article no: 1054</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.2cce6103RC73fn\">Product details:</h6><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><div class=\"pdp-product-desc \"><div class=\"html-content pdp-product-highlights\"><ul class=\"\"><br> 	<li class=\"\">Beautiful packing for gifts</li><br> 	<li class=\"\">Long lasting Fragrance Capability</li><br> 	<li class=\"\">Easy to spray</li><br> 	<li class=\"\">Decent look</li><br> 	<li class=\"\">125ml</li><br></ul><br>Insurrection by Reyane&nbsp;<b>Tradition</b>&nbsp;is a Oriental Woody&nbsp;<b>fragrance</b>&nbsp;for&nbsp;<b>men</b>. Reyane&nbsp;<b>Tradition</b>&nbsp;Insurrection is a sweet aromatic&nbsp;<b>scent</b>&nbsp;of sweet fruits, intense vanilla, amber and woody&nbsp;<b>notes</b>&nbsp;.<br><br></div><br></div><br></div>','en','2021-01-11 03:14:03','2021-01-11 03:14:03'),(159,362,'Sellion Graceful Yellow Eau De Parfum For Women','pc','<strong>Article no: 1055</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i5.732a3681zZvyHo\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul><br> 	<li class=\"\">Long lasting</li><br> 	<li class=\"\">Eau de Toilette</li><br> 	<li class=\"\">High Quality Perfumes</li><br> 	<li class=\"\">Pleasantscent</li><br> 	<li class=\"\">Get Closer.</li><br> 	<li class=\"\">Reliable</li><br> 	<li class=\"\">By Ted Lapidus, Paris</li><br> 	<li data-spm-anchor-id=\"a2a0e.pdp.product_detail.i1.732a3681zZvyHo\">Long lasting</li><br> 	<li>Eau de Toilette</li><br> 	<li>High Quality Perfumes</li><br> 	<li data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.732a3681zZvyHo\">Pleasant <b>scent</b></li><br> 	<li>Get Closer.</li><br> 	<li>Reliable</li><br> 	<li>By Ted Lapidus, Paris</li><br></ul><br></div><br></div><br></div>','en','2021-01-11 03:14:56','2021-01-11 03:14:56'),(160,363,'Sellion Graceful Pink Eau De Parfum','pc','<p><strong>Article no: 1056</strong></p><p><strong><br></strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i2.2b8515c98oIUdT\">Product detail:</h6><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><div class=\"pdp-product-desc \"><div class=\"html-content pdp-product-highlights\"><ul class=\"\"><br> 	<li class=\"\">Graceful pink Perfume</li><br> 	<li class=\"\">100ml</li><br> 	<li class=\"\">For Women</li><br> 	<li class=\"\">Sellion perfumes</li><br> 	<li class=\"\">Ideal For Gift</li><br> 	<li class=\"\">Attractive Tin Box Packing</li><br></ul><br>The special and romantic times are always adored and when thought about later, creates a magnificent aroma which is certainly felt by the hearts which is lustrously meant to bring a smile on someone special. Perfume is a mixture of fragrant essential oils or aroma compounds, fixatives and solvents, used to give the human body an agreeable scent. It is usually in liquid form and used to give a pleasant scent to a persons body.<br><br></div><br></div><br></div></p>','en','2021-01-11 03:16:45','2021-01-11 03:16:45'),(161,364,'ARD AL ZAAFARAN PERFUMES DIRHAM EAU DE FOR MEN','pc','<strong>Article no: 1057</strong><br><br>Perfume Dirham Eau de Parfum by Ard Al Zaafaran <span class=\"hps\">is a fresh</span>, <span class=\"hps\">vital</span> <span class=\"hps\">perfume</span> <span class=\"hps\">with</span> <span class=\"hps\">floral notes</span> <span class=\"hps\">and</span> <span class=\"hps\">a</span> <span class=\"hps\">slightly</span> <span class=\"hps\">woody base</span>.<br><br><span class=\"hps\">The opening</span> <span class=\"hps\">top note</span> <span class=\"hps\">is fresh</span> <span class=\"hps\">with</span> <span class=\"hps\">citrus</span> <span class=\"hps\">scents</span> and dries <span class=\"hps\">to</span> <span class=\"hps\">cool</span> <span class=\"hps\">bergamot and</span> <span class=\"hps\">spicy </span><span class=\"hps\">cardamom</span>.<br><br>The heart note is warm and bright with roses, jasmine and lavender.<br><br>In the base sandalwood is blended with cedar and vetiver, giving Dirham depth and elegance.<br><br><span class=\"hps\">Dirham</span> <span class=\"hps\">is a nice</span> <span class=\"hps\">everyday</span> <span class=\"hps\">fragrance</span>, spreading <span class=\"hps\">freshness</span> <span class=\"hps\">and</span> <span class=\"hps\">positive</span> <span class=\"hps\">energy</span>.<br><div><strong>Main accords:</strong> fresh, floral, vibrant, slightly woody</div><br><div><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.65ad6642dalesL\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Volume: 100ml</li><br> 	<li class=\"\">For Unisex</li><br> 	<li class=\"\">Eau de Parfum</li><br> 	<li class=\"\">Arabic Fragrance</li><br> 	<li class=\"\">Long Lasting Fragrance</li><br> 	<li class=\"\">Exclusively by Ard Al Zaafaran</li><br></ul><br></div><br></div><br></div><br></div>','en','2021-01-11 03:17:41','2021-01-11 03:17:41'),(162,365,'Graceful Red Perfume For Women','pc','<strong>Article no: 1058</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i2.2b8515c9QpjyP0\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">100ml</li><br> 	<li class=\"\">For Women</li><br> 	<li class=\"\">Sellion perfumes</li><br> 	<li class=\"\">Ideal For Gift</li><br> 	<li class=\"\">Attractive Tin Box Packing</li><br></ul><br>The special and romantic times are always adored and when thought about later, creates a magnificent aroma which is certainly felt by the hearts which is lustrously meant to bring a smile on someone special. Perfume is a mixture of fragrant essential oils or aroma compounds, fixatives, and solvents, used to give the human body an agreeable scent. It is usually in liquid form and used to give a pleasant scent to a persons body.<br><br></div><br></div><br></div>','en','2021-01-11 03:18:49','2021-01-11 03:18:49'),(163,366,'Rasasi L\'Incontournable Blue For Men 2','pc','<strong>Article no:1059</strong><br><h6 class=\"list__product--title\">Product details:</h6><br><ul class=\"list__product--listings\"><br> 	<li>An oriental fragrance by Rasasi</li><br> 	<li>Blend of alluring notes</li><br> 	<li>Suitable for evening wear</li><br> 	<li>Glamorously-styled glass flacon</li><br></ul><br>Note:<br><br>Citruses, bergamot and wormwood, middle <b>notes</b> are spicy <b>notes</b>, geranium and cardamom, base <b>notes</b> are woody <b>notes</b>, sandalwood and musk.','en','2021-01-11 03:19:47','2021-01-11 03:19:47'),(164,367,'Rasasi L\'incontournable Blue Lady 2 for Women','pc','<strong>Article no: 1060</strong><br><div class=\"_3a9CI2\">product details:</div><br><div class=\"_2418kt\"><br><ul><br> 	<li class=\"_21Ahn-\">Quantity: 40 ml</li><br> 	<li class=\"_21Ahn-\">Ideal For: Women</li><br> 	<li class=\"_21Ahn-\">Fragrance Classification: Eau de Parfum</li><br> 	<li class=\"_21Ahn-\">Fragrance Family: Oriental, Floral, Woody, Fresh</li><br></ul><br>With a unique blend of floral and fruity <b>notes</b>, the <b>perfume</b> is the perfect concoction of what every <b>woman</b> desires. ... The base <b>notes</b> of the <b>perfume</b> hints sandalwood and musk. The three different <b>notes</b> are a great combination of violet leaves, jasmine, tuberose, vanilla, narcissus, peach, sandalwood and amber.<br><br></div>','en','2021-01-11 03:20:39','2021-01-11 03:20:39'),(165,368,'Hunaidi Alisha Gold Perfume For Men & Women','pc','<strong>Article no: 1061</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i2.74061bb6ok7xju\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Quantity – 100 ml</li><br> 	<li class=\"\">Long Lasting Fragrance</li><br> 	<li class=\"\">Strong &amp; Refreshing Scent</li><br> 	<li class=\"\">Sensual and Bold Fragrance</li><br></ul><br></div><br><div class=\"html-content detail-content\"><br><ul><br> 	<li>Quantity – 100 ml</li><br> 	<li>Ideal For Men &amp; Women</li><br> 	<li>Strong &amp; Refreshing Scent</li><br> 	<li>Sensual and bold Fragrance</li><br> 	<li>Alisha Gold By <strong>Hunaidi </strong>is a Oriental fruity spicy fragrance.</li><br></ul><br></div><br></div><br></div>','en','2021-01-11 03:21:44','2021-01-11 03:21:44'),(166,369,'Rasasi Hope Silver Women Perfume','pc','<strong>Article no: 1063</strong><br><h6 class=\"list__product--title\">Product details:</h6><br><ul class=\"list__product--listings\"><br> 	<li>Heady and sensual</li><br> 	<li>Brimming with masculinity</li><br> 	<li>Features great floral-oriental notes</li><br> 	<li>Recommended for all occasions</li><br></ul><br><div class=\"d9FyLd XcVN5d\">Product <b>description</b></div><br><span class=\"hgKElc\">ABOUT <b>HOPE</b>: <b>Hope</b> is a very powerful emotion on which millions of people depend and draw their inner strength. It is a wonderful brunch of fruity flowery <b>notes</b>. The warm and obstinate rose is surrounded by the vibrating plum melon fruity note which brings sensuality to the <b>perfume</b>.</span>','en','2021-01-11 03:34:45','2021-01-11 03:34:45'),(167,370,'Eternal Love by Eternal Love for Men','pc','<strong>Article no: 1064</strong><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Brand: Eternal Love</span></li><br> 	<li><span class=\"a-list-item\">Eternal Love Cologne by Eternal Love Parfums 3.4oz Eau De Perfume Spray for Men.</span></li><br> 	<li><span class=\"a-list-item\">Shop with confidence,&amp;Eternal Love Cologne.</span></li><br></ul><br><div class=\"d9FyLd XcVN5d\">Product <b>description:</b></div><br><span class=\"hgKElc\">A sparkling mix of lemon and bergamot surrounds an herbaceous floral heart of soothing lavender and jasmine accentuated with subtle peppery <b>notes</b> of sage.</span>','en','2021-01-11 03:36:17','2021-01-11 03:36:17'),(168,371,'Hunaidi Alisha Eau De Perfume For Men','pc','<strong>Article no: 1065</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.108c7dc35j7vks\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Alisha Gold perfume</li><br> 	<li class=\"\">100 ML</li><br> 	<li class=\"\">Eau De Toilette</li><br> 	<li class=\"\">Long Lasting</li><br> 	<li class=\"\">Tin Packed</li><br></ul><br><b>Fragrance Notes</b> - Vanilla, Sandalwood and Patchouli Including Peach and Melon, to create your own exclusive <b>scent</b>.<br><br></div><br></div><br></div>','en','2021-01-11 03:37:20','2021-01-11 03:37:20'),(169,372,'Rasasi Hope For Men Perfum','pc','<strong>Article no: 1062</strong><br><h6>Product Description:</h6><br><div class=\"rte\"><br><ul><br> 	<li>Hope for Men by Rasasi symbolizes expectations and faith</li><br> 	<li>The fragrance is seamless fusion of spices musk and warm woods in a scent that fresh transparent, contemporary long lasting and very warm.</li><br> 	<li>The Fragrance is meant to evoke success, energy, optimism and HOPE</li><br> 	<li>Hope is a very powerful emotion on which millions of people depend and draw their inner strength.</li><br> 	<li>Powerful and masculine is this fragrance from Rasasi,</li><br> 	<li>Just the way every man wants his perfume to be.</li><br> 	<li>100% Original product from Rasasi - one of the best perfume brands from the Middle East.</li><br> 	<li>Rasasi Hope for man EAU DE Toilette 75 ml - For men (2.5 fl. oz.)</li><br></ul><br></div>','en','2021-01-11 03:38:27','2021-01-11 03:38:27'),(170,373,'Blue for Men by Rassasi Body Spray (200 ml)','pc','<strong>Article no: 2068</strong><br><br>Rasasi <b>Blue For Men</b> Pour Homme the rich composition open with fresh sparkling aromatic and citrus accords of mint and mandarine. The aromatic theme continues into the heart of the fragrance with coriander, floral notes of rose and jasmine are present and these mingle with geranium and pepper.<br><br><b>Specifications:</b><br><br>• Brand: Rasasi<br>• Variant: Blue for Men<br>• Condition: Brand-new, unused, unopened, undamaged item<br>• Size: 200 ml<br>• Gender: Men<br>• Spray type: Deodorant Pumps<br>• Long lasting','en','2021-01-11 03:40:25','2021-01-23 07:27:39'),(171,374,'Blue Lady Rasasi Body Spray For Women','pc','<strong>Article no: 2069</strong><br><br>The <b>blue lady</b> Rasasi <b>body spray</b> for <b>women</b> is the finishing touch you need to apply before you step out of your house. It defines femininity with floral and fruity scents that will give a boost to your confidence. Impress passersby with the alluring fragrance from the house of Rasasi.<br><br><b>Specifications:</b><br><ul><br> 	<li>Brand: Rasasi</li><br> 	<li>Condition: Brand-new, unused, unopened, undamaged item</li><br> 	<li>Variant: Blue Lady</li><br> 	<li>Targeted Group: Women</li><br> 	<li>Type: Body Spray</li><br> 	<li>Quantity: 200 ml</li><br> 	<li>Long Lasting</li><br> 	<li>Safe on Skin</li><br> 	<li>Neutralizes Body Odor</li><br> 	<li>Cooling and Refreshing Effect</li><br> 	<li>Helps to avoid Body Odor</li><br></ul><br>&nbsp;','en','2021-01-11 03:41:14','2021-01-11 03:41:14'),(172,375,'Chastity Pour Homme Deodorant Body Spray For Men (200 ml)','pc','<strong>Article no: 2070</strong><br><br>A mans appearance is defined by his clothes sense. Impeccable dressing whether formal or casual, is the first key to irresistibility. Let your choice of colours and fabric speak for you. Let your accessories complement your style. Keep up with the fashion of the day, but also venture out to set new trends for others to follow. Perfume-one of the essentials of physical appeal-never to be compromised upon. Select the best with Rasasi perfume par excellence \"Chastity\"!','en','2021-01-11 03:42:06','2021-01-23 07:28:28'),(173,376,'Relation Black by Rassasi Body Spray For Men & Women','pc','<strong>Article no: 2071</strong><br><br>Rasasi Relation pour Homme high quality deodorant are simply expression of luxury keeps you fresh all day long and you feel prestigious all the time. the symbol of excellence.<br><br>Fragrance : Relation pour Homme<br><br>Gender : Men &amp; Women<br><br>ML : 200','en','2021-01-11 03:47:08','2021-01-11 03:47:08'),(174,377,'Relation Body Spray For Women','pc','<strong>Article no: 2072</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i2.616f4821myAQmm\">product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Body Spray Size: 200 ml</li><br> 	<li class=\"\">Long Lasting Fragrance</li><br> 	<li class=\"\">Refreshing Scent</li><br> 	<li class=\"\">Brand : Rasasi</li><br> 	<li class=\"\">Sensual and Bold Fragrance</li><br></ul><br>asasi  Retation Pour Femme the continual movement of the two energies is what keeps the world going. These two energies the Yin and Yang together are synonymous of a perfect whole, one is lost without the other and causes turmoil in our day today behaviour and attitude. And together they form a unique force which can even create life.<br><br></div><br></div><br></div>','en','2021-01-11 03:48:04','2021-01-11 03:48:04'),(175,378,'Rasasi Romance for Men Forever Deodorant Body Spray (200 ml)','pc','<strong>Article no: 2073</strong><br><br><strong>Country of Origin:</strong> Product of UAE<br><br><strong>Product Weight:</strong> 6.76 FL OZ (200 ML)<br><br><strong>Storage Instruction:</strong> Keep in cool and dry place.<br><br><strong>Package:</strong> Bottle<br><div class=\"d9FyLd XcVN5d\">asasi <b>Romance</b> for <b>Men</b> Forever <b>Deodorant Body Spray</b> 200 ML</div><br><span class=\"hgKElc\">A very fresh floral bouquet with citrus notes and fruity touches. The green note gives more freshness and more diffusion. The accord finishes with a soft musky powdery effect and a lasting woody note.</span>','en','2021-01-11 03:49:00','2021-01-23 07:29:01'),(176,379,'Secret Body Spray For Women','pc','<strong>Article no: 2074</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i2.33e22e60hkDa4f\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">High Quality</li><br> 	<li class=\"\">Strong Fragrance</li><br> 	<li class=\"\">Long Lasting</li><br></ul><br></div><br><div class=\"html-content detail-content\">Secret Body Spray For Women</div><br><div></div><br><h6 class=\"html-content detail-content\">PRODUCT DESCRIPTION</h6><br><div><br><div class=\"ProductDescriptionContainer prodAccordionContent\"><br><br>The fragrance opens with heady peach and sparkling orange notes that are combined with a hint of subtle violet leaves. The heart of this fragrance expresses the sensuality of the perfume blending a refined bouquet of Jasmine. Rose and Lily of the valley that naturally evolves into a mysterious base of musk, ceder wood and sandalwood.<br><br></div><br></div><br></div><br></div>','en','2021-01-11 03:49:55','2021-01-11 03:49:55'),(177,380,'Romance Body Spray For Women','pc','<strong>Article no: 2075</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i2.34b3cce5UmdCfr\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Body Spray Size: 200 ml</li><br> 	<li class=\"\">Long Lasting Fragrance</li><br> 	<li class=\"\">Refreshing Scent</li><br> 	<li class=\"\">Bold Fragrance</li><br></ul><br></div><br><div class=\"html-content detail-content\">Romance Body Spray For Women.</div><br><div>Rasasi Romance body spray is specially created for those women who love to explore the world of fantasy, who like to take a voyage to far beyond. Also, it’s for the naturally shinning women who always enjoy life and fun. Fresh and sparkling top notes lead to a sumptuous bouquet of rose and jasmine, harmoniously combined with the fruity, woody, powdery notes in the dry down.</div><br></div><br></div>','en','2021-01-11 03:50:45','2021-01-11 03:50:45'),(178,381,'Rasasi Royale Blue Deodorant Body Spray for Men (200 ml)','pc','<strong>Article no: 2076</strong><br><h6 class=\"subtitle\">PRODUCT DESCRIPTION</h6><br><div class=\"ProductDescriptionContainer prodAccordionContent\"><br><br>Now he knows looking at the air around him.... The scented grasping tendrils... like a feeling, would not leave him through the breaking twisting of a macho mans life; reluctant to part, the fresh smell of Cavaillon melon, Mandarin orange, Cucumber mellowed by the scent of Geranium, Basil, Sage absolute and finally the aroma of delicate musky sensual woods that persists.<br><br><strong>Country of Origin:</strong> Product of UAE<br><br><strong>Product Weight:</strong> 6.76 FL OZ (200 ML)<br><br><strong>Storage Instruction:</strong> Keep in cool and dry place.<br><br><strong>Package:</strong> Bottle<br><br></div>','en','2021-01-11 03:51:41','2021-01-23 07:29:36'),(179,382,'Rasasi royale black Deodorant Spray - For Men & Women','pc','<strong>Article no: 2077</strong><br><ul><br> 	<li class=\"_21Ahn-\">Quantity: 450 ml</li><br> 	<li class=\"_21Ahn-\">Fragrance: Deodorant Spray</li><br> 	<li class=\"_21Ahn-\">For Men &amp; Women</li><br></ul><br>the royale black Rasasi Body Spray for Women and Men is the finishing touch you need to apply before you step out of your house. It defines femininity with floral and fruity scents that will give a boost to your confidence. Impress passersby with the alluring fragrance from the House of Rasasi.','en','2021-01-11 03:52:38','2021-01-11 03:52:38'),(180,383,'Rasasi Emotion Deodorant - For Women','pc','<strong>Article no: 2078</strong><br><h6>product details:</h6><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Rasasi emotion pour femme body spray 200ml</span></li><br> 	<li><span class=\"a-list-item\">Rasasi emotion deo is very suave fresh crisp for ladies</span></li><br> 	<li><span class=\"a-list-item\">A freshness and a dash of sensuality and femininity round off this amazing fragrance</span></li><br> 	<li><span class=\"a-list-item\">Emotion Pour Femme Deodorant Body Spray</span></li><br></ul>','en','2021-01-11 03:53:35','2021-01-11 03:53:35'),(181,384,'Rasasi Emotion Pour Homme Deodrant Body Spray For Men (200 ml)','pc','<strong>Article no: 2079</strong><br><br>Rasasi Emotion pour Homme let the fragrance of Emotions weave a spell of pure magic after all that is life without Emotions. Live and Feel life....with none other than Rasasi.<br><br>Fragrance : Emotion pour Homme<br><br>Gender: Men<br><br>ML: 200','en','2021-01-11 03:56:08','2021-01-23 07:30:09'),(182,385,'Hope Body Spray Deodorant For Women','pc','<strong>Article no: 2080</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i2.7cfd74d7qjGSH3\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Body Spray Size: 200 ml</li><br> 	<li class=\"\">Long Lasting Fragrance</li><br> 	<li class=\"\">Refreshing Scent</li><br> 	<li class=\"\">Brand : Rasasi</li><br> 	<li class=\"\">Sensual and Bold Fragrance</li><br> 	<li class=\"\">For women</li><br></ul><br><h6 class=\"subtitle\">PRODUCT DESCRIPTION:</h6><br><div class=\"ProductDescriptionContainer prodAccordionContent\"><br><br>Hope is a very powerful emotion on which millions of people depend and dry their inner strength. It is wonderful bunch of fruity flowery notes. The warm and obstinate rose is surrounded by the vibrating plum melon fruity note which brings sensuality to the perfume, the background built with sandalwood from India and various musky notes makes this perfume definitely sustentative.<br><br></div><br></div><br></div><br></div>','en','2021-01-11 03:57:25','2021-01-11 03:57:25'),(183,386,'Hope Body Spray Deodorant For Men (200 ml)','pc','<strong>Article no: 2081</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.7cfd74d7WQXSYw\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.7cfd74d7WQXSYw\"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Body Spray Size: 200 ml</li><br> 	<li class=\"\">Long Lasting Fragrance</li><br> 	<li class=\"\">Refreshing Scent</li><br> 	<li class=\"\">Brand : Rasasi</li><br> 	<li class=\"\">Sensual and Bold Fragrance</li><br> 	<li class=\"\">For Men</li><br></ul><br>Rasasi Hope the fragrance is seamless fusion of spices musk and warm woods in a scent that fresh transparent, contemporary long lasting and very warm. The fragrance is meant to evoke success, energy, optimism and HOPE.<br><br>Fragrance : Hope<br><br>Gender : Men<br><br>ML : 200<br><br></div><br></div><br></div>','en','2021-01-11 03:58:21','2021-01-23 07:30:49'),(184,387,'POND\'S White Beauty Spot-less Fairness Day Cream, 35g','pc','<strong>Article No: 1079</strong><br><br>Its anti-<b>spot</b> formula with pro-vitamin b3 is clinically proven to fade stubborn dark <b>spots</b> from within. Pro-vitamin b3 is a potent skin lightening agent proven to reduce stubborn dark <b>spots</b> from within to reveal beautiful and <b>spot</b>-<b>less</b> skin from outside','en','2021-01-11 03:59:39','2021-01-11 03:59:39'),(185,388,'Rasasi Knowledge Pour Homme Deodrant Body Spray For Men (200 ml)','pc','<strong>Article no: 2082</strong><br><br>Rasasi Knowledge pour Homme high quality deodorant are simply expression of luxury keeps you fresh all day long and you feel prestigious all the time. the symbol of excellence.<br><br>Fragrance : Knowledge pour Homme<br><br>Gender : Men<br><br>ML : 200<br><br>Rasasi Knowledge Pour Homme Body Spray For Men - 200ml Size: 200ml Long lasting Sensual and Masculine Fragrance.','en','2021-01-11 04:00:43','2021-01-23 07:31:17'),(186,389,'Shalis Woman Frangance Body Spray Deodorant','pc','<strong>Article no: 2083</strong><br><br><b>Specifications</b><br><ul><br> 	<li>Brand: Remy Marquis</li><br> 	<li>Variant: Shalis for Women</li><br> 	<li>Condition: Brand-new, unused, unopened, undamaged item</li><br> 	<li>Size: 175 ml</li><br> 	<li>Type Body Spray</li><br> 	<li>Design House: Remy Marquis</li><br> 	<li>Targeted Group: Women</li><br> 	<li>Safe on skin</li><br> 	<li>Long lasting</li><br></ul><br><ul class=\"\"><br> 	<li class=\"\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.676c406f5erHir\">Best for Casual/Routine Usage.</li><br> 	<li class=\"\">Perfect Solution for all Seasons.</li><br> 	<li class=\"\">Long Lasting Perfumed Body Spray.</li><br> 	<li class=\"\">Masculine and Bold Fragrance.</li><br> 	<li class=\"\">Nonstop Protection from Body Odor.</li><br></ul>','en','2021-01-11 04:01:45','2021-01-11 04:01:45'),(187,390,'Shalish Men Body spray (175 ml)','pc','<strong>Article no: 2084</strong><br><br><b>Shalis body spray</b> for <b>men</b> by Remy Marquis is an Aromatic Fougere fragrance. Remy Marquis <b>shalis body spray</b> helps you stay cool and fresh all day long with its pleasant and invigorating fragrance.<br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i2.43962428IlI1H3\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Shalish ( Men ) is a unique formula design specially for men ,</li><br> 	<li class=\"\">Shalish ( Men ) is a ever favorite among all range of men’s available</li><br> 	<li class=\"\">Long Lasting Fragnance</li><br> 	<li class=\"\">100% Orignal Product</li><br> 	<li class=\"\">Beautiful And Attractive Fragrance</li><br> 	<li class=\"\">Remy Marquis Deodorant pray</li><br></ul><br></div><br><div class=\"html-content detail-content\"></div><br></div><br></div>','en','2021-01-11 04:02:42','2021-01-23 07:32:44'),(188,391,'Remy Marquis Paris Red Body Spray For Men & Women','pc','<strong>Article no: 2085</strong><br><br>The body spray is a perfume product. The body sprays can be used on your body of course, in your vehicle and in your home to add a nice aroma.It is recommended for daily use. Desire is a fresh sensual fragrance created for the man who is an achiever, self-confident, socially active and worldly wise.<br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i0.20905379aYMRWi\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Unique &amp; Fresh Fragrance</li><br> 	<li class=\"\">Best For Everyday Use</li><br> 	<li class=\"\">Lowest Price</li><br></ul><br></div><br></div><br></div>','en','2021-01-11 04:03:49','2021-01-11 04:03:49'),(189,392,'Marquis Blue Body Spray For Men (175 ml)','pc','<strong>Article no: 2086</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i0.1bad27d1Hpvfx6\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Unique &amp; Fresh Fragrance</li><br> 	<li class=\"\">Best For Everyday Use</li><br> 	<li class=\"\">Lowest Price</li><br></ul><br>Marquis by Remy Marquis is an Oriental Fougere fragrance for men. Marquis was launched in 1999. The fragrance features oriental notes, woody notes, green notes, citruses, spicy notes, lavender and amber.<br><br></div><br></div><br></div>','en','2021-01-11 04:04:42','2021-01-23 07:33:10'),(190,393,'Remy Marquis Remy Deodorant Body Spray For Women','pc','<strong>Article no: 2087</strong><br><p data-spm-anchor-id=\"a2a0e.pdp.product_detail.i1.4b2b5815R4SA1P\">Remy Marquis Remy feel fresh active deodorant a bodylicious deo spray for women with 24 hours protection.</p><br>Fragrance :  Remy<br><br>Gender : Women<br><br>ML : 175<br><br>&nbsp;','en','2021-01-11 04:05:45','2021-01-11 04:05:45'),(191,394,'Remy Deodorant Body Spray For Men (175 ml)','pc','<strong>Article no: 2088</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.699114201JvV0C\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Remy Marquis Remy feel fresh active deodorant a bodylicious deo spray for women with 24 hours protection.</li><br> 	<li class=\"\">Fragrance :  Remy</li><br> 	<li class=\"\">Gender : Men</li><br> 	<li class=\"\">ML : 175</li><br></ul><br></div><br><div class=\"html-content detail-content\"><br><br>Remy Marquis Remy feel fresh active deodorant a bodylicious deo spray for women with 24 hours protection.<br><br>&nbsp;<br><br></div><br></div><br></div>','en','2021-01-11 04:06:46','2021-01-23 07:33:35'),(192,395,'Havoc Gold Body Spray For Men (200 ml)','pc','<strong>Article no: 2089</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.1ba66f29JvxrlW\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Variant : Havoc Gold</li><br> 	<li class=\"\">Size : 200 ml</li><br> 	<li class=\"\">For MenLong LastingSafe On Skin</li><br></ul><br></div><br><div class=\"html-content detail-content\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.1ba66f29JvxrlW\">Havoc Gold Body Spray For Men - 200 Ml</div><br><div data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.1ba66f29JvxrlW\"><b>Havoc</b> is classified as a gorgeous powdery mossy, green, aldehydic chypre with a floral that begins with a tantalizing floral creme broule.It gradually settles down to a really lovely retro mix of green floracy and a faint musk.It is a very rare and hard to find <b>perfume</b>.</div><br></div><br></div>','en','2021-01-11 04:07:39','2021-01-23 07:33:58'),(193,396,'Havoc Silver Body Spray For Men (200 ml)','pc','<strong>Article no: 2090</strong><br><br>A brand name which stands out for itself. Long lasting and unique. It will make your day full of refreshing and soothing fragrance<br><br>Buy Havoc Silver Body Spray Deodorant for Men 200 ml<br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.4e569485decPhN\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Size : 200 ml</li><br> 	<li class=\"\">Type : Body SpraySafe On Skin</li><br> 	<li class=\"\">Long Lasting</li><br></ul><br></div><br></div><br></div>','en','2021-01-11 04:08:38','2021-01-23 07:34:24'),(194,397,'POND\'s Age Miracle Night Cream 50gm','pc','<strong>Article No: 1080</strong><br><br><b>Ponds Age Miracle</b> Wrinkle Corrector <b>Night Cream</b> Skin <b>aging</b> is an ongoing process that occurs naturally. It releases powerful anti-<b>aging</b> retinol actives into the skin, working 24hr non-stop to help reduce the appearance of wrinkles and fine lines from the inside.','en','2021-01-11 04:09:50','2021-01-21 11:55:39'),(195,398,'AXE Body Spray for Men, Dark Temptation (150 ml)','pc','<strong>Article no: 2091</strong><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">A blend of hot chocolate, amber and red peppercorn</span></li><br> 	<li><span class=\"a-list-item\">A unique fragrance in an 8 oz can</span></li><br> 	<li><span class=\"a-list-item\">A few sprays is all you need</span></li><br> 	<li><span class=\"a-list-item\">Use AXE anytime, smell great all the time</span></li><br> 	<li><span class=\"a-list-item\">Goes well with AXE Dark Temptation Body Wash 16 fl oz, AXE Dark Temptation</span></li><br></ul><br>A subtle, sweet fragrance with a hint of spice. A blend of hot <b>chocolate</b>, amber and red peppercorn. Shake, twist and <b>spray</b> across your chest.','en','2021-01-11 04:11:03','2021-01-23 07:34:56'),(196,399,'Axe Deodorant Body Spray Africa Mens Fragrance (150 ml)','pc','<strong>Article no: 2092</strong><br><br><b>frica</b> by <b>Axe</b> is a Oriental Fougere fragrance for men. <b>Africa</b> was launched in 1995. The nose behind this fragrance is Ann Gottlieb. Top notes are Bergamot and Mandarin Orange; middle note is Geranium; base notes are Tonka Bean, Vanilla, Egyptian balsam, Sandalwood, Musk and Cedar.<br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">AXE helps guys look</span></li><br> 	<li><span class=\"a-list-item\">Longer-lasting fragrance</span></li><br> 	<li><span class=\"a-list-item\">Effective deodorant protection</span></li><br> 	<li><span class=\"a-list-item\">Smell and feel their best to help them get day comfortable</span></li><br></ul>','en','2021-01-11 04:12:57','2021-01-23 07:35:20'),(197,400,'AXE Deodorant Body Spray Musk (150 ml)','pc','<strong>Article no: 2093</strong><br><div class=\"d9FyLd XcVN5d\">Product <b>Description</b></div><br><span class=\"hgKElc\"><b>Axe Musk body spray</b>. <b>Axe Deodorant Body Spray</b> is the all-over <b>bodyspray</b> with long-lasting <b>fragrance</b> and effective protection designed to seduce the ladies. If you <b>spray</b> it, they will come.</span><br><h6 class=\"a-size-base-plus a-text-bold\">About this item:</h6><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Science shows that Axes improved fragrance acts upon the female libido and stimulates the clothing-removal section of the female brain. Which means, you can fulfill more of your manly desires</span></li><br> 	<li><span class=\"a-list-item\">One application of the new improved Axe and youll smell like a hunk of man candy all day long</span></li><br> 	<li><span class=\"a-list-item\">Because Babes like man candy. Lots! Feel as good as you smell</span></li><br></ul>','en','2021-01-11 04:13:52','2021-01-23 07:35:40'),(198,401,'AXE Body Spray for Men (150 ml)','pc','<strong>Article no: 2094</strong><br><br><b>AXE Black</b>. A refined and subtle fragrance combining notes of bergamot and cedar wood allowing you to make an impression without going over the top. Our <b>AXE deodorant body spray</b> for men leaves you feeling fresh and smelling great!<br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">With Axe Black Body Spray for Men, make a statement by embracing the power of understatement</span></li><br> 	<li><span class=\"a-list-item\">Men’s body spray from the new Axe Black men’s grooming range</span></li><br> 	<li><span class=\"a-list-item\">With the subtle, refined fragrance for men of Axe Black</span></li><br> 	<li><span class=\"a-list-item\">Zesty bergamot combined with fresh rosemary and soothing cedar wood</span></li><br> 	<li><span class=\"a-list-item\">A few sprays is all you need</span></li><br></ul>','en','2021-01-11 04:14:46','2021-01-23 07:36:42'),(199,402,'AXE Body Spray for Men (150 ml)','pc','<strong>Article no: 2095</strong><br><br>A woody fragrance with a hint of sweetness. A blend of coconut, hazelnut and caramel notes. Shake, twist and <b>spray</b> across your chest.<br><br>&nbsp;<br><h6 class=\"a-size-base-plus a-text-bold\">About this item</h6><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">AXE Body Spray for Men, Excite, 4 oz –A woody fragrance with a hint of sweetness</span></li><br> 	<li><span class=\"a-list-item\">Packaging May Vary, Black or White</span></li><br> 	<li><span class=\"a-list-item\">A unique fragrance in a 4 oz can</span></li><br> 	<li><span class=\"a-list-item\">A few sprays is all you need</span></li><br> 	<li><span class=\"a-list-item\">Use AXE anytime, smell great all the time</span></li><br> 	<li><span class=\"a-list-item\">Blend of caramel, coconut, and hazelnut notes</span></li><br></ul>','en','2021-01-11 04:16:03','2021-01-23 07:36:54'),(200,403,'LOMANI DO IT BODY SPRAY FOR MEN (200 ml)','pc','<strong>Article no: 2096</strong><br><br><strong>Description:</strong><br><br><strong>•</strong> Do It Deodorant Body Spray<br><strong>•</strong> Pleasant Fragrance<br><strong>•</strong> Long Lasting<br><strong>•</strong> High Quality<br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Fresh Scent to Uplift Your Mood</span></li><br> 	<li><span class=\"a-list-item\">Power of Perfume Packed in Deo Spray Can</span></li><br> 	<li><span class=\"a-list-item\">Safe on Skin, does not sting</span></li><br></ul>','en','2021-01-11 04:16:54','2021-01-23 07:37:51'),(201,404,'Lomani Pour Homme Deodorant For Men (200 ml)','pc','<strong>Article no: 2097</strong><br><br>Lomani Pour Homme Deodorant For Men ? 200Ml is best quality Men S Body Sprays, Deodorants &amp; Deo Sticks . A Paris perfumed deodorant to keep fresh and feel confident all day.<br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Brand New</span></li><br> 	<li><span class=\"a-list-item\">Original Item</span></li><br> 	<li><span class=\"a-list-item\">Factory Sealed</span></li><br> 	<li><span class=\"a-list-item\">Never Used</span></li><br> 	<li><span class=\"a-list-item\">Quality Product</span></li><br></ul>','en','2021-01-11 04:17:49','2021-01-23 07:38:19'),(202,405,'Lomani Cigar Body Spray - For Men (200 ml)','pc','<strong>Article no: 2098</strong><br><div class=\"d9FyLd XcVN5d\"><b>Cigar Body Spray Deodorant</b> for <b>Men</b> - 200 ml</div><br><span class=\"hgKElc\">Combining propylene, glycol and fragrances, deodorants provide long-lasting odor protection by masking odor with fragrance <b>ingredients</b>, creating an environment where bacteria cant grow and reducing odor by neutralizing some of the smelly components in sweat like fatty acids.</span><br><div class=\"d9FyLd XcVN5d\">Cigar by Remy Latour is a Aromatic Fruity fragrance for men. Cigar was launched in 1996. Top notes are Plum, Pineapple, Pear, Bergamot and Amalfi Lemon; middle notes are Bay Leaf, Marigold, Geranium and Jasmine; base notes are Tobacco, Patchouli, Sandalwood, Virginia Cedar and Musk.</div>','en','2021-01-11 04:21:24','2021-01-23 07:38:48'),(203,406,'Lomani El Paso Body Spray For Men (200 ml)','pc','<strong>Article no: 2099</strong><br><br><b>El paso</b> by lomani is a aromatic fougere fragrance for <b>men</b>. <b>El paso</b> was launched in 2002. Top notes are bergamot, lemon, thyme and eucalyptus; middle notes are lavender, nutmeg, juniper, cloves and jasmine; base notes are sandalwood, ambergris, oakmoss and musk.<br><h6 class=\"a-size-base-plus a-text-bold\">About this item:</h6><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Long lasting</span></li><br> 	<li><span class=\"a-list-item\">Attractive fragrance</span></li><br> 	<li><span class=\"a-list-item\">For all skin type</span></li><br></ul>','en','2021-01-11 04:23:48','2021-01-23 07:39:15'),(204,407,'Lomani Paris Network Deodrant Body Spray For Men (200 ml)','pc','<strong>Article no: 3000</strong><br><h6>product details:</h6><br><ul><br> 	<li>Quantity - 200 ml</li><br> 	<li>Long Lasting Fragrance</li><br> 	<li>Strong &amp; Refreshing Scent</li><br> 	<li>be it parties, meetings or hangouts.</li><br> 	<li><strong>Fragrance Notes - </strong>Top Notes - Bergamot, Lavender, Mint, Mandarin</li><br> 	<li>Heart Notes - Lily-of-the-valley, Nutmeg, Water flowers</li><br> 	<li>Base Notes - Musk, Sandalwood, Oakmoss, Labdanum, Cedar, Clary sage</li><br> 	<li class=\"\">Volume: 200 ml</li><br> 	<li class=\"\">Long Lasting Fragrance</li><br> 	<li class=\"\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.37be133d6kQ5R8\">Prevents sweating</li><br></ul>','en','2021-01-11 04:24:52','2021-01-23 07:39:45'),(205,408,'Everyone Body Spray Deodorant For Men','pc','<strong>Article no: 3001</strong><br><br>Farosh offers you Creation Lamis Everyone Body Spray For Men - 200 ml. The top-quality Lamis everyone body is the best avaialble price for value product that comes in enough quantity. The ingrediants of the perfume are safe on skin. The strong, refreshing scent gives you a prominent prsence in the parties and formal gathering.<br><ul class=\"\"><br> 	<li class=\"\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.a0f411c1tK58K3\">Size: 200 ml</li><br> 	<li class=\"\">Long lasting</li><br> 	<li class=\"\">Sensual and bold fragrance</li><br> 	<li>Strong &amp; Refreshing Scent</li><br> 	<li>be it parties, meetings or hangouts.</li><br></ul>','en','2021-01-11 04:26:01','2021-01-11 04:26:01'),(206,409,'Creation Lamis Pure Black Body Spray For Men','pc','<strong>Article no: 3002</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i2.48783a17Ji3L3h\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Size: 200 ml</li><br> 	<li class=\"\">Long lasting</li><br> 	<li class=\"\">Safe on Skin</li><br> 	<li class=\"\">Sensual and bold fragrance</li><br> 	<li class=\"\">Top Notes - Bergamot,Lemon,Rosemary</li><br> 	<li class=\"\">Middle Notes - Basil,Amber,Patchouli</li><br> 	<li class=\"\">Base Notes - Cedar,Leather,SandalwoodA long-lasting perfume body deodorant that will keep you feeling dry, cool and fresh throughout the day. It combines the protection of an effective deodorant with a fresh fragrance. Spray under your arms and all over your body for maximum effect. Is skin compatible dermatological proven smells divine and smooth to the touch on the skin keeps you dry Easy-to-use and sprays on easily.Buy Creation Lamis Pure Black Body Spray Deodorant for Men 200 ml</li><br></ul><br></div><br></div><br></div>','en','2021-01-11 04:27:09','2021-01-11 04:27:09'),(207,410,'POND\'s Age Miracle Day Cream 50gm','pc','<strong>Article No:1081</strong><br><br>The <b>Ponds Age Miracle Wrinkle Corrector</b> day cream helps in slowing down the ageing process of your skin. The RP-C 24 Recovery Complex helps in releasing retinol to reduce the appearance of <b>wrinkles</b> on your skin while the SPF 18 PA ++ protects your skin from the harmful UV rays.','en','2021-01-11 04:29:02','2021-01-21 11:55:45'),(208,411,'Original Black Market Body Spray For Men','pc','<strong>Article no: 3003</strong><br><br><strong>Description:</strong><br><br><strong>•</strong> Perfume &amp; Body Spray<br><strong>•</strong> For Men<br><strong>•</strong> Long Lasting<br><strong>•</strong> Long Freshness<br><strong>•</strong> Black Market Men Perfume 100ml<br><strong>•</strong> Black Market Men Body Spray 200ml<br><p data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.2b037910dWIjfO\">The Shirley May scope of body splashes offers you brilliant smells that revive and restore.</p><br>Reasonable for all skin types,<br><br>Black Market is Famous Brand of Mens Choice . its has generally excellent rating quality among Mens .<br><br>They make your skin feel crisp and flawless throughout the day<br><br>The Shirley May scope of body splashes offers you magnificent fragrances that invigorate and revive. Appropriate for all skin types, they make your skin feel new and perfect throughout the day and are accessible ay very moderate rates.','en','2021-01-11 04:30:15','2021-01-11 04:30:15'),(209,412,'Shirley May Black Car Body Spray For Men & Women','pc','<strong>Article no: 3004</strong><br><br><b>Black Car</b> by <b>Shirley May</b> is a Woody fragrance for men &amp; women. Top notes are Bergamot and Lemon; middle notes are Basil and Patchouli; base notes are Tobacco, Sandalwood and Cedar.<br><br>Luxurious Black Car Shirley May Perfume wraps its silken fingers around your heart and refuses to let go. A splash of this compelling fragrance and you are rendered a slave for life. Elegant and sophisticated this Eau De Toilette tingles your being and arouse your senses. This intoxicating fragrance suffuses the atmosphere with the deep, dark tones of seduction drawing everybody.','en','2021-01-11 04:31:09','2021-01-11 04:31:09'),(210,413,'POND\'s Flawless White Night Cream 50gm','pc','<strong>Article No: 1082</strong><br><br><b>Ponds Flawless White</b> Deep <b>Whitening</b> Cream deeply cleanses pores and removes impurities that causes skin dullness for fresh, soft skin with a radiant glow. How It Works: Increase your skins <b>radiance</b> in 7 days with a formula that brightens and clears up your complexion.','en','2021-01-11 04:32:19','2021-01-21 11:55:53'),(211,414,'Si Fleuri Body Spray For Women','pc','<strong>Article no: 3005</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i2.3919442bEiJ5cQ\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Size: 150 ml</li><br> 	<li class=\"\">Sensual and Bold Fragrance</li><br> 	<li class=\"\">Sandalwood and Musky scent</li><br> 	<li class=\"\">For Women</li><br></ul><br>Now get on that perfect charm with this luxurious deodorant from Set Wet and steal the limelight wherever you go. Set Wet Casanova Deodorant Spray Perfume for men prevents perspiration and body odours and keeps you fresh all day long. Its flirty fragrance with an extremely pleasant aroma will impress everyone around you. Extremely sensual and appealing, this deodorant is a must-have for all who love to mark a style statement.<br><br></div><br></div><br></div>','en','2021-01-11 04:34:01','2021-01-11 04:34:01'),(212,415,'Pond\'s Flawless White Day Cream 50gm','pc','<strong>Article No:1083</strong><br><br>Reverse the damaging effects of harsh UV rays and pollution on your skin, with the Pond’s Flawless White Visible Lightening face cream. This lightweight formula works its magic at the deepest levels, to restore your skin’s natural fairness.<br><ul><br> 	<li class=\"_21Ahn-\">All Day Usage Cream For Spot Removal</li><br> 	<li class=\"_21Ahn-\">For Women</li><br> 	<li class=\"_21Ahn-\">Organic Type: Synthetic</li><br> 	<li class=\"_21Ahn-\">UV Protected</li><br></ul>','en','2021-01-11 04:34:58','2021-01-21 11:56:03'),(213,416,'Fogg Marco Body Spray For Men','pc','<strong>Article no: 3006</strong><br><br><strong>Features:</strong><br><br>This Status fragrance body spray from Fogg is a power packed deodorant that offers more than you bargain for. This perfumed body spray has an invigorating scent which envelops you in a pleasant smell for a long time. Fragrance It has a scent that includes the notes of the fresh fragrance family which keeps you active all day. Carry it in your bag and spray a little on yourself for smelling good and preventing body odour all day long. 1000 Sprays Can be used by both men and women, this body spray bottle contains enough perfume that lasts for 1000 sprays.','en','2021-01-11 04:36:04','2021-01-11 04:36:04'),(214,417,'Fogg Napoleon Body Spray For Men','pc','<strong>Article no: 3007</strong><br><br>Fogg Napoleon Deodorant Fragrance Body Spray For Men 120 ml   Key Features of Fogg Napoleon Fragrance Body Spray - 120 ml   Feel Fresh and Cool All Day Long Neutralizes Body Odors and Perspiration Inspired by the Great Napoleon...<b> </b>120 ml<br><br><b>• </b>Gas free<br><b>• </b>Body Spray<br><b>• </b>For Men<br><b>• </b>Long-lasting','en','2021-01-11 04:36:59','2021-01-11 04:36:59'),(215,418,'Fogg Royal Body Spray For Men','pc','<strong>Article no: 3008</strong><br><br>Features:<br><br>This Status fragrance <b>body spray</b> from <b>Fogg</b> is a power packed <b>deodorant</b> that offers more than you bargain for. This perfumed <b>body spray</b> has an invigorating scent which envelops you in a pleasant smell for a long time.<br><ul><br> 	<li class=\"_21Ahn-\">Quantity: 120 ml</li><br> 	<li class=\"_21Ahn-\">Fragrance: Body Spray</li><br> 	<li class=\"_21Ahn-\">For Men</li><br> 	<li>Gas free</li><br></ul>','en','2021-01-11 04:38:04','2021-01-11 04:38:04'),(216,419,'Fogg Imperial Body Spray For Men','pc','<strong>Article no: 3009</strong><br><div class=\"_3a9CI2\"><strong>Highlights:</strong></div><br><div class=\"_2418kt\"><br><ul><br> 	<li class=\"_21Ahn-\">Quantity: 360 ml</li><br> 	<li class=\"_21Ahn-\">Fragrance: Deodorant Spray</li><br> 	<li class=\"_21Ahn-\">For Men</li><br> 	<li class=\"_21Ahn-\">Limited Edition</li><br> 	<li><span class=\"a-list-item\">Quantity: 150ml; Item Form: Spray</span></li><br> 	<li><span class=\"a-list-item\">Ensures you 800 sprays</span></li><br> 	<li><span class=\"a-list-item\">Consists of refreshing</span></li><br> 	<li><span class=\"a-list-item\">Long lasting fragrance</span></li><br> 	<li><span class=\"a-list-item\">Usage: Give it a good hard shake first to make sure all the ingredients are mixed together before you spray it. You should hold the can approximately 15 cm from your body as you spray it.</span></li><br> 	<li><span class=\"a-list-item\">Target Audience: Men</span></li><br> 	<li><span class=\"a-list-item\">Package Contents: 1 Body Spray</span></li><br> 	<li><span class=\"a-list-item\">Country of Origin: India</span></li><br></ul><br></div>','en','2021-01-11 04:38:56','2021-01-11 04:38:56'),(217,420,'Fogg Victor Body Spray For Men','pc','<strong>Article no: 3010</strong><br><h6 class=\"a-size-base-plus a-text-bold\">About this item</h6><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Fogg Fragnant Body Spray - Victor (120ml)</span></li><br> 	<li><span class=\"a-list-item\">Enables you to fight sweat odour for 24 hours</span></li><br> 	<li><span class=\"a-list-item\">Strong, refreshing scent breaks you from mundane routine. Leaves you with a refreshed feeling</span></li><br></ul><br><span class=\"a-list-item\">Ethyl Alcohol, Perfume, DEP, Propylene Glycol, Triclosan. Alcohol (95% v/v) content: 89.05% w/w, contains 1% w/w Diethyl Phthalate.</span>','en','2021-01-11 04:39:45','2021-01-11 04:39:45'),(218,421,'Fogg Paradise Women Body Spray','pc','<strong>Article no: 3011</strong><br><h6 class=\"a-size-base-plus a-text-bold\">About this item</h6><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Quantity: 150ml; Item Form: Spray</span></li><br> 	<li><span class=\"a-list-item\">Consists of refreshing. 1000 Sprays Can be used by both men and women, this body spray bottle contains enough perfume that lasts for 1000 sprays</span></li><br> 	<li><span class=\"a-list-item\">Long lasting fragrance</span></li><br> 	<li><span class=\"a-list-item\">Usage: Give it a good hard shake first to make sure all the ingredients are mixed together before you spray it. You should hold the can approximately 15 cm from your body as you spray it.</span></li><br> 	<li><span class=\"a-list-item\">Fragrance Classification: Body Spray;</span></li><br> 	<li><span class=\"a-list-item\">Target Audience: Women</span></li><br> 	<li><span class=\"a-list-item\">Package Contents: 1 Body Spray</span></li><br> 	<li><span class=\"a-list-item\">Country of Origin: India</span></li><br> 	<li class=\"\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i2.16f97b6ck7VIk0\">Unique &amp; Fresh Fragrance</li><br> 	<li class=\"\">Best For Everyday Use</li><br> 	<li class=\"\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i1.16f97b6ck7VIk0\">Lowest Price</li><br></ul>','en','2021-01-11 04:42:18','2021-01-11 04:42:18'),(219,422,'Fogg Essence Body Spray For Women','pc','<strong>Article no: 3012</strong><br><h6 class=\"a-size-base-plus a-text-bold\">About this item:</h6><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Quantity: 150ml; Item Form: Spray</span></li><br> 	<li><span class=\"a-list-item\">Ensures you 1000 sprays</span></li><br> 	<li><span class=\"a-list-item\">Consists of refreshing</span></li><br> 	<li><span class=\"a-list-item\">Long lasting fragrance</span></li><br> 	<li><span class=\"a-list-item\">Usage: Give it a good hard shake first to make sure all the ingredients are mixed together before you spray it. You should hold the can approximately 15 cm from your body as you spray it.</span></li><br> 	<li><span class=\"a-list-item\">Target Audience: Women</span></li><br> 	<li><span class=\"a-list-item\">Package Contents: 1 Body Spray</span></li><br> 	<li><span class=\"a-list-item\">Country of Origin: India</span></li><br></ul>','en','2021-01-11 04:43:36','2021-01-11 04:43:36'),(220,423,'Fogg Majestic Deodorant Spray - For Men','pc','<strong>Article no: 3013</strong><br><h6 class=\"subtitle\">PRODUCT DESCRIPTION</h6><br><div class=\"ProductDescriptionContainer prodAccordionContent\"><br><br>Fogg is an Indian deodorant brand manufactured by Lovincare Cosmetics Pvt. Ltd. Fogg body spray deodorant provides you with absolute value for money. A pleasant and invigorating deodorant that helps you feel fresh cool.<br><ul><br> 	<li class=\"_21Ahn-\">Quantity: 120 ml</li><br> 	<li class=\"_21Ahn-\">Fragrance: Deodorant Spray</li><br> 	<li class=\"_21Ahn-\">For Men</li><br></ul><br></div>','en','2021-01-11 04:44:41','2021-01-11 04:44:41'),(221,424,'Fogg monarch Perfume Body Spray - For Men','pc','<strong>Article no: 3014</strong><br><div class=\"d9FyLd XcVN5d\"><b>Fogg monarch Perfume Body Spray</b> - For Men (120 ml)</div><br><span class=\"hgKElc\">This perfumed <b>body spray</b> has an invigorating scent that envelops you in a pleasant smell for a long time. Fragrance It has a scent that includes the notes of the fresh fragrance family which keeps you active all day.</span><br><div class=\"_3a9CI2\"><strong>Highlights:</strong></div><br><div class=\"_2418kt\"><br><ul><br> 	<li class=\"_21Ahn-\">Quantity: 120 ml</li><br> 	<li class=\"_21Ahn-\">Fragrance: Perfume Body Spray</li><br> 	<li class=\"_21Ahn-\">For Men</li><br></ul><br></div>','en','2021-01-11 04:45:41','2021-01-11 04:45:41'),(222,425,'Bold Body Spray Life Intense For Men','pc','<strong>Article no: 3015</strong><br><br><strong>product Details:</strong><br><br>Refreshing scent<br><br>Long lasting<br><br>Sensual and Masculine Fragrance<br><br><strong>Bold- Men Body Spray Life Intense 120 ml</strong>','en','2021-01-11 04:52:54','2021-01-11 04:52:54'),(223,426,'Bold Life Vintage Body Spray For Men & Women','pc','<strong>Article no: 3016</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i0.662d259aTexshm\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Gas Free</li><br> 	<li class=\"\">120 ml</li><br> 	<li class=\"\">Targeted audience: Unisex</li><br></ul><br>Long lastingBold Life Body Spray collection uses the most contemporary and modern fragrances. With its long lasting properties, this range is perfect for men on the go. Buy BOLD Vintage Body Spray 120ML.<br><br></div><br></div><br></div>','en','2021-01-11 04:53:54','2021-01-11 04:53:54'),(224,427,'Bold Ignite Special Edition Body Spray For Men','pc','<strong>Article no: 3017</strong><br><h6 class=\"css-a3q5me\">DESCRIPTION</h6><br><div>Bold Life Body Spray collection uses the most contemporary and modern fragrances. With its long lasting properties, this range is perfect for men on the go.</div><br><div></div><br><div>Ignite Special Edition a is mild and very pleasant aroma. Those who like very fine and mild fragrance, your desires will be complete with this deodorant.</div>','en','2021-01-11 04:54:56','2021-01-11 04:54:56'),(225,428,'Bold Life Aqua Body Spray For Men','pc','<strong>Article no: 3018</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i0.27e834ae5KPHPd\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><br>Bold Aqua Body Spray 120ml Bold Life Body Spray collection uses the most contemporary and modern fragrances. With its long lasting properties, this range is perfect for men on the go.<br><ul><br> 	<li>Brand : Bold</li><br> 	<li>Type: Eau de Perfume</li><br> 	<li>Size : 200ml Fragrance</li><br> 	<li>Family : Woody &amp; Spicy</li><br></ul><br></div><br></div><br></div>','en','2021-01-11 04:56:07','2021-01-11 04:56:07'),(226,429,'CHRIS ADAMS ACTIVE MAN BODY SPRAY','pc','<strong>Article no: 3019</strong><br><br><b>Specifications:</b><br><ul><br> 	<li>Brand: Chris Adams</li><br> 	<li>Condition: Bran-new, unused, unopened, undamaged item</li><br> 	<li>Variant: Active Men</li><br> 	<li>Type: Body Spray</li><br> 	<li>Size: 200 ml</li><br> 	<li>Long lasting</li><br> 	<li>Targeted Group: Men</li><br></ul><br>Cool and Refreshing Body Spray<b>Active Man Body Spray</b> is a young, energetic and oozing charisma. It makes a splash wherever you go. Moreover, <b>Active Man</b> is a crisp and refreshing <b>body spray</b> that absorbs the freshness of aqua with tangy citrus notes, and herbal notes are offset by a sensual with musk.','en','2021-01-11 04:58:59','2021-01-11 04:58:59'),(227,430,'Active Woman Body Spray Deodorant For Women','pc','<strong>Article no: 3020</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.4d1438dfhyBWZa\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Size: 200 ml</li><br> 	<li class=\"\">Safe on skin</li><br> 	<li class=\"\">Long LastingTOP NOTES: Fresh Bergamot and Orange, Sparkling Grapefruit, Cut HerbsMIDDLE NOTES: Basket of Exotic Fruits, Rose Petals, Aquatic Jasmine<br><br>BASE NOTES: Precious Sandalwood, Leaves of Patchouly, Tonka Beans, Vanilla Sugar, Sensual White Musks<br><br>OLFACTIVE FAMILY: Floral-Fruity-Musky</li><br></ul><br></div><br></div><br></div>','en','2021-01-11 05:00:47','2021-01-11 05:00:47'),(228,431,'Armaf Shades For Men Body Spray','pc','<strong>Article no: 3021</strong><br><h6><strong>Armaf Shades:</strong></h6><br><a href=\"http://www.sterlingparfums.com/en/brand/fragrances/armaf\">Armaf</a> Shades <a href=\"http://orbis.pk/product/amaris-modern-girl-body-spray-200ml/\">Body Spray</a> is expression of luxury that is original and innovative collection of signature fragrances from armaf for men with quality, competitive pricing and unique packaging.<br><br><strong>Ingredients:</strong><br><br>Alcohol Denat, Aqua, (Water), Parfum (Fragrance), Dipropylene Glycol, Isopropyl Myristate, Ethylhexyl Glycerin, Propane, Limonene, Linalool, Citronellol, Butylphenyl methylpropional,Citral. By sterling perfumes<br>• Fragrance : Shades<br>• Gender : Men<br>• ML : 200','en','2021-01-11 05:02:54','2021-01-11 05:02:54'),(229,432,'BREMOD Black Oil','pc','<div dir=\"auto\"><strong>Article No:1084</strong></div><br><div dir=\"auto\"></div><br><div dir=\"auto\">Bremod Black Oil Magical Effects</div><br><div dir=\"auto\">Grey hair Coverage in 2 minutes</div>','en','2021-01-11 05:32:18','2021-01-11 05:32:18'),(230,433,'OLAY Day Natural White Cream','pc','<strong>Article No: 1085</strong><br><br>Olay Natural White Day Glowing Fairness cream nourishes and helps protect your skin with 7 benefits in just 1 bottle. Powered with a tri-Vitamin boost of B3, pro-B5 and E and SPF 24/PA++, for your natural glowing skin. Avoid contact with eyes.If contact occurs, rinse eyes thoroughly with water','en','2021-01-11 05:38:39','2021-01-11 05:38:39'),(231,434,'OLAY Night Natural White Cream','pc','<strong>Article No:1086</strong><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Item Form: Cream</span></li><br> 	<li><span class=\"a-list-item\">Lightens overall skin tone by reducing melanin transfer to skin surface; Reduces the appearance of dark spots</span></li><br> 	<li><span class=\"a-list-item\">Skin Type: Suitable For All Skin Types</span></li><br> 	<li><span class=\"a-list-item\">Application Area: Face and Neck</span></li><br> 	<li><span class=\"a-list-item\">Usage: Using your fingertips, smooth evenly onto clean skin over face and neck, once or twice a day. It can be used alone or under foundation make-up.</span></li><br> 	<li><span class=\"a-list-item\">Target Audience: Women</span></li><br></ul>','en','2021-01-11 05:40:16','2021-01-11 05:40:16'),(232,435,'L\'Oréal White Perfect Day Cream','pc','<strong>Article No: 1087</strong><br><br>LOréal Paris <b>White Perfect Day Cream</b> and <b>face moisturizer</b> is a non-greasy, anti-spot skincare solution that is enriched with brightening elements that enhance skin radiance and provide UV protection.','en','2021-01-11 05:41:32','2021-01-11 05:41:32'),(233,436,'L\'Oréal White Perfect Night Cream','pc','Article No: 1088<br><br><b>LOreal</b> Paris <b>White Perfect Night Cream</b>. <b>LOreal</b> Paris <b>White Perfect Night Cream</b> contains Melanin-Vanish and Tourmaline that reduce dark spots and visibly brighten the skin tone. The <b>cream</b> makes your skin fairer and more radiant. It inhibits melanin production and stimulates microcirculation, which makes your skin glow','en','2021-01-11 05:42:36','2021-01-11 05:42:36'),(234,437,'DOVE Dry Lotion','pc','<strong>Article No: 1089</strong><br><br>We have <b>Dove</b> DermaSeries Replenishing Body <b>Lotion</b>, that is formulated for severely <b>dry</b> skin. Its hypoallergenic, fragrance-free, clinically proven for lasting comfort for severely <b>dry</b> skin, and suitable for psoriasis and eczema-prone skin. The performance of the product depends on your skins specific needs.','en','2021-01-11 05:43:40','2021-01-11 05:43:40'),(235,438,'Dove Restoring Coconut oil and Almond milk Body Lotion','pc','<strong>Article No: 1090</strong><br><br>This moisturizing body <b>lotion</b> with <b>coconut</b> oil and almond milk quickly moisturizes body to offer an instant solution to rough, dry body. The fast absorbing formula allows the body <b>lotion</b> to instantly moisturizes and soften your skin, whilst the fast drying ensures there is no sticky or greasy residue.','en','2021-01-11 05:44:46','2021-01-11 05:44:46'),(236,439,'Armaf The Warrior Deodorant Body Spray For Men','pc','<strong>Article no: 3022</strong><br><br><strong>Description:</strong><br><br>Armaf The warriordeodorant the expression of luxury that is original and innovative collection of signature fragrances for men with quality, competitive pricing and unique packaging.<br><br>• By sterling perfumes<br><br>• Fragrance : The warrior<br><br>• Gender : Men<br><br>• ML : 200<br><br>Delicate ScentCharming Woody AromaLong LastingClassy BottleHarmony in Top, Middle/Heart &amp; Base Notes!','en','2021-01-11 05:45:56','2021-01-11 05:45:56'),(237,440,'Armaf Club De Nuit Intense Man Deodorant Body Spray','pc','<strong>Article no: 3023</strong><br><br><strong>PRODUCT DESCRIPTION:</strong><br><br>Armaf <b>Club De Nuit Intense Body Spray Mist</b> for <b>men</b> is a captivating blend <b>of</b> fruity accords with a smoldering dry down that gives the impression <b>of</b> a high-end <b>Perfume</b> at a surprisingly reasonable price. ... They currently have 79 scents in their fragrance line. <b>Club De Nuit Intense</b> was released 2015.<br><br>Club De Nuit Intense by Armaf is a woody fragrance for men.<br><br>Contains notes of lemon, black currant, apple, bergamot, pineapple, rose, jasmine, birch, vanilla, ambergris, musk and patchouli.<br><br>&nbsp;','en','2021-01-11 05:55:49','2021-01-11 05:55:49'),(238,441,'Enchanteur Charming Perfumed Body Lotion 500ml','pc','<div role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CBEQAA\"><strong>Article No: 1091</strong></div><br><div role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CBEQAA\"></div><br><div class=\"mod\" lang=\"en-PK\" data-md=\"61\"><br><div class=\"LGOjhe\" role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CBEQAA\"><span class=\"ILfuVd\"><span class=\"hgKElc\"><b>Enchanteur</b> Charming Body <b>Lotion</b> offers deep moisturisation while leaving your skin non-greasy. It has skin-friendly, healing ingredients like aloe vera and olive butter, and is crafted with the fragrance of roses, muguet and fresh citrus. Try it for huggable soft skin.</span></span></div><br></div><br><div class=\"g\"><br><div class=\"rc\" data-hveid=\"CA0QAA\" data-ved=\"2ahUKEwjl7ebh3vftAhULQkEAHc1dCM8QFSgAMAJ6BAgNEAA\"></div><br></div>','en','2021-01-11 05:56:59','2021-01-11 05:56:59'),(239,442,'Armaf Club De Nuit Women Deodorant Body Spray','pc','<strong>Article no: 3024</strong><br><h6 class=\"a-size-base-plus a-text-bold\">product description:</h6><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Top note: bergamot, grapefruit, peach, orange</span></li><br> 	<li><span class=\"a-list-item\">Middle note: geranium, jasmine, litchi, rose</span></li><br> 	<li><span class=\"a-list-item\"><span class=\"a-list-item\">Base note: musk, patchouli, vanilla, vetiver</span></span>Armaf Club De NuitNon Alcoholicperfume body spray isirresistible unique designer Armaf deodorant for women with beautiful designed packaging, the feminine aroma keeps your spirits high day long with class, style and elegance.• By sterling perfumes<br><br>• Fragrance : Club de nuitNon Alcoholic<br><br>• Gender : Women<br><br>• ML : 200</li><br></ul>','en','2021-01-11 05:58:17','2021-01-11 05:58:17'),(240,443,'Armaf High Street For Women Deodorant Body Spray','pc','<strong>Article no: 3025</strong><br><h6 class=\"a-size-base-plus a-text-bold\">product discription:</h6><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Top Note: Fresh citrus</span></li><br> 	<li><span class=\"a-list-item\">Middle Note: Honeysuckle, Magnolia</span></li><br></ul><br><ul><br> 	<li><span class=\"a-list-item\"><span class=\"a-list-item\">Base Note: Amber, Cashmere wood, Musk</span></span></li><br></ul><br><div class=\"FqsW\"><br><div class=\"_2LOI\">200 ml</div><br></div><br><div class=\"FqsW\"><br><div class=\"w3LC\">Ideal For:   Women</div><br></div><br><div class=\"FqsW\"><br><div class=\"w3LC\">Type:    Roll On</div><br></div><br><div class=\"FqsW\"><br><div class=\"w3LC\">Expiry Date:      15/09/2023</div><br></div><br><div class=\"FqsW\"><br><div class=\"_2LOI\"></div><br></div>','en','2021-01-11 05:59:18','2021-01-11 05:59:18'),(241,444,'Enchanteur Charming Perfumed Body Lotion 250ml','pc','<strong>Article No: 1092</strong><br><br><b>Enchanteur</b> Charming Body <b>Lotion</b> offers deep moisturisation while leaving your skin non-greasy. It has skin-friendly, healing ingredients like aloe vera and olive butter, and is crafted with the fragrance of roses, muguet and fresh citrus. Try it for huggable soft skin.','en','2021-01-11 06:01:48','2021-01-11 06:01:48'),(242,445,'Nivea Body Lotion Light Moisturizing & Cleansing 250ml','pc','<strong>Article No: 1093</strong><br><br><b>NIVEA Lotion</b> for Normal Skin is a light effective <b>lotion</b> that has been specially formulated to help maintain your skins natural moisture level. Ideal as a cleanser or moisturizer, skin is left feeling soft, smooth and hydrated. Skin compatibility dermatologically approved.','en','2021-01-11 06:03:06','2021-01-11 06:03:06'),(243,446,'NIVEA White Radiant & Smooth Body Lotion 250ml','pc','<strong>Article No: 1094</strong><br><br>This formula fights UV rays with UV filter plus 40X** Vitamin C that helps brighten up skin. It moisturizes for noticeably smoother skin that you can feel. With Deep <b>White</b> Essence*, concentrated whitening extract that deeply repairs and nourishes^ for fairer and radiant skin from deep within.','en','2021-01-11 06:18:28','2021-01-11 06:18:28'),(244,447,'Armaf High Street Midnight Women Deodorant Body Spray','pc','<strong>Article no: 3026</strong><br><h6 class=\"a-size-base-plus a-text-bold\">About this item:</h6><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Net content- 200 ml</span></li><br> 	<li><span class=\"a-list-item\">It is perfect to give as a Gift</span></li><br> 	<li><span class=\"a-list-item\">It has a long-lasting fragrance</span></li><br></ul><br><b>High Street Midnight</b> by <b>Armaf</b> is a Floral Fruity body spray for women. Top notes are Blood Orange and Citruses; middle notes are Osmanthus, Honeysuckle and Magnolia; base notes are Cashmere Wood, Musk and Amber.','en','2021-01-11 06:19:46','2021-01-11 06:19:46'),(245,448,'NIVEA blue lotion 125ml','pc','<strong>Article No: 1095</strong><br><br>The patented NIVEA formula is using the knowledge, that our skin contains sufficient moisture in its deeper layers, that assures its fresh, healthy look. Unluckily with time and exposure to outside influences our skin often looses access to this innter moisture depot. Inspired by natural skin processes NIVEA has developed an active, which reactivated the skin to use of htis source again.','en','2021-01-11 06:21:01','2021-01-11 06:21:01'),(246,449,'NIVEA White Radiant & Smooth Body Lotion 125ml','pc','<strong>Article No: 1096</strong><br><br>This formula fights UV rays with UV filter plus 40X** Vitamin C that helps brighten up skin. It moisturizes for noticeably smoother skin that you can feel. With deep <b>white</b> essence*, concentrated whitening extract that deeply repairs and nourishes^ for fairer and radiant skin from deep within.','en','2021-01-11 06:21:59','2021-01-11 06:21:59'),(247,450,'Jaguar Body Spray Deodorant Spray - For Men','pc','<strong>Article no: 3027</strong><br><div class=\"_3a9CI2\"><strong>Highlights:</strong></div><br><div class=\"_2418kt\"><br><ul><br> 	<li class=\"_21Ahn-\">Quantity: 150 ml</li><br> 	<li class=\"_21Ahn-\">Fragrance: Deodorant Spray</li><br> 	<li class=\"_21Ahn-\">For Men</li><br> 	<li><span class=\"a-list-item\">Launched by the design house of Jaguar</span></li><br> 	<li><span class=\"a-list-item\">This aromatic fougere fragrance has a blend of orange, juniper berries, lavender, mandarin orange, basil, star anise, orange blossom, and white musk</span></li><br> 	<li><span class=\"a-list-item\">Long-lasting fragrance</span></li><br> 	<li><span class=\"a-list-item\">Keeps perspiration and body odor at bay</span></li><br> 	<li><span class=\"a-list-item\">Amazing fragrance that keeps you fresh and rejuvenated</span></li><br> 	<li><span class=\"a-list-item\">Size : 150 ml</span></li><br> 	<li><span class=\"a-list-item\">Suitable For : Men</span></li><br></ul><br></div>','en','2021-01-11 06:23:46','2021-01-11 06:23:46'),(248,451,'BEAUTY CUTE MEN Body Spray','pc','<strong>Article no: 3028</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i3.5ea2586epqKZ6H\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Material: aluminium cans</li><br> 	<li class=\"\">The fragrance can last long time.</li><br> 	<li class=\"\">Top-quality, and reasonable price</li><br> 	<li class=\"\">The perfume is, not to stimulate the skin</li><br> 	<li class=\"\"> Great idea for promotion and gift</li><br> 	<li class=\"\">Long-lasting fragrance,made of high quality perfume</li><br></ul><br></div><br></div><br></div>','en','2021-01-11 06:24:56','2021-01-11 06:24:56'),(249,452,'NIVEA Nourishing Lotion Body Milk Richly Caring For Very Dry Skin, 400ml','pc','<strong>Article No:1097</strong><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">The formula with Almond oil softens the skin</span></li><br> 	<li><span class=\"a-list-item\">The actual product may be different than product image</span></li><br> 	<li><span class=\"a-list-item\">Long-lasting softness and protection</span></li><br> 	<li><span class=\"a-list-item\">Give your very dry skin intensive care</span></li><br></ul>','en','2021-01-11 06:26:18','2021-01-11 06:26:18'),(250,453,'NIVEA Express Hydration Lotion 400ml','pc','<strong>Article No:1098</strong><br><br><b>NIVEA Express Hydration</b> Body Lotion provides your normal to dry skin with the moisture and care it needs and deserves. The formula with Sea Minerals supplies you with moisture – all day long. ... The skin is well protected from drying out, because <b>water</b> loss is reduced and the moisture level of the skin is increased.','en','2021-01-11 06:27:39','2021-01-11 06:27:39'),(251,454,'Tag Him for Men Armaf Body Spray','pc','<strong>Article no: 3029</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i0.2d0a30fcwQZl8U\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Size: 200 ml</li><br> 	<li class=\"\">Long lasting</li><br></ul><br>Sensual and bold fragranceArmaf <b>Tag Him</b> fragrance <b>body spray</b> is aromatic woody fragrance with top notes of lemon, grapefruit and lavender mingled with spicy accents of pink pepper, ginger and warm woods of cedar and vetiver and its woody and ambery. irresistible unique fragrance.<br><br></div><br></div><br></div>','en','2021-01-11 06:28:41','2021-01-11 06:28:41'),(252,455,'Johnson\'s Body Cream 24-Hour Moisture Soft','pc','<div class=\"d9FyLd XcVN5d\"><b>Article no: 1099</b></div><div class=\"d9FyLd XcVN5d\"><b><br></b></div><div class=\"d9FyLd XcVN5d\"><b>jOHNSONS</b>® 24-Hour Moisture&nbsp;<b>Soft Cream</b></div><br><span class=\"hgKElc\">Enriched with shea butter, this&nbsp;<b>cream</b>&nbsp;delivers 24-hour hydration to prevent dryness or dull looking skin on both your face and body. With a subtle fragrance and no greasy or oily finish, the&nbsp;<b>soft cream</b>&nbsp;is promised to give your skin a silky&nbsp;<b>smooth</b>&nbsp;touch</span>','en','2021-01-11 06:30:44','2021-01-11 06:30:44'),(253,456,'Armaf Derby Club House Deodorant Body Spray For Men','pc','<strong>Article no: 3030</strong><br><br><strong>Description:</strong><br><br>A stunning redolence with natural notes of lavender and bergamot with a mystique heart of spices, patchouli, black woods.A stunning redolence with natural notes of lavender and bergamot with a mystique heart of spices, patchouli, black woods<br><br>• By Sterling perfumes<br><br>• Fragrance : Craze<br><br>• Gender : Men<br><br>• ML : 200','en','2021-01-11 06:31:54','2021-01-11 06:31:54'),(254,457,'Ulric De Varens Voy For Men Deodorant Spray','pc','<strong>Article no: 3031</strong><br><div class=\"_3cFJ8l\"><strong>description:</strong></div><br><div></div><br><div class=\"_2o-xpa\"><br><div class=\"_1mXcCf RmoJUa\">Give a zesty start to your day by dabbing this fantastic perfume introduced by UDV that adds a dash of panache in a man.</div><br><div><br><ul><br> 	<li class=\"_21Ahn-\">Quantity: 150 ml</li><br> 	<li class=\"_21Ahn-\">Fragrance: Deodorant Spray</li><br> 	<li class=\"_21Ahn-\">For Men</li><br></ul><br></div><br></div>','en','2021-01-11 06:33:54','2021-01-11 06:33:54'),(255,458,'Johnson\'s Baby Lotion 100ml','pc','<div><strong>Article No: 2000</strong></div><br><div></div><br><h5 class=\"d9FyLd XcVN5d\">Product <b>description</b></h5><br><span class=\"hgKElc\">Dermatologist-tested and clinically proven to be gentle and mild for your <b>babys</b> skin, the <b>lotion</b> combines <b>ingredients</b> long known to soothe and relieve your <b>babys</b> dry skin. <b>Johnsons Baby Lotion</b> is hypoallergenic and has a <b>baby</b>-fresh scent.</span>','en','2021-01-11 06:35:43','2021-01-11 06:35:43'),(256,459,'Johnson’s Baby Lotion 200ml','pc','<div><strong>Article No: 2001</strong></div><br><div></div><br><h5 class=\"d9FyLd XcVN5d\">Product <b>description</b></h5><br><span class=\"hgKElc\">Dermatologist-tested and clinically proven to be gentle and mild for your <b>baby’s</b> skin, the <b>lotion</b> combines <b>ingredients</b> long known to soothe and relieve your <b>baby’s</b> dry skin. <b>Johnson’s Baby Lotion</b> is hypoallergenic and has a <b>baby</b>-fresh scent.</span>','en','2021-01-11 06:41:23','2021-01-11 06:41:23'),(257,460,'HotIce Deodorant Body Spray Passion Men','pc','<strong>Article no: 3032</strong><br><br><strong>Discreption:</strong><br><br>Hot Ice deodorant for day long freshness with a soft fragrance.<br><br>Fragrance : Attitude<br><br>Gender : Men<br><br>Hotice symbolizes the spirit of todays man: sensitive, refined, strong and romantic. This cool fragrance opens with notes of lavender, mandarin, bergamot and lemon; followed by spicy-floral tones of coriander, lily, orange blossom, juniper berries, basil, jasmine and sage. The base notes are strong dominated by sandalwood, amber, musk and rosewood.<br><br>ML : 200','en','2021-01-11 06:42:37','2021-01-11 06:42:37'),(258,461,'Brut Original Deodorant Spray for Men','pc','<strong>Article no: 3033</strong><br><h6 class=\"a-size-base-plus a-text-bold\">product Discreption:</h6><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">The unmistakable and classic fragrance of BRUT in a Deo, for the classic BRUT proper man</span></li><br> 	<li><span class=\"a-list-item\">The Distinctive fragrance of Paris for the masculine man</span></li><br> 	<li><span class=\"a-list-item\">Brut Original is available in Eau De Toilette for men (Plexi), Eau De Toilette (Spray), After Shave (Splash-On), Cologne Splash-On, Deodorant Spray, and Roll OnBrut Deodorant Original Spray For Men, 200ml</span></li><br></ul><br><span class=\"a-list-item\">Faberge Brut Original is a refined, spicy, lavender, amber fragrance. This masculine scent possesses a blend of citrus top notes with hints of spicy woods.Long Lasting Protection. Brut’s seven unique variants provide a the long-lasting and distinctive fragrance that gives men the confidence they need throughout the whole day.</span>','en','2021-01-11 06:44:49','2021-01-11 06:44:49'),(259,462,'Lion Star Lunch Box BC-9','pc','<strong>Article no: BC-9</strong><br><br><strong>Product description:</strong><br><br>Some different colors of lunch box BC-9 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>','en','2021-01-11 06:46:12','2021-01-11 06:46:12'),(260,463,'Johnson’s Baby Lotion 500ml','pc','<div><strong>Article No: 2002</strong></div><br><div></div><br><h5 class=\"d9FyLd XcVN5d\">Product <b>description</b></h5><br><span class=\"hgKElc\">Dermatologist-tested and clinically proven to be gentle and mild for your <b>baby’s</b> skin, the <b>lotion</b> combines <b>ingredients</b> long known to soothe and relieve your <b>baby’s</b> dry skin. <b>Johnson’s Baby Lotion</b> is hypoallergenic and has a <b>baby</b>-fresh scent.</span>','en','2021-01-11 07:13:06','2021-01-11 07:13:06'),(261,464,'JOHNSON\'S baby shampoo 500ml','pc','<strong>Article No: 2003</strong><br><br><strong>Product Description:</strong><br><br><b>Johnsons</b> <sup>®</sup> <b>baby shampoo</b> gently cleanses hair &amp; scalp, but mild on eyes as pure water, tear-free and gentle to eyes. Weve taken care of babies for over 125 years. Our mild, gentle products, are great for babies and adults too','en','2021-01-11 07:14:38','2021-01-11 07:14:38'),(262,465,'JOHNSON\'S baby shampoo 200ml','pc','Article No: 2004<br><br><strong>Product Description:</strong><br><br><b>Johnsons</b> <sup>®</sup> <b>baby shampoo</b> gently cleanses hair &amp; scalp, but mild on eyes as pure water, tear-free and gentle to eyes. Weve taken care of babies for over 125 years. Our mild, gentle products, are great for babies and adults too.','en','2021-01-11 07:15:51','2021-01-11 07:15:51'),(263,466,'JOHNSON\'S baby shampoo 100ml','pc','Article No: 2005<br><br><strong>Product Description</strong><br><br><b>Johnsons</b> <sup>®</sup> <b>baby shampoo</b> gently cleanses hair &amp; scalp, but mild on eyes as pure water, tear-free and gentle to eyes. Weve taken care of babies for over 125 years. Our mild, gentle products, are great for babies and adults too.','en','2021-01-11 07:17:10','2021-01-11 07:17:10'),(264,467,'Vaseline Petroleum Jelly 100g','pc','<strong>Article No: 2006</strong><br><br><strong>Product Description</strong><br><br><b>Petroleum jelly</b> (also called <b>petrolatum</b>) is a mixture of mineral oils and waxes, which form a semisolid <b>jelly</b>-like substance. He eventually packaged this <b>jelly</b> as <b>Vaseline</b>. <b>Petroleum jellys</b> benefits come from its main ingredient <b>petroleum</b>, which helps seal your skin with a water-protective barrier.','en','2021-01-11 07:18:31','2021-01-11 07:18:31'),(265,468,'Vaseline Petroleum Jelly 50g','pc','<strong>Article No: 2007</strong><br><br><strong>Product Description:</strong><br><br><b>Vaseline</b> is the name of a popular brand of <b>petroleum jelly</b>. Its a mixture of minerals and waxes that are easily spreadable. <b>Vaseline</b> has been used for more than 140 years as a healing balm and ointment for wounds, burns, and chafed skin. <b>Petroleum</b> is the main ingredient of <b>Vaseline</b>.','en','2021-01-11 07:19:46','2021-01-11 07:19:46'),(266,469,'Fa Fresh Roll On Deodorant Antiperspirant','pc','<strong>Article No: 2008</strong><br><br><strong>Product Description</strong><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Skin Friendly, Quick Dry and Dermatologically Proven</span></li><br> 	<li><span class=\"a-list-item\">Modern, Unique Design in High Quality Glass Bottle</span></li><br> 	<li><span class=\"a-list-item\">Continuous and Effective 24 hour Protection</span></li><br></ul>','en','2021-01-11 07:21:44','2021-01-11 07:21:44'),(267,470,'Gillette Shaving Foam 200ml','pc','<strong>Article No: 2009</strong><br><br><strong>Product Description</strong><br><br><b>Gillette Foamy</b> Sensitive Skin is lightly fragranced and provides a rich, creamy lather that spreads easily and rinses clean for that <b>Foamy</b> shave men have enjoyed for generations.','en','2021-01-11 07:22:51','2021-01-11 07:22:51'),(268,471,'DENIM Original Aftershave','pc','<div><strong>Article No: 2010</strong></div><br><div></div><br><div class=\"d9FyLd XcVN5d\"><strong>Product Description</strong></div><br><span class=\"hgKElc\">Original <b>denim aftershave</b> is a retro classic scent that characterizes the masculine character of a man. Original <b>denim aftershave</b> is very wearable and can be worn everyday. The subtle yet strong dry down <b>fragrance</b> will last all day without irritation.</span>','en','2021-01-11 07:25:45','2021-01-11 07:25:45'),(269,472,'Brylcreem Red+Green','pc','<strong>Article No: 2011</strong><br><br><strong>Product Description:</strong><br><br><b>Brylcreem</b>. For nearly 90 years, <b>Brylcreem</b> has been a staple in mens medicine cabinets. Its mineral oil/beeswax base provides maximum sheen and all-day hold, while keeping your hair soft and pliable. Plus, it leaves your hair smelling delightfully clean and manly.','en','2021-01-11 07:27:43','2021-01-11 07:27:43'),(270,473,'Gatsby Moist Treatment Hair Cream 125gm','pc','<strong>Article No: 2012</strong><br><br><b>Product Description</b><br><br><b>Gatsby</b> Moist Treatment Hair <b>Cream</b> with effective penetration and high styling ability. It helps firmly organize the hair and create long-lasting non-sticky hairstyles. Spreads well in hair keeping it soft and smooth, for easy styling.','en','2021-01-11 07:29:08','2021-01-21 11:00:48'),(271,474,'Fair & Lovely Advanced Multi Vitamin Face Cream 80g','pc','<div><strong>Article No: 2014</strong></div><br><div></div><br><div class=\"d9FyLd XcVN5d\"><strong>Product description</strong></div><br><span class=\"hgKElc\"><b>Fair</b> &amp; <b>Lovely Advanced</b> Multivitamin is a face cream with the hero ingredient of multivitamins, which are understood to work from within to give skin a blemish-free glow along with a smooth and soft texture.</span>','en','2021-01-11 07:31:57','2021-01-11 07:31:57'),(272,475,'Fair & Lovely Advanced Multi Vitamin Face Cream, 50g','pc','<div><strong>Article No: 2013</strong></div><br><div></div><br><div class=\"d9FyLd XcVN5d\"><strong>Product description</strong></div><br><span class=\"hgKElc\"><b>Fair</b> &amp; <b>Lovely Advanced</b> Multivitamin is a face cream with the hero ingredient of multivitamins, which are understood to work from within to give skin a blemish-free glow along with a smooth and soft texture.</span>','en','2021-01-11 07:33:21','2021-01-11 07:33:21'),(273,476,'Fair & Lovely Ayurvedic Care Face Cream 50g','pc','<div><strong>Article No: 2015</strong></div><br><div></div><br><div class=\"d9FyLd XcVN5d\"><strong>Product description</strong></div><br><span class=\"hgKElc\">Ingredients like Lodhra, Khas &amp; Neelotpal calms &amp; soothes the skin ; 2. Manjishtha, Kesar &amp; Padmak clears marks on the skin &amp; improves complexion ; 3. Milk, Bargad &amp; wheat germ oil clears uneven skin tone. <b>Fair</b> &amp; <b>Lovely Ayurvedic</b> care <b>cream</b> is not just a <b>cream</b>, its a Golden Glow treatment.</span>','en','2021-01-11 07:34:43','2021-01-11 07:34:43'),(274,477,'Fair & Lovely Fairness Face Wash Fairness','pc','<div><strong>Article No: 2016</strong></div><br><div></div><br><div class=\"d9FyLd XcVN5d\"><strong>Product description</strong></div><br><span class=\"hgKElc\"><b>Fair and lovely fairness face wash</b> gives you the 3 step expert action, which cleanses, exfoliates and massages with multi vitamin formula. Removes dirt and pollution from deep within your skin with every <b>wash</b>. Exfoliates to remove dead skin cells with every <b>wash</b>. Gives you a fairer look instantly.</span>','en','2021-01-11 07:35:50','2021-01-11 07:35:50'),(275,478,'Clean & Clear Essentials Foaming Facial Wash 50ml','pc','<strong>Article No: 2017</strong><br><br><strong>Product Description</strong><br><br><b>CLEAN</b> &amp; <b>CLEAR</b>® ESSENTIALS Foaming Facial <b>Cleanser</b> cleans skin and washes away problem-causing dirt, oil, and make-up to help skin stay <b>clean</b> and healthy. The rich lather is oil-free and gently removes dirt and oil without over-drying and leaves skin <b>clean</b> and refreshed.','en','2021-01-11 07:38:11','2021-01-11 07:38:11'),(276,479,'Clean & Clear Essentials Foaming Facial wash 100ml','pc','<strong>Article No: 2018</strong><br><br><b>Product Description</b><br><br><b>CLEAN</b> &amp; <b>CLEAR</b>® ESSENTIALS Foaming Facial <b>Cleanser</b> cleans skin and washes away problem-causing dirt, oil, and make-up to help skin stay <b>clean</b> and healthy. The rich lather is oil-free and gently removes dirt and oil without over-drying and leaves skin <b>clean</b> and refreshed.','en','2021-01-11 07:39:18','2021-01-11 07:39:18'),(277,480,'NIVEA Sparkling White Facial Form','pc','<div><strong>Article No: 2019</strong></div><br><div></div><br><div class=\"d9FyLd XcVN5d\"><strong>Product description</strong></div><br><span class=\"hgKElc\"><b>Nivea</b> 10x <b>Sparkling White Whitening Facial</b> Foam cleanses and brighten the <b>face</b> so that the skin looks beautiful glow. <b>Face</b> 10X brighter and black stains camouflaged in 7 days.</span>','en','2021-01-11 07:40:14','2021-01-11 07:40:14'),(278,481,'Fair & Lovely Fairness Face Wash 100g','pc','<strong>Article No: 2020</strong><br><br><b>Product Description</b><br><br><b>Fair and lovely fairness face wash</b> gives you the 3 step expert action, which cleanses, exfoliates and massages with multi vitamin formula. Removes dirt and pollution from deep within your skin with every <b>wash</b>. Exfoliates to remove dead skin cells with every <b>wash</b>. It also vitalizes the skin pores and smoothens its tone.','en','2021-01-11 07:42:26','2021-01-11 07:42:26'),(279,482,'Fair And Lovely BB Cream Jar','pc','<strong>Article No: 2021</strong><br><br><strong>Product Description</strong><br><br>The <b>Fair and Lovely BB</b> Cream is a <b>fairness</b> cream with a make-up finish. This expert product brings together the benefits of foundation and advanced multivitamin <b>fairness</b> cream. Its suitable for all Indian skin tones. Use it daily to hide dark spots and blemishes, and achieve a bright and fresh look every day.','en','2021-01-11 07:43:50','2021-01-11 07:43:50'),(280,483,'Parachute Coconut Oil 200 ml','pc','<div><strong>Article No: 2022</strong></div><br><div></div><br><div class=\"d9FyLd XcVN5d\"><strong>Product description</strong></div><br><span class=\"hgKElc\">Let the 100% pure <b>Parachute Coconut Hair Oil</b> give you shiny, smooth, and lovely <b>hair</b> to make heads turn. This <b>hair oil</b> features Pure <b>Coconut Oil</b>, a 5-stage Purification Process, and a consistent composition to give you healthy and beautiful long locks.</span>','en','2021-01-11 07:45:22','2021-01-11 07:45:22'),(281,484,'Parachute Coconut Oil 100 ml','pc','<div><strong>Article No: 2023</strong></div><br><div></div><br><div class=\"d9FyLd XcVN5d\"><strong>Product description</strong></div><br><span class=\"hgKElc\">Let the 100% pure <b>Parachute Coconut Hair Oil</b> give you shiny, smooth, and lovely <b>hair</b> to make heads turn. This <b>hair oil</b> features Pure <b>Coconut Oil</b>, a 5-stage Purification Process, and a consistent composition to give you healthy and beautiful long locks.</span>','en','2021-01-11 07:46:39','2021-01-11 07:46:39'),(282,485,'Parachute Coconut Oil 500 ml','pc','<div>Article No: 2024</div><br><div></div><br><div class=\"d9FyLd XcVN5d\"><strong>Product description</strong></div><br><span class=\"hgKElc\">Let the 100% pure <b>Parachute Coconut Hair Oil</b> give you shiny, smooth, and lovely <b>hair</b> to make heads turn. This <b>hair oil</b> features Pure <b>Coconut Oil</b>, a 5-stage Purification Process, and a consistent composition to give you healthy and beautiful long locks.</span>','en','2021-01-11 07:47:50','2021-01-11 07:47:50'),(283,486,'Closeup Diamond Attraction Toothpaste','pc','<strong>Article No: 2025</strong><br><br><strong>Product Description</strong><br><br><b>Closeup</b> White <b>Attraction Diamond</b> gel toothpaste is co-created with cosmetic dentists to give you the power of <b>attraction</b> just when you need it. With its revolutionary Blue Light Technology, it makes your teeth visibly whiter* in one brush.','en','2021-01-11 07:48:48','2021-01-11 07:48:48'),(284,487,'Subaru Black Hair Shampoo 200ml','pc','<strong>Article No: 2026</strong><br><br><strong>Product description</strong><br><br><b>Subaru</b> Black Hair <b>Shampoo</b> is a kind of <b>shampoo</b> which can dye your hair into black in 5 mins and specially designed to make your hair black shinning just through the ordinary process of washing hair at bathroom. Black Hair <b>Shampoo</b> in non-toxic with high technology. It is also nourishes, protects and repairs scalp.','en','2021-01-11 07:49:52','2021-01-11 07:49:52'),(285,488,'Subaru Black Hair Shampoo 400ml','pc','<strong>Article No: 2027</strong><br><br><strong>Product Description</strong><br><br><b>Subaru</b> Black Hair <b>Shampoo</b> is a kind of <b>shampoo</b> which can dye your hair into black in 5 mins and specially designed to make your hair black shinning just through the ordinary process of washing hair at bathroom. Black Hair <b>Shampoo</b> in non-toxic with high technology. It is also nourishes, protects and repairs scalp.','en','2021-01-11 07:51:04','2021-01-11 07:51:04'),(286,489,'NIVEA SOFT MOISTURIZING CREAM 100 ml','pc','<strong>Article No: 2028</strong><br><br><strong>Product Description</strong><br><br><b>Nivea Soft</b> Mix it <b>100ml</b> moisturizing <b>cream</b>, suitable for all skin types, face and body, moisturizing. Thanks to its formula enriched with Jojoba Oil and Vitamin E. Take the exuberant scent of exotic fruits, make life sparkling! Light, it is absorbed immediately and gives an immediate sensation of freshness.','en','2021-01-11 07:52:27','2021-01-11 07:52:27'),(287,581,'Pampers New Born, No. 2 Mini, 3-6 KG 80-Pack','1','<p><b>Article no: 1211</b></p><div class=\"d9FyLd XcVN5d\" style=\"padding: 0px 0px 10px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"><b>Pampers</b>&nbsp;Are Designed With Babies in Mind</div><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Like most modern disposable&nbsp;<b>diapers</b>,&nbsp;<b>Pampers</b>&nbsp;have a layered construction, which allows the transfer and distribution of liquid away from the baby to an absorbent core, where the liquid is locked away to help keep your baby comfortable and dry.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><ul><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">The lining in the diaper contains baby lotion, which prevents irritation</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Stretchy sides provide a comfortable fit</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Magic gel inside the lining allows the diaper to remain dry for 12 hours</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Wetness indicator: when the magic gel turns blue, it indicates that the baby has wet the diaper</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Prevents sagging and bulking with even wetness distribution</li><li><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"></span><b><br></b></li></ul>','en','2021-01-13 02:16:55','2021-01-13 02:16:55'),(288,582,'Pampers Baby-Dry, No. 4 Maxi, 9-18 KG 64-Pack','1','<p><b>Article no: 1212</b></p><div class=\"d9FyLd XcVN5d\" style=\"padding: 0px 0px 10px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"><b>Pampers</b>&nbsp;Are Designed With Babies in Mind</div><ul><li><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Like most modern disposable&nbsp;<b>diapers</b>,&nbsp;<b>Pampers</b>&nbsp;have a layered construction, which allows the transfer and distribution of liquid away from the baby to an absorbent core, where the liquid is locked away to help keep your baby comfortable and dry.</span></li></ul><p><b><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3></b></p><p><b><ul class=\"list__product--listings\" style=\"margin-bottom: 10px; padding: 0px 0px 0px 1.5em; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-weight: 400;\"></ul></b></p><ul><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Designed to offer better comfort and protection</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Flexible design makes it easy to move around in</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Soft waist band and leg cuffs keeps the pamper secure</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Does not contain any parabens or harmful chemicals that cause irritation</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Micro Pearls technology is able to absorb 30 times more moisture</li></ul>','en','2021-01-13 02:21:21','2021-01-13 02:21:21'),(289,583,'Pampers Baby-Dry, No. 5 Junior, 11-25KG 60-Pack','1','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 1213</span></p><div class=\"d9FyLd XcVN5d\" style=\"padding: 0px 0px 10px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"><span style=\"font-weight: bolder;\">Pampers</span>&nbsp;Are Designed With Babies in Mind</div><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Like most modern disposable&nbsp;<span style=\"font-weight: bolder;\">diapers</span>,&nbsp;<span style=\"font-weight: bolder;\">Pampers</span>&nbsp;has a layered construction, which allows the transfer and distribution of liquid away from the baby to an absorbent core, where the liquid is locked away to help keep your baby comfortable and dry.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"></span></p><ul><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Increased Comfort and Luxury with silky soft materials</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Breathable fabric allows air circulation to keep your child fresh</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Super Absorbent technology keeps baby dry for 12 hours</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Ultra Care is ensured with chamomile baby lotion</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">3 Way Fit secures diaper and allows free movement</li><li><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"></span></li></ul>','en','2021-01-13 02:29:17','2021-01-13 02:29:17'),(290,584,'Pampers Baby-Dry, No. 6 XL, 15+ KG 48-Pack','1','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 1214</span></p><div class=\"d9FyLd XcVN5d\" style=\"padding: 0px 0px 10px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"><span style=\"font-weight: bolder;\">Pampers</span>&nbsp;Are Designed With Babies in Mind</div><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Like most modern disposable&nbsp;<span style=\"font-weight: bolder;\">diapers</span>,&nbsp;<span style=\"font-weight: bolder;\">Pampers</span>&nbsp;has a layered construction, which allows the transfer and distribution of liquid away from the baby to an absorbent core, where the liquid is locked away to help keep your baby comfortable and dry.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"></span></p><ul><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Revolutionary three absorb channels which prevent leakage</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Breathable and soft leg cuffs and belt that circulates air and keeps the baby\'s skin fresh</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Flexible waist band that easily adopts the baby\'s movement and keeps him/her comfortable</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Prevents sagging and bulking due to wetness for at least 12 hours</li></ul>','en','2021-01-13 02:35:53','2021-01-13 02:35:53'),(291,585,'Pampers Baby-Dry, No. 3 Midi, 6-10 KG 72-Pack','1','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 1215</span></p><div class=\"d9FyLd XcVN5d\" style=\"padding: 0px 0px 10px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"><span style=\"font-weight: bolder;\">Pampers</span>&nbsp;Are Designed With Babies in Mind</div><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Like most modern disposable&nbsp;<span style=\"font-weight: bolder;\">diapers</span>,&nbsp;<span style=\"font-weight: bolder;\">Pampers</span>&nbsp;has a layered construction, which allows the transfer and distribution of liquid away from the baby to an absorbent core, where the liquid is locked away to help keep your baby comfortable and dry.</span></p><h3 class=\"list__product--title\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-weight: 600; line-height: 1.35; font-size: 15px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\"><span style=\"font-weight: bolder;\">Product Highlights:</span></h3><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\"></span></p><ul class=\"list__product--listings\" style=\"margin-bottom: 10px; padding: 0px 0px 0px 1.5em; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"></ul><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"></span></p><ul style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Designed to offer better comfort and protection</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Flexible design makes it easy to move around in</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Soft waist band and leg cuffs keeps the pamper secure</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Does not contain any parabens or harmful chemicals that cause irritation</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Micro Pearls technology is able to absorb 30 times more moisture</li></ul>','en','2021-01-13 02:41:00','2021-01-13 02:41:00'),(292,586,'Pampers No. 1, New Born Dry 2-5 KG 21-Pack','1','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 1216</span></p><div class=\"d9FyLd XcVN5d\" style=\"padding: 0px 0px 10px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"><span style=\"font-weight: bolder;\">Pampers</span>&nbsp;Are Designed With Babies in Mind</div><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Like most modern disposable&nbsp;<span style=\"font-weight: bolder;\">diapers</span>,&nbsp;<span style=\"font-weight: bolder;\">Pampers</span>&nbsp;have a layered construction, which allows the transfer and distribution of liquid away from the baby to an absorbent core, where the liquid is locked away to help keep your baby comfortable and dry.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"></span></p><ul><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Contain aloe leaf extracts, which prevents rashes and keeps the baby\'s skin smooth</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Has three absorb channels, which distributes the wetness evenly and prevents sagging</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">The naval-friendly shape of the nappy fits comfortably around the newborn\'s belly</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Contains a premium protection indicator, which will tell you through color change that the baby needs changing</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Stretchy sides provide a comfortable fit</li></ul>','en','2021-01-13 02:44:04','2021-01-13 02:44:04'),(293,587,'Pampers Baby-Dry, No. 3 Midi, 6-10 KG 18-Pack','1','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 1217</span></p><div class=\"d9FyLd XcVN5d\" style=\"padding: 0px 0px 10px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"><span style=\"font-weight: bolder;\">Pampers</span>&nbsp;Are Designed With Babies in Mind</div><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Like most modern disposable&nbsp;<span style=\"font-weight: bolder;\">diapers</span>,&nbsp;<span style=\"font-weight: bolder;\">Pampers</span>&nbsp;has a layered construction, which allows the transfer and distribution of liquid away from the baby to an absorbent core, where the liquid is locked away to help keep your baby comfortable and dry.</span></p><h3 class=\"list__product--title\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-weight: 600; line-height: 1.35; font-size: 15px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\"><span style=\"font-weight: bolder;\">Product Highlights:</span></h3><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\"></span></p><ul class=\"list__product--listings\" style=\"margin-bottom: 10px; padding: 0px 0px 0px 1.5em; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"></ul><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"></span></p><ul style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Designed to offer better comfort and protection</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Flexible design makes it easy to move around in</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Soft waist band and leg cuffs keeps the pamper secure</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Does not contain any parabens or harmful chemicals that cause irritation</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Micro Pearls technology is able to absorb 30 times more moisture</li></ul>','en','2021-01-13 02:47:33','2021-01-13 02:47:33'),(294,588,'Pampers Baby-Dry, No. 4 Maxi, 9-18 KG 16-Pack','1','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 1218</span></p><div class=\"d9FyLd XcVN5d\" style=\"padding: 0px 0px 10px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"><span style=\"font-weight: bolder;\">Pampers</span>&nbsp;Are Designed With Babies in Mind</div><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Like most modern disposable&nbsp;<span style=\"font-weight: bolder;\">diapers</span>,&nbsp;<span style=\"font-weight: bolder;\">Pampers</span>&nbsp;has a layered construction, which allows the transfer and distribution of liquid away from the baby to an absorbent core, where the liquid is locked away to help keep your baby comfortable and dry.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"></span></p><ul><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Designed to offer better comfort and protection</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Flexible design makes it easy to move around in</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Soft waistband and leg cuffs keeps the pamper secure</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Does not contain any parabens or harmful chemicals that cause irritation</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Micro Pearls technology is able to absorb 30 times more moisture</li></ul>','en','2021-01-13 02:51:38','2021-01-13 02:51:38'),(295,589,'Pampers Baby-Dry, No. 5 Junior, 11-25KG 15-Pack','1','<div class=\"bg-white mb-3 shadow-sm rounded\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><div class=\"tab-content pt-0\"><div class=\"tab-pane fade active show\" id=\"tab_default_1\"><div class=\"p-4\"><div class=\"mw-100 overflow-hidden text-left\"><p><span style=\"font-weight: bolder;\">Article no: 1219</span></p><div class=\"d9FyLd XcVN5d\" style=\"padding: 0px 0px 10px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"><span style=\"font-weight: bolder;\">Pampers</span>&nbsp;Are Designed With Babies in Mind</div><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Like most modern disposable&nbsp;<span style=\"font-weight: bolder;\">diapers</span>,&nbsp;<span style=\"font-weight: bolder;\">Pampers</span>&nbsp;has a layered construction, which allows the transfer and distribution of liquid away from the baby to an absorbent core, where the liquid is locked away to help keep your baby comfortable and dry.</span></p><h3 class=\"list__product--title\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-weight: 600; line-height: 1.35; font-size: 15px; color: rgb(34, 34, 34);\">Product Highlights:</h3><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"></span></p><ul><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Increased Comfort and Luxury with silky soft materials</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Breathable fabric allows air circulation to keep your child fresh</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Super Absorbent technology keeps baby dry for 12 hours</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Ultra Care is ensured with chamomile baby lotion</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">3 Way Fit secures diaper and allows free movement</li><li><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"></span></li></ul></div></div></div></div></div><div class=\"bg-white rounded shadow-sm\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><div class=\"border-bottom p-3\"></div></div>','en','2021-01-13 02:55:31','2021-01-13 02:55:31'),(296,590,'Canbebe Jumbo New Born No. 1 2-5 KG 84-Pack','1','<p><b>Article no: 2020</b></p><p><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Let your baby enjoy hours of uninterrupted sleep and play with&nbsp;</span><b style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Canbebe</b><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;ComfortDry&nbsp;</span><b style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diapers</b><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">! The super-absorbent layer of our&nbsp;</span><b style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diaper</b><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;keeps your little one dry and fits your baby perfectly. The elastic tape prevents leakages by covering the baby\'s belly and gives total freedom to move around.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><p style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\"><br></p><ul><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Each pack of Canbebe Jumbo newborn pampers in No.1 contains a total of 84 pieces</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">The Canbebe Jumbo Newborn pampers in No. 1 are meant for use on new born babies or babies that weigh around 2 to 5 kg only</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe Jumbo newborn No.1 pampers make use of Canbebe\'s Flexfit technology which makes these pampers 21% more absorbent</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">To prevent leaks, these pampers also have a front and back barrier lock that can reduce the chances of pamper leakage</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">The pampers are designed to be free of parabens and fragrances, which can irritate the sensitive skin of newborns</li></ul><p><b><br></b></p>','en','2021-01-13 03:02:38','2021-01-13 03:02:38'),(297,591,'Canbebe Comfort-Dry jumbo mini no.2 3-6 KG 74 packs','1','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 2021</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Let your baby enjoy hours of uninterrupted sleep and play with&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Canbebe</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;ComfortDry&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diapers</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">! The super-absorbent layer of our&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diaper</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;keeps your little one dry and fits your baby perfectly. The elastic tape prevents leakages by covering the baby\'s belly and gives total freedom to move around.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><ul class=\"list__product--listings\" style=\"margin-bottom: 10px; padding: 0px 0px 0px 1.5em; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe\'s Jumbo mini No. 2 pampers are designed to be worn by babies who weigh around 3 to 6 kg</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Each pack of Canbebe\'s Jumbo mini pampers contains a total of 74 pieces of pampers</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">These pampers are specifically designed with an anti-leak technology on the front and back of them.</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\"></li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe\'s Jumbo mini pampers have the Flexfit technology which prevents collection of moisture</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">This feature also helps to make Canbebe\'s Jumbo mini pampers 21% dryer than other pampers</li></ul>','en','2021-01-13 03:17:01','2021-01-13 03:17:01'),(298,592,'Canbebe Jumbo Midi No. 3, 4-9 KG 64-Pack','1','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 2022</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Let your baby enjoy hours of uninterrupted sleep and play with&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Canbebe</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;ComfortDry&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diapers</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">! The super-absorbent layer of our&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diaper</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;keeps your little one dry and fits your baby perfectly. The elastic tape prevents leakages by covering the baby\'s belly and gives total freedom to move around.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><ul class=\"list__product--listings\" style=\"margin-bottom: 10px; padding: 0px 0px 0px 1.5em; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe jumbo midi pampers in number 3 are designed for growing babies who weigh around 4kgs to 9kgs.<p style=\"margin: 1em 0px;\"></p></li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Each pack of Canbebe jumbo midi pampers in Number 3 contains 64 pieces for babies</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">These pampers have the Canbebe FlexFit technology which makes these pampers 21% more absorbent than others</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">The Canbebe jumbo midi pampers in number 3 come with sticky, elastic side straps that are easy to fix in place on the baby</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">They also have an anti-leak and anti-odor technology, which makes them perfect for long wear</li></ul>','en','2021-01-13 03:19:47','2021-01-13 03:19:47'),(299,593,'Canbebe Jumbo Maxi No. 4, 7-18 KG 58-Pack','1','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 2023</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Let your baby enjoy hours of uninterrupted sleep and play with&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Canbebe</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;ComfortDry&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diapers</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">! The super-absorbent layer of our&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diaper</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;keeps your little one dry and fits your baby perfectly. The elastic tape prevents leakages by covering the baby\'s belly and gives total freedom to move around.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><ul class=\"list__product--listings\" style=\"margin-bottom: 10px; padding: 0px 0px 0px 1.5em; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Each pack of Canbebe jumbo maxi pampers in No.4 contains a total of 58 pieces</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe jumbo maxi pampers in No.4 are suited for babies who weigh around 7kg to 18kg</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe\'s pampers come with the FlexFit technology that prevents moisture collecting on skin of the babies</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">These pampers are found to be 21% more efficient than other pampers in the market</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe\'s jumbo maxi pampers are tested by dermatologists and can even be used for babies who have sensitive skin</li></ul>','en','2021-01-13 03:22:46','2021-01-13 03:22:46'),(300,594,'Canbebe Comfort Dry No. 5 Junior, Jumbo, 11-25 KG, 52-Pack','1','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 2024</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Let your baby enjoy hours of uninterrupted sleep and play with&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Canbebe</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;ComfortDry&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diapers</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">! The super-absorbent layer of our&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diaper</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;keeps your little one dry and fits your baby perfectly. The elastic tape prevents leakages by covering the baby\'s belly and gives total freedom to move around.</span></p><h3 class=\"list__product--title\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-weight: 600; line-height: 1.35; font-size: 15px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><ul class=\"list__product--listings\" style=\"margin-bottom: 10px; padding: 0px 0px 0px 1.5em; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe jumbo junior pampers in number 5 are designed for growing babies who weigh around 11kgs to 25kgs.<p style=\"margin: 1em 0px;\"></p></li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Each pack of Canbebe jumbo midi pampers in Number 5 contains 52 pieces for babies</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">These pampers have the Canbebe FlexFit technology which makes these pampers 21% more absorbent than others</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">The Canbebe jumbo midi pampers in number 5 come with sticky, elastic side straps that are easy to fix in place on the baby</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">They also have an anti-leak and anti-odor technology, which makes them perfect for long wear</li></ul>','en','2021-01-13 03:26:53','2021-01-13 03:26:53'),(301,595,'Canbebe Comfort Dry No. 6 , Jumbo Extra Large, 16+ KG, 46-Pack','1','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 2025</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Let your baby enjoy hours of uninterrupted sleep and play with&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Canbebe</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;ComfortDry&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diapers</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">! The super-absorbent layer of our&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diaper</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;keeps your little one dry and fits your baby perfectly. The elastic tape prevents leakages by covering the baby\'s belly and gives total freedom to move around.</span></p><h3 class=\"list__product--title\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-weight: 600; line-height: 1.35; font-size: 15px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\"><br></h3>','en','2021-01-13 03:33:55','2021-01-13 03:33:55'),(302,596,'Canbebe Jumbo Mini No. 2, 3-6 KG 40-Pack','1','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 2026</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Let your baby enjoy hours of uninterrupted sleep and play with&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Canbebe</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;ComfortDry&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diapers</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">! The super-absorbent layer of our&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diaper</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;keeps your little one dry and fits your baby perfectly. The elastic tape prevents leakages by covering the baby\'s belly and gives total freedom to move around.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">roduct Highlights:</h3><ul class=\"list__product--listings\" style=\"margin-bottom: 10px; padding: 0px 0px 0px 1.5em; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe\'s Jumbo mini No. 2 pampers are designed to be worn by babies who weigh around 3 to 6 kg</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Each pack of Canbebe\'s Jumbo mini pampers contains a total of 40 pieces of pampers</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">These pampers are specifically designed with an anti-leak technology on the front and back of them.</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\"></li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe\'s Jumbo mini pampers have the Flexfit technology which prevents collection of moisture</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">This feature also helps to make Canbebe\'s Jumbo mini pampers 21% dryer than other pampers</li></ul>','en','2021-01-13 03:37:57','2021-01-13 03:37:57'),(303,597,'Canbebe Jumbo Midi No. 3, 4-9 KG 36-Pack','1','<div class=\"bg-white mb-3 shadow-sm rounded\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><div class=\"tab-content pt-0\"><div class=\"tab-pane fade active show\" id=\"tab_default_1\"><div class=\"p-4\"><div class=\"mw-100 overflow-hidden text-left\"><p><span style=\"font-weight: bolder;\">Article no: 2027</span></p><p><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Let your baby enjoy hours of uninterrupted sleep and play with&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Canbebe</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;ComfortDry&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diapers</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">! The super-absorbent layer of our&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diaper</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;keeps your little one dry and fits your baby perfectly. The elastic tape prevents leakages by covering the baby\'s belly and gives total freedom to move around.</span></p><h3 class=\"list__product--title\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-weight: 600; line-height: 1.35; font-size: 15px; color: rgb(34, 34, 34);\">Product Highlights:</h3><ul class=\"list__product--listings\" style=\"margin-bottom: 10px; padding: 0px 0px 0px 1.5em; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe jumbo midi pampers in number 3 are designed for growing babies who weigh around 4kgs to 9kgs.<p style=\"margin: 1em 0px;\"></p></li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Each pack of Canbebe jumbo midi pampers in Number 3 contains 36 pieces for babies</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">These pampers have the Canbebe FlexFit technology which makes these pampers 21% more absorbent than others</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">The Canbebe jumbo midi pampers in number 3 come with sticky, elastic side straps that are easy to fix in place on the baby</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">They also have an anti-leak and anti-odor technology, which makes them perfect for long wear</li></ul></div></div></div></div></div>','en','2021-01-13 03:41:05','2021-01-13 03:41:05'),(304,598,'Canbebe Comfort Dry No. 5 Junior, Jumbo, 11-25 KG, 26-Pack','1','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 2028</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Let your baby enjoy hours of uninterrupted sleep and play with&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Canbebe</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;ComfortDry&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diapers</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">! The super-absorbent layer of our&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diaper</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;keeps your little one dry and fits your baby perfectly. The elastic tape prevents leakages by covering the baby\'s belly and gives total freedom to move around.</span></p><h3 class=\"list__product--title\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-weight: 600; line-height: 1.35; font-size: 15px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><ul class=\"list__product--listings\" style=\"margin-bottom: 10px; padding: 0px 0px 0px 1.5em; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe jumbo junior pampers in number 5 are designed for growing babies who weigh around 11kgs to 25kgs.<p style=\"margin: 1em 0px;\"></p></li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Each pack of Canbebe jumbo midi pampers in Number 5 contains 26 pieces for babies</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">These pampers have the Canbebe FlexFit technology which makes these pampers 21% more absorbent than others</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">The Canbebe jumbo midi pampers in number 5 come with sticky, elastic side straps that are easy to fix in place on the baby</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">They also have an anti-leak and anti-odor technology, which makes them perfect for long wear</li></ul>','en','2021-01-13 03:52:06','2021-01-13 03:52:06'),(305,599,'Rocket Pampers Super Dry no. 1-2 mini,  3-6 KG 80 pack','1','<p><b>Article no: 1229</b></p><p><span style=\"font-family: Arial, sans-serif; font-size: 16px; white-space: pre-wrap;\">Featuring advanced technology, it\'s three-dimensional (3D) leak guard prevents leakage while the wetness indicator reminds the mother to change the diaper in time. It has a big elastic waistband which makes it perfectly fit your baby’s waist and can be easily put on with cutting hook tape. Its beehive pattern surface is extremely soft and skin-friendly which won’t cause any rash or irritation to your baby skin no matter how long and frequent it is used. Strongly recommended by mothers. Use it all day and all night and keep your baby and yourself at ease.</span></p><p><span style=\"font-family: Arial, sans-serif; font-size: 16px; white-space: pre-wrap;\"><b>Product Highlights:</b></span></p><ul class=\"\" style=\"margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; list-style: none; overflow: hidden; columns: auto 2; column-gap: 32px;\"><ul></ul></ul><p></p><ul><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Superior quality pampers</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Super Dry</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Reasonable price</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Flexible</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Easy to use</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Better protection</li></ul><div class=\"html-content detail-content\" style=\"margin: 16px 0px 0px; padding: 0px 0px 16px; word-break: break-word; position: relative; height: auto; line-height: 19px; overflow-y: hidden; border-bottom: 1px solid rgb(239, 240, 245); font-family: Roboto, -apple-system, BlinkMacSystemFont, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px;\"></div><p><span style=\"font-family: Arial, sans-serif; font-size: 16px; white-space: pre-wrap;\"><br></span><b><br></b></p>','en','2021-01-13 04:16:18','2021-01-13 04:16:18'),(306,600,'Rocket Pampers Super Dry no.3 midi, 4-9 KG 72 pack','1','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 1230</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-family: Arial, sans-serif; font-size: 16px; white-space: pre-wrap;\">Featuring advanced technology, it\'s three-dimensional (3D) leak guard prevents leakage while the wetness indicator reminds the mother to change the diaper in time. It has a big elastic waistband which makes it perfectly fit your baby’s waist and can be easily put on with cutting hook tape. Its beehive pattern surface is extremely soft and skin-friendly which won’t cause any rash or irritation to your baby\'s skin no matter how long and frequent it is used. Strongly recommended by mothers. Use it all day and all night and keep your baby and yourself at ease.</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-family: Arial, sans-serif; font-size: 16px; white-space: pre-wrap;\"><span style=\"font-weight: bolder;\">Product Highlights:</span></span></p><ul class=\"\" style=\"margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; padding: 0px; list-style: none; overflow: hidden; columns: auto 2; column-gap: 32px;\"><ul></ul></ul><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><ul style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Superior quality pampers</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Super Dry</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Reasonable price</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Flexible</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Easy to use</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Better protection</li></ul>','en','2021-01-13 04:20:03','2021-01-13 04:20:03'),(307,601,'Rocket Pampers Super Dry no. 4 maxi, 9-16 KG 64 pack','1','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 1231</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-family: Arial, sans-serif; font-size: 16px; white-space: pre-wrap;\">Featuring advanced technology, it\'s three-dimensional (3D) leak guard prevents leakage while the wetness indicator reminds the mother to change the diaper in time. It has a big elastic waistband which makes it perfectly fit your baby’s waist and can be easily put on with cutting hook tape. Its beehive pattern surface is extremely soft and skin-friendly which won’t cause any rash or irritation to your baby skin no matter how long and frequent it is used. Strongly recommended by mothers. Use it all day and all night and keep your baby and yourself at ease.</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-family: Arial, sans-serif; font-size: 16px; white-space: pre-wrap;\"><span style=\"font-weight: bolder;\">Product Highlights:</span></span></p><ul class=\"\" style=\"margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; padding: 0px; list-style: none; overflow: hidden; columns: auto 2; column-gap: 32px;\"><ul></ul></ul><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><ul style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Superior quality pampers</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Super Dry</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Reasonable price</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Flexible</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Easy to use</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Better protection</li></ul>','en','2021-01-13 04:25:01','2021-01-13 04:25:01'),(308,602,'Rocket Pampers Super Dry no. 5 junior, 11-25 KG 58 pack','1','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 1232</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-family: Arial, sans-serif; font-size: 16px; white-space: pre-wrap;\">Featuring advanced technology, it\'s three-dimensional (3D) leak guard prevents leakage while the wetness indicator reminds the mother to change the diaper in time. It has a big elastic waistband which makes it perfectly fit your baby’s waist and can be easily put on with cutting hook tape. Its beehive pattern surface is extremely soft and skin-friendly which won’t cause any rash or irritation to your baby skin no matter how long and frequent it is used. Strongly recommended by mothers. Use it all day and all night and keep your baby and yourself at ease.</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-family: Arial, sans-serif; font-size: 16px; white-space: pre-wrap;\"><span style=\"font-weight: bolder;\">Product Highlights:</span></span></p><ul class=\"\" style=\"margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; padding: 0px; list-style: none; overflow: hidden; columns: auto 2; column-gap: 32px;\"><ul></ul></ul><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><ul style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Superior quality pampers</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Super Dry</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Reasonable price</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Flexible</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Easy to use</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Better protection</li></ul>','en','2021-01-13 04:28:06','2021-01-13 04:28:06'),(309,603,'Calvin Klein Obsession Eau De Parfum For Men','1','<p><b>Article no: 2034</b></p><p><b>Description:</b></p><p><span style=\"color: rgb(136, 136, 136); font-family: &quot;Open Sans&quot;; font-size: 14px;\">Obsession Edp 100ml Eau de Parfum is a rare gift from the world of perfumery. There is a unique variety of top, middle and base notes that creates a highly sophisticated fragrance for women. Its main notes include bergamot, rose, lily of the valley, white flowers, mandarine, gardenia, jasmine, tonka bean, amber, sandalwood and so on. Besides having a mesmerizing aroma, the packaging of the product is also quite feminine.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><ul class=\"list__product--listings\" style=\"margin-bottom: 10px; padding: 0px 0px 0px 1.5em; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Eau De Parfum spray</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Floral and fruity fragrance</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Combination of woody and floral notes</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Elegant and stylish packaging</li></ul><p><b><br></b></p>','en','2021-01-13 04:36:38','2021-01-13 04:36:38'),(319,613,'Aspire College Girls Uniform','Each Pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 02:13:29','2021-01-21 10:30:47'),(320,614,'Aspire College Boy\'s Shirt','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 02:15:28','2021-01-21 10:30:55'),(321,615,'Islamia College Boy\'s Shirt','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 02:20:42','2021-01-21 10:31:00'),(322,616,'Islamia College Boy\'s Pent','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 02:24:04','2021-01-21 10:31:10'),(323,617,'Kips College Girls Uniform','Each Pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 02:29:43','2021-01-21 10:31:19'),(324,618,'Kips College Boy\'s Shirt','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 02:30:39','2021-01-21 10:31:28'),(325,619,'Punjab College Girl\'s Uniform','Each Pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 02:41:17','2021-01-21 10:31:35'),(326,620,'Punjab College Boy\'s Shirt','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 02:43:21','2021-01-21 10:31:42'),(327,621,'Punjab College Boy\'s Pent','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 02:45:39','2021-01-21 10:31:48'),(328,622,'Superior College Girl\'s Uniform (3rd & 4th year)','Each Pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 02:52:26','2021-01-21 10:31:56'),(329,623,'Superior College Boy\'s Pent for (1st, 2nd, 3rd & 4th year)','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:03:32','2021-01-21 10:32:03'),(330,624,'Superior College Girl\'s Uniform (1st & 2nd year)','Each Pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:05:25','2021-01-21 10:32:09'),(331,625,'Allied School - Shirts','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:06:27','2021-01-21 10:32:15'),(332,626,'Superior College Boy\'s Shirt','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:08:49','2021-01-21 10:32:21'),(333,627,'Allied School - Elastic pent','Each',NULL,'en','2021-01-16 03:09:08','2021-01-20 08:28:35'),(334,628,'Allied School - Girls Uniform','Each pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:13:30','2021-01-21 10:32:28'),(335,629,'Army Public School And College System - Shirt','Each',NULL,'en','2021-01-16 03:16:09','2021-01-20 08:20:25'),(336,630,'City High School - Shirt','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:21:43','2021-01-21 10:34:11'),(337,631,'Plane White School Uniform for Girl\'s','Each Pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:23:32','2021-01-21 10:34:06'),(338,632,'City High School - Elastic Pent','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:23:50','2021-01-21 10:34:00'),(339,633,'City High School - Girls Uniform','Each pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:27:44','2021-01-21 10:33:54'),(340,634,'BLue Cuff and Collar, White Uniform for Girl\'s','Each Pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:28:20','2021-01-21 10:33:50'),(341,635,'Blue Cuff and Collar, Stripe Blue Uniform for Girl\'s','Each Pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:30:23','2021-01-21 10:33:42'),(342,636,'Dar - Arqam School - shirt','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:30:28','2021-01-21 10:33:34'),(343,637,'Dar - Arqam School - Elastic pent','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:33:30','2021-01-21 10:33:28'),(344,638,'Blue & White Gents Collar - Uniform for Girl\'s','Each Pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:33:37','2021-01-21 10:33:22'),(345,639,'Dar - Arqam School - wasit pent','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:37:59','2021-01-21 10:33:16'),(346,640,'Blue & White Ladies Collar - Uniform for Girl\'s','Each Pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:38:17','2021-01-21 10:32:54'),(347,641,'Dar - Arqam School - Girls Uniform','Each pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:39:38','2021-01-21 10:32:49'),(348,642,'Dark Grey Waist Pent for Boy\'s','Each Pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:40:20','2021-01-21 10:32:40'),(349,643,'Dark Grey Elastic Pent for Boy\'s','Each Pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:41:42','2021-01-21 10:32:34'),(350,644,'Divisional Model School - Elastic Summer Pent','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:43:43','2021-01-21 10:38:12'),(351,645,'Dark Brown Waist Pent for Boy\'s','Each Pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:44:18','2021-01-21 10:38:17'),(352,646,'Divisional Model School - Waist Summer Pent','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:45:58','2021-01-21 10:38:24'),(353,647,'Dark Brown Elastic Pent for Boy\'s','Each Pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:46:26','2021-01-21 10:38:31'),(354,648,'Dark Green Elastic Pent for Boy\'s','Each Pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:47:54','2021-01-21 10:38:36'),(355,649,'Divisional Model School - Elastic Winter Pent','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:48:22','2021-01-21 10:38:42'),(356,650,'Grey Elastic Pent (Karachi) for Boy\'s','Each Pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:49:24','2021-01-21 10:38:48'),(357,651,'Divisional Model School - Waist Winter Pent','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:49:45','2021-01-21 10:38:53'),(358,652,'Khaki Brown Elastic Pent for Boy\'s','Each Pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:51:22','2021-01-21 10:39:00'),(359,653,'Divisional Model School - shirt','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:51:42','2021-01-21 10:39:05'),(360,654,'Light Green Elastic Pent for Boy\'s','Each Pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:52:57','2021-01-21 10:39:13'),(361,655,'Divisional Model School - Girls Uniform','Each pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:53:06','2021-01-21 10:39:18'),(362,656,'Navy Blue Waist Pent for Boy\'s','Each Pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:54:22','2021-01-21 10:39:36'),(363,657,'Divisional Public school - Elastic Winter Pent','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:56:02','2021-01-21 10:39:41'),(364,658,'Navy Blue Elastic Pent for Boy\'s','Each Pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:56:20','2021-01-21 10:39:46'),(365,659,'Divisional Public School - Waist Winter Pent','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:58:05','2021-01-21 10:39:52'),(366,660,'Plane Black Pent for Boy\'s','Each Pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 03:59:15','2021-01-21 10:39:58'),(367,661,'Divisional Public school - Elastic Summer Pent','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 04:00:06','2021-01-21 10:40:06'),(368,662,'Plane Black Elastic Pent for Boy\'s','Each Pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 04:00:57','2021-01-21 10:40:11'),(369,663,'Divisional Public school - Waist Summer Pent','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 04:01:31','2021-01-21 10:40:17'),(370,664,'Sea Green Elastic Pent for Boy\'s','Each Pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 04:02:30','2021-01-21 10:40:24'),(371,665,'Divisional Public school - Girls Uniform','Each pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 04:03:47','2021-01-21 10:40:32'),(372,666,'Silver Grey Waist Pent for Boy\'s','Each Pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 04:03:51','2021-01-21 10:40:37'),(373,667,'Silver Grey Elastic Pent for Boy\'s','Each Pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 04:05:00','2021-01-21 10:40:43'),(374,668,'The Educators School - Shirt','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 04:06:22','2021-01-21 10:40:49'),(375,669,'Blue Lining Shirt For Boy\'s','Each Pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 04:07:10','2021-01-21 10:40:55'),(376,670,'The Educators School - Elastic Pent','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 04:07:36','2021-01-21 10:41:06'),(377,671,'Blue Stripe & Blue Collar Lining Shirt for Boy\'s','Each Pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 04:09:08','2021-01-21 10:41:11'),(378,672,'The Educators School - Girls Uniform','Each pair',NULL,'en','2021-01-16 04:09:12','2021-01-16 04:09:12'),(379,673,'White Stripe & White Collar Blue Lining Shirt for Boy\'s','Each Pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 04:10:25','2021-01-21 10:41:16'),(380,674,'Green Dot Public School - Shirt','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 04:11:23','2021-01-21 10:41:21'),(381,675,'Plane White Shirt for Boy\'s','Each Pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 04:11:50','2021-01-21 10:41:26'),(382,676,'School Blue Shirt for Boy\'s','Each Pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 04:14:07','2021-01-21 10:42:05'),(383,677,'Punjab Worker Welfare School - Shirt','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 04:14:24','2021-01-21 10:42:10'),(384,678,'Sky Blue Shirt for Boy\'s','Each Pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 04:15:24','2021-01-21 11:09:00'),(385,679,'Punjab Worker Welfare School - Elastic Pent','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 04:15:37','2021-01-21 11:08:54'),(386,680,'Blue Check Shirt for Boy\'s','Each Pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 04:18:11','2021-01-21 11:08:49'),(387,681,'Punjab Worker Welfare School - Girls uniform','Each pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 04:18:31','2021-01-21 11:08:39'),(388,682,'Sunny Ideal School - Shirt','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 04:20:54','2021-01-21 11:08:32'),(389,683,'Sunny Ideal School - Elatic Pent','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 04:22:08','2021-01-21 11:08:27'),(390,684,'Sunny Ideal School - Girls Uniform','Each pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 04:23:35','2021-01-21 11:08:21'),(391,685,'The ACE School System - Shirt','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 04:26:09','2021-01-21 11:08:13'),(392,686,'The ACE School System - Elastic Pent','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 04:28:07','2021-01-21 11:08:08'),(393,687,'The ACE School System - Wasit Pent','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 04:29:42','2021-01-21 11:08:02'),(394,688,'The ACE School System - Girls Uniform','Each pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 04:31:13','2021-01-21 11:07:55'),(395,689,'The Arqam School - Elastic Summer Pent','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 04:33:53','2021-01-21 11:07:48'),(396,690,'The Arqam School - Waist Winter Pent','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 04:35:23','2021-01-21 11:07:41'),(397,691,'The Arqam School - Shirt','Each',NULL,'en','2021-01-16 04:36:43','2021-01-16 04:36:43'),(398,692,'The Arqam School - Girls Uniform','Each pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 04:38:18','2021-01-21 10:53:23'),(399,693,'The Smart School - Shirt','Each',NULL,'en','2021-01-16 04:40:07','2021-01-16 04:40:07'),(400,694,'The Smart School - Elastic Pent','Each',NULL,'en','2021-01-16 04:41:22','2021-01-20 03:35:51'),(401,695,'The Smart School - Girls Uniform','Each pair',NULL,'en','2021-01-16 04:43:06','2021-01-16 04:43:06'),(402,696,'White Rose School System - Elastic Pent','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 04:45:18','2021-01-21 11:09:05'),(403,697,'White Rose School System - Wait Pent','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 04:46:34','2021-01-21 11:09:12'),(404,698,'White Rose School System - Girls Uniform','Each pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 04:47:56','2021-01-21 11:09:17'),(405,699,'Allied School - Baby Girl Uniform Shirt','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 06:10:34','2021-01-21 11:09:23'),(406,700,'City High School - Baby Girl Uniform A-line shirt','Each pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 06:13:55','2021-01-21 11:09:29'),(407,701,'Dar - Arqam School - Baby Girl Uniform Suit','Each pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 06:16:42','2021-01-21 11:09:35'),(408,702,'Divisional Model School - Baby Girl Uniform Shirt','Each pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 06:26:13','2021-01-21 11:09:42'),(409,703,'Divisional Public school - (Nursery) Baby Girl Uniform A-line Shirt','Each pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 06:28:48','2021-01-21 11:09:55'),(410,704,'Divisional Public school - (Prep & One ) Baby Girl Uniform Shirt','Each pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 06:31:23','2021-01-21 11:10:04'),(411,705,'Divisional Public school - (Two Three & Four Class ) Baby Girl Uniform','Each pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 06:38:23','2021-01-21 11:10:09'),(412,706,'The Educators School - Baby Boy Uniform','Each pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 06:40:42','2021-01-21 11:10:13'),(413,707,'The Educators School - Baby Girl Uniform Shirt','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 06:43:41','2021-01-21 11:10:18'),(414,708,'The ACE School System - Baby Girl Uniform A-Line shirt','Each pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 06:45:33','2021-01-21 11:10:23'),(415,709,'The Arqam School - Baby Girl Uniform','Each pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 07:05:49','2021-01-21 11:10:30'),(416,710,'The Smart School - Baby Girl Uniform shirt','Each pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 07:07:47','2021-01-21 11:10:38'),(417,711,'White Rose School System - Baby Girl Uniform Shirt','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 07:10:26','2021-01-21 11:14:24'),(418,712,'Divisional Public school - (Premium campus prep to 5 class) Baby Girl Uniform','Each pair','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-16 07:16:51','2021-01-21 11:14:18'),(419,713,'Allied School - Baby Girl Uniform Skirt','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-19 05:02:43','2021-01-21 11:14:13'),(420,714,'Divisional Model School - Baby Girl Uniform Skirt','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-19 05:26:02','2021-01-21 11:14:05'),(421,715,'The Educators School - Baby Girl Uniform Skirt','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-19 05:34:20','2021-01-21 11:13:59'),(422,716,'White Rose School System - Baby Girl Uniform Skirt','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-19 05:38:13','2021-01-21 11:13:53'),(423,717,'Brown Jersey For Boys','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-20 03:04:18','2021-01-21 11:13:47'),(424,718,'Navy Blue Jersey For Boys','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-20 03:06:46','2021-01-21 11:13:39'),(425,719,'White Rose School System - Jersey For Boys','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-20 09:27:54','2021-01-21 11:13:33'),(426,720,'Islamia College for Boys - Jersey','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-20 09:40:49','2021-01-21 11:13:28'),(427,721,'Mehroon Jersey For Boys','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-20 09:47:31','2021-01-21 11:12:57'),(428,722,'Grey Jersey For Boys','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-20 09:51:56','2021-01-21 11:12:51'),(429,723,'Punjab group of colleges - sleeveless sweater For Boys & Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-20 09:58:55','2021-01-21 11:12:42'),(430,724,'Kips College - sleeveless sweater For Boys & Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-20 10:02:46','2021-01-21 11:12:35'),(431,725,'The Educators School - Jacket For Boys & Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-20 10:07:07','2021-01-21 11:12:28'),(432,726,'Punjab group of colleges - Zipper For Girls','Each',NULL,'en','2021-01-20 10:10:42','2021-01-20 10:10:42'),(433,727,'Aspire Group Of Colleges - sleeveless sweater For Boys & Girls','Each',NULL,'en','2021-01-20 10:16:56','2021-01-20 10:16:56'),(434,728,'Allied School - sleeveless sweater For Boys & Girls','Each',NULL,'en','2021-01-20 10:20:32','2021-01-20 10:20:32'),(435,729,'The Smart School - sleeveless sweater For Boys & Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-20 10:24:53','2021-01-21 11:14:37'),(436,730,'Aspire Group Of Colleges - Jersey For Boys','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-20 10:29:26','2021-01-21 11:14:42'),(437,731,'Black Blazer Coat For Boys & Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-20 10:34:34','2021-01-21 11:14:49'),(438,732,'Allied School - Jacket For Girls & Boys','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 01:53:28','2021-01-21 11:14:54'),(439,733,'Kips College - Jacket For Boys & Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed manufacturing\r\ncompany in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna providing\r\nbest quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check,\r\nbest quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 01:58:04','2021-01-21 03:41:20'),(440,734,'The Educators School - winter Cap For play group','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed manufacturing\r\ncompany in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna providing\r\nbest quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check,\r\nbest quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 02:03:51','2021-01-21 03:41:11'),(441,735,'Divisional Public School - Baby Girl Uniform Skirt (Prep & One)','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed manufacturing\r\ncompany in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna providing\r\nbest quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check,\r\nbest quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 02:09:44','2021-01-21 03:41:04'),(442,736,'The Educators School - Baby Boy Uniform Shirt','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed manufacturing\r\ncompany in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna providing\r\nbest quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check,\r\nbest quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 02:15:22','2021-01-21 03:40:56'),(443,737,'Green Dot Public School - Girls Uniform','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed manufacturing\r\ncompany in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna providing\r\nbest quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check,\r\nbest quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 02:24:39','2021-01-21 03:40:50'),(444,738,'White Suit With Royal Blue Collar Girls Uniform','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed manufacturing\r\ncompany in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna providing\r\nbest quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check,\r\nbest quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 02:30:50','2021-01-21 03:40:42'),(445,739,'Aspire Group Of Colleges - Jersey For Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed manufacturing\r\ncompany in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna providing\r\nbest quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check,\r\nbest quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 02:35:06','2021-01-21 03:40:33'),(446,740,'Superior college - Jersey For Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed manufacturing\r\ncompany in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna providing\r\nbest quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check,\r\nbest quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 02:39:17','2021-01-21 03:40:27'),(447,741,'Blue Uniform Jersey For Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed manufacturing\r\ncompany in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna providing\r\nbest quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check,\r\nbest quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 02:45:49','2021-01-21 03:40:14'),(448,742,'White Rose School System - Jersey For Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed manufacturing\r\ncompany in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna providing\r\nbest quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check,\r\nbest quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 02:50:32','2021-01-21 03:29:02'),(449,743,'Black Uniform Jersey For Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed manufacturing\r\ncompany in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna providing\r\nbest quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check,\r\nbest quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 02:57:08','2021-01-21 03:24:33'),(450,744,'Mehroon Jersey For Girls','Each',NULL,'en','2021-01-21 03:16:03','2021-01-21 03:16:03'),(451,745,'Royal Blue Uniform Jersey For Girls','Each',NULL,'en','2021-01-21 03:20:31','2021-01-21 03:20:31'),(452,746,'The Arqam School - Jersey For Girls','Each',NULL,'en','2021-01-21 03:24:56','2021-01-21 03:24:56'),(453,747,'Superior college - Sleeveless Sweater For Boys & Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 03:31:14','2021-01-21 11:24:44'),(454,748,'Sunny Ideal School - Sleeveless Sweater For Boys & girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 03:42:14','2021-01-21 11:24:38'),(455,749,'Green Dot Public School - Sleeveless Sweater For Girls & Boys','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 03:59:04','2021-01-21 11:24:32'),(456,750,'Green Uniform Sleeveless Sweater for Boys & Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 04:06:13','2021-01-21 11:24:27'),(457,751,'Dar - Arqam School - Sleeveless Sweater For Boys & Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 04:11:32','2021-01-21 11:24:20'),(458,752,'Green Uniform Jersey For Boys','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 04:14:49','2021-01-21 11:24:16'),(459,753,'Green Dot Public School - Jersey For Boys','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 04:17:02','2021-01-21 11:24:08'),(460,754,'Allied School - Winter Cap','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 04:20:40','2021-01-21 11:24:01'),(461,755,'The Educators School - Winter cap','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 04:22:23','2021-01-21 11:23:56'),(462,756,'Mehroon Sleeveless Sweater For Boys & Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 04:24:49','2021-01-21 11:23:52'),(463,757,'Divisional Model School - Sleeveless Sweater For Boys & Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 04:28:12','2021-01-21 11:23:44'),(464,758,'The Arqam School - Sleeveless Sweater For Boys','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 04:30:35','2021-01-21 11:23:38'),(465,759,'Royal Blue Coat For Boys & Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 04:35:07','2021-01-21 11:23:32'),(466,760,'The Arqam School - Winter Coat For Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 04:37:59','2021-01-21 11:23:23'),(467,761,'Green Uniform Coat For Boys & Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 04:41:54','2021-01-21 11:23:17'),(468,762,'Green Dot Public School - Winter Coat For Boys & Girls','Each',NULL,'en','2021-01-21 04:45:35','2021-01-21 04:45:35'),(469,763,'Dar - Arqam School - Green Winter Coat For Boys & Girls','Each',NULL,'en','2021-01-21 04:47:51','2021-01-21 04:47:51'),(470,764,'Sunny Ideal School - Winter Coat For Boys & Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 04:50:39','2021-01-21 11:27:07'),(471,765,'Navy Blue Coat For Boys & Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 04:55:54','2021-01-21 11:26:55'),(472,766,'Divisional Public school - Winter Coat For Boys & Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 04:58:29','2021-01-21 11:26:45'),(473,767,'The Educators School - Winter Coat For Boys & Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 05:00:56','2021-01-21 11:26:36'),(474,768,'Punjab group of colleges - Winter Coat For Boys & Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 05:04:11','2021-01-21 11:26:29'),(475,769,'Islamia College for Boys - Winter Coat','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 05:05:55','2021-01-21 11:26:17'),(476,770,'City High School - Winter Coat For Boys & Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 05:09:27','2021-01-21 11:26:10'),(477,771,'White Rose School System - Winter Coat For Boys & Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 05:11:15','2021-01-21 11:26:04'),(478,772,'Allied School - Winter Coat For Boys & Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 05:13:05','2021-01-21 11:25:58'),(479,773,'Mahroon Uniform Coat For Boys & Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 05:16:32','2021-01-21 11:25:41'),(480,774,'Divisional Model College - Winter Coat For Boys & girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 05:18:26','2021-01-21 11:25:34'),(481,775,'The Arqam School - Winter Coat For Boys','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 05:20:13','2021-01-21 11:25:16'),(482,776,'Punjab group of colleges - Jersey For Boys','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 05:23:17','2021-01-21 11:25:08'),(483,777,'Mehroon Winter School Cap','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 05:28:02','2021-01-21 11:24:57'),(484,778,'Divisional Model College - Winter Cap','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 05:29:24','2021-01-21 11:24:49'),(485,779,'The Arqam School - Winter Cap','Each',NULL,'en','2021-01-21 05:30:21','2021-01-21 05:30:21'),(486,780,'Black Uniform Winter Cap','Each',NULL,'en','2021-01-21 05:32:09','2021-01-21 05:32:09'),(487,781,'Grey Uniform Winter Cap','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Woolen Cap</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 05:34:13','2021-01-21 11:32:42'),(488,782,'Punjab Worker Welfare School - Winter School Cap','Each',NULL,'en','2021-01-21 05:35:47','2021-01-21 05:35:47'),(489,783,'White Rose School System - Winter Cap','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Woolen Cap</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 05:38:14','2021-01-21 11:32:37'),(490,784,'Divisional Public school - Winter Cap','Each',NULL,'en','2021-01-21 06:16:53','2021-01-21 06:18:42'),(491,785,'Navy Blue Winter Cap','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Woolen Cap</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 06:19:40','2021-01-21 11:32:31'),(492,787,'City High School - Winter School Cap','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Woolen Cap</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 06:20:54','2021-01-21 11:32:26'),(493,788,'Brown Winter School Cap','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Woolen Cap</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 06:26:06','2021-01-21 11:32:21'),(494,789,'The ACE School System - Winter School Cap','Each',NULL,'en','2021-01-21 06:30:17','2021-01-21 06:30:17'),(495,790,'Green Winter School Cap','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Woolen Cap</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 06:35:02','2021-01-21 11:32:16'),(496,791,'Green Dot Public School - Winter School Cap','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Woolen Cap</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 06:36:23','2021-01-21 11:32:11'),(497,792,'Dar - Arqam School - Winter School Cap','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Woolen Cap</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 06:37:36','2021-01-21 11:32:02'),(498,793,'Sunny Ideal School - Winter School Cap','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Woolen Cap</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 06:39:26','2021-01-21 11:31:58'),(499,794,'Royal Blue Winter Cap','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Woolen Cap</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 06:41:54','2021-01-21 11:31:54'),(500,795,'The Educators School - Belt','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Belt</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 07:21:38','2021-01-21 11:34:37'),(501,796,'Superior college - Belt','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Belt</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 07:25:26','2021-01-21 11:34:40'),(502,797,'The Arqam School - Belt','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Belt</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 07:27:23','2021-01-21 11:34:45'),(503,798,'The ACE School System - Belt','Each',NULL,'en','2021-01-21 07:29:43','2021-01-21 07:29:43'),(504,799,'White Rose School System - Belt','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Belt</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 07:32:07','2021-01-21 11:34:48'),(505,800,'Divisional Public school - Belt','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Belt</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 07:37:35','2021-01-21 11:34:57'),(506,801,'Punjab group of colleges - Belt','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Belt</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 07:39:33','2021-01-21 11:35:01'),(507,802,'The Smart School - Belt','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Belt</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 07:41:26','2021-01-21 11:35:05'),(508,803,'Dar - Arqam School - Belt','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Belt</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 07:43:41','2021-01-21 11:35:11'),(509,804,'The ACE School System - Girls Dupatta','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 09:06:35','2021-01-21 11:38:15'),(510,805,'The Arqam School - Girls Scarf','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 09:11:01','2021-01-21 11:38:10'),(511,806,'The ACE School System - Scarf','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 09:16:46','2021-01-21 11:38:04'),(512,807,'Dar - Arqam School - Scarf','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 09:19:11','2021-01-21 11:37:58'),(513,808,'Sunny Ideal School - Girls Dupatta','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 09:21:50','2021-01-21 11:37:52'),(514,809,'Allied School - Girls Dupatta','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 09:23:42','2021-01-21 11:37:46'),(515,810,'Divisional Model College - Girls Dupatta','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 09:25:45','2021-01-21 11:37:41'),(516,811,'Mehroon School Dupatta For Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 09:27:30','2021-01-21 11:37:34'),(517,812,'Superior college - Girls Dupatta','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 09:29:49','2021-01-21 11:37:29'),(518,813,'White Uniform Dupatta For Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 09:32:05','2021-01-21 11:37:25'),(519,814,'White Rose School System - Girls Dupatta','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 09:33:03','2021-01-21 11:37:19'),(520,815,'The Educators School - Girls Dupatta','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 09:34:52','2021-01-21 11:37:14'),(521,816,'White Dupatta With Navy Blue Border For Girls','Each',NULL,'en','2021-01-21 09:42:37','2021-01-21 09:42:37'),(522,817,'Divisional Public school - Girls Dupatta','Each',NULL,'en','2021-01-21 09:44:02','2021-01-21 09:44:02'),(523,818,'Aspire Group Of Colleges - Girls Dupatta','Each',NULL,'en','2021-01-21 09:47:37','2021-01-21 09:47:37'),(524,819,'Punjab group of colleges - Girls Dupatta','Each',NULL,'en','2021-01-21 09:49:48','2021-01-21 09:49:48'),(525,820,'white Shafoon Dupatta For Girls','Each',NULL,'en','2021-01-21 09:50:43','2021-01-21 09:50:43'),(526,821,'Punjab Worker Welfare School - Girls Dupatta','Each',NULL,'en','2021-01-21 09:53:11','2021-01-21 09:53:11'),(527,822,'The Smart School - Girls Dupatta','Each',NULL,'en','2021-01-21 09:55:12','2021-01-21 09:55:12'),(528,823,'White Shafoon Dupatta With Green Border For Girls','Each',NULL,'en','2021-01-21 09:56:24','2021-01-21 09:56:24'),(529,824,'Kips College - Girls Dupatta','Each',NULL,'en','2021-01-21 09:58:38','2021-01-21 09:58:38'),(530,825,'White Dupatta With Royal Blue Border For Girls','Each',NULL,'en','2021-01-21 10:01:06','2021-01-21 10:01:06'),(531,826,'City High School - Girls Dupatta','Each',NULL,'en','2021-01-21 10:01:54','2021-01-21 10:01:54'),(532,827,'Dar - Arqam School - Girls Dupatta','Each',NULL,'en','2021-01-21 10:03:33','2021-01-21 10:03:33'),(533,828,'The Arqam School - Girls Dupatta','Each',NULL,'en','2021-01-21 10:05:13','2021-01-21 10:05:13'),(534,829,'White Rose School System - Girls Patti','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 10:07:08','2021-01-21 11:39:22'),(535,830,'The ACE School System - Girls Dupatta','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 10:12:08','2021-01-21 11:39:25'),(536,831,'Royal Blue Patti For Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 10:14:04','2021-01-21 11:39:31'),(537,832,'City High School - Girls Patti','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 10:15:11','2021-01-21 11:39:37'),(538,833,'The Smart School - Girls Patti','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 10:16:51','2021-01-21 11:39:42'),(539,834,'Navy Blue Patti For Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 10:19:29','2021-01-21 11:39:48'),(540,835,'Divisional Public school - Girls Patti','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 10:20:28','2021-01-21 11:39:53'),(541,836,'White Rose School System - Girls Patti','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 10:22:00','2021-01-21 11:39:58'),(542,837,'Baby Pink Patti For Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 10:24:22','2021-01-21 11:40:03'),(543,838,'White Rose School System - Girls Patti (9+10 Class)','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 10:26:07','2021-01-21 11:40:10'),(544,839,'Sunny Ideal School - Girls Patti','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 10:28:01','2021-01-21 11:40:15'),(545,840,'Plain White Patti For Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 10:29:43','2021-01-21 11:40:23'),(546,841,'The Educators School - Girls Patti','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 10:30:34','2021-01-21 11:40:29'),(547,842,'Punjab Worker Welfare School - Girls Patti','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 10:32:58','2021-01-21 11:40:34'),(548,843,'Allied School - Girls Patti','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 10:35:18','2021-01-21 11:40:41'),(549,844,'Mehroon Patti For Girls','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 10:37:55','2021-01-21 11:41:18'),(550,845,'Divisional Model College - Girls Patti','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 10:38:50','2021-01-21 11:41:26'),(551,846,'Sunny Ideal School - Tie','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoNormal\">\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 11:04:00','2021-01-21 11:49:54'),(552,847,'Grey & Mehroon Lining Uniform Tie','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 11:08:01','2021-01-21 11:49:58'),(553,848,'Divisional Model College - Tie','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 11:08:51','2021-01-21 11:50:04'),(554,849,'Grey & Dark Green Uniform Tie','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 11:11:53','2021-01-21 11:50:10'),(555,850,'The Smart School - Tie','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 11:12:21','2021-01-21 11:50:19'),(556,851,'Navy Blue & Green & Yellow Lining uniform Tie','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 11:15:24','2021-01-21 11:50:38'),(557,852,'The Educators School - Tie','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 11:16:31','2021-01-21 11:50:45'),(558,853,'Dar - Arqam School - Tie','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 11:18:43','2021-01-21 11:51:03'),(559,854,'Aspire Group Of Colleges - Tie','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 11:21:15','2021-01-21 11:51:12'),(560,855,'Superior college - Tie','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 11:23:50','2021-01-21 11:51:23'),(561,856,'Punjab group of colleges - Tie','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 11:25:41','2021-01-21 11:51:34'),(562,857,'Divisional Public school - Tie','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 11:27:46','2021-01-21 11:52:03'),(563,858,'Blue & Gray Lining Uniform Tie','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 11:30:23','2021-01-21 11:52:09'),(564,859,'White Rose School System - Tie','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 11:31:10','2021-01-21 11:52:19'),(565,860,'The Arqam School - Tie','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 11:32:55','2021-01-21 11:52:28'),(566,861,'Allied School - Tie','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 11:36:02','2021-01-21 11:52:33'),(567,862,'Navy Blue & Yellow Sky Blue Lining Uniform Tie','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 11:38:54','2021-01-21 11:52:39'),(568,863,'Punjab Worker Welfare School - Tie','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 11:42:02','2021-01-21 11:52:51'),(569,864,'The ACE School System - Tie','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 11:44:02','2021-01-21 11:52:55'),(570,865,'Kips College - Tie','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 11:45:37','2021-01-21 11:53:02');
INSERT INTO `product_translations` (`id`, `product_id`, `name`, `unit`, `description`, `lang`, `created_at`, `updated_at`) VALUES (571,866,'Navy Blue & Royal Blue Lining Tie','Each','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>','en','2021-01-21 11:47:22','2021-01-21 11:53:07'),(572,867,'The Arqam School - Elastic Winter Pent','Each','<p class=\"MsoNormal\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna is Already Know any well reputed manufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing to their customer, loose fit &amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing very good quality and comfort feel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>&nbsp;Rachna providing best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check, best quality in wollen fabric school coat, jersey, sweaters.</p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><p class=\"MsoListParagraphCxSpLast\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Manufacturing Company: Since 1992.</p>','en','2021-01-21 12:08:24','2021-01-23 03:59:22'),(573,868,'Green Dot Public School - Elastic Pent','Each','<p class=\"MsoNormal\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna is Already Know any well reputed manufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing to their customer, loose fit &amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing very good quality and comfort feel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>&nbsp;Rachna providing best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check, best quality in wollen fabric school coat, jersey, sweaters.</p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><p class=\"MsoListParagraphCxSpLast\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Manufacturing Company: Since 1992.</p>','en','2021-01-23 03:52:22','2021-01-23 03:59:12'),(574,869,'Green Dot Public School - Waist Pent','Each','<p class=\"MsoNormal\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna is Already Know any well reputed manufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing to their customer, loose fit &amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing very good quality and comfort feel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>&nbsp;Rachna providing best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check, best quality in wollen fabric school coat, jersey, sweaters.</p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><p class=\"MsoListParagraphCxSpLast\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Manufacturing Company: Since 1992.</p>','en','2021-01-23 03:58:50','2021-01-23 03:58:50'),(575,870,'Army Public School And College System - Elastic Pent','Each','<p class=\"MsoNormal\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna is Already Know any well reputed manufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing to their customer, loose fit &amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing very good quality and comfort feel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>&nbsp;Rachna providing best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check, best quality in wollen fabric school coat, jersey, sweaters.</p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><p class=\"MsoListParagraphCxSpLast\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Manufacturing Company: Since 1992.</p>','en','2021-01-23 04:13:44','2021-01-23 04:13:44'),(576,871,'Army Public School And College System - Waist Pent','Each','<p class=\"MsoNormal\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna is Already Know any well reputed manufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing to their customer, loose fit &amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing very good quality and comfort feel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>&nbsp;Rachna providing best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check, best quality in wollen fabric school coat, jersey, sweaters.</p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><p class=\"MsoListParagraphCxSpLast\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Manufacturing Company: Since 1992.</p>','en','2021-01-23 04:17:41','2021-01-23 04:17:41'),(577,872,'White Rose School System - Boys Shirt','Each','<p class=\"MsoNormal\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna is Already Know any well reputed manufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing to their customer, loose fit &amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing very good quality and comfort feel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>&nbsp;Rachna providing best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check, best quality in wollen fabric school coat, jersey, sweaters.</p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><p class=\"MsoListParagraphCxSpLast\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Manufacturing Company: Since 1992.</p>','en','2021-01-23 05:34:25','2021-01-23 05:34:25');
/*!40000 ALTER TABLE `product_translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `products`
--

DROP TABLE IF EXISTS `products`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `products` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8_unicode_ci NOT NULL,
  `added_by` varchar(6) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'admin',
  `user_id` int(11) NOT NULL,
  `category_id` int(11) NOT NULL,
  `subcategory_id` int(11) DEFAULT NULL,
  `subsubcategory_id` int(11) DEFAULT NULL,
  `brand_id` int(11) DEFAULT NULL,
  `photos` varchar(2000) COLLATE utf8_unicode_ci DEFAULT NULL,
  `thumbnail_img` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
  `video_provider` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
  `video_link` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
  `tags` mediumtext COLLATE utf8_unicode_ci,
  `description` longtext COLLATE utf8_unicode_ci,
  `unit_price` double(20,2) NOT NULL,
  `purchase_price` double(20,2) NOT NULL,
  `variant_product` int(1) NOT NULL DEFAULT '0',
  `attributes` varchar(1000) COLLATE utf8_unicode_ci NOT NULL DEFAULT '[]',
  `choice_options` mediumtext COLLATE utf8_unicode_ci,
  `colors` mediumtext COLLATE utf8_unicode_ci,
  `variations` text COLLATE utf8_unicode_ci,
  `todays_deal` int(11) NOT NULL DEFAULT '0',
  `published` int(11) NOT NULL DEFAULT '1',
  `featured` int(11) NOT NULL DEFAULT '0',
  `current_stock` int(10) NOT NULL DEFAULT '0',
  `unit` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
  `min_qty` int(11) NOT NULL DEFAULT '1',
  `discount` double(20,2) DEFAULT NULL,
  `discount_type` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL,
  `tax` double(20,2) DEFAULT NULL,
  `tax_type` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL,
  `shipping_type` varchar(20) CHARACTER SET latin1 DEFAULT 'flat_rate',
  `shipping_cost` double(20,2) DEFAULT '0.00',
  `num_of_sale` int(11) NOT NULL DEFAULT '0',
  `meta_title` mediumtext COLLATE utf8_unicode_ci,
  `meta_description` longtext COLLATE utf8_unicode_ci,
  `meta_img` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `pdf` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `slug` mediumtext COLLATE utf8_unicode_ci NOT NULL,
  `rating` double(8,2) NOT NULL DEFAULT '0.00',
  `barcode` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `digital` int(1) NOT NULL DEFAULT '0',
  `file_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `file_path` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=873 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `products`
--

LOCK TABLES `products` WRITE;
/*!40000 ALTER TABLE `products` DISABLE KEYS */;
INSERT INTO `products` (`id`, `name`, `added_by`, `user_id`, `category_id`, `subcategory_id`, `subsubcategory_id`, `brand_id`, `photos`, `thumbnail_img`, `video_provider`, `video_link`, `tags`, `description`, `unit_price`, `purchase_price`, `variant_product`, `attributes`, `choice_options`, `colors`, `variations`, `todays_deal`, `published`, `featured`, `current_stock`, `unit`, `min_qty`, `discount`, `discount_type`, `tax`, `tax_type`, `shipping_type`, `shipping_cost`, `num_of_sale`, `meta_title`, `meta_description`, `meta_img`, `pdf`, `slug`, `rating`, `barcode`, `digital`, `file_name`, `file_path`, `created_at`, `updated_at`) VALUES (295,'Pure Black Deluxe Limited Edition For Men','admin',9,15,NULL,NULL,1,'351,352,349,350','348','youtube',NULL,'velburry','<strong>Article no: 1001</strong><br><br>It contains <b>notes</b> of sandalwood, citruses, and lavender. It is an exceptionally potent aroma that also makes it great for a date night. The brand behind <b>Pure Black</b> is Creation Lamis. <b>Perfumes</b> made from this brand are crafted with high-quality ingredients.',910.00,910.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Pure Black Deluxe Limited Edition For Men','<strong>Article no: 1001</strong><br><br>It contains <b>notes</b> of sandalwood, citruses, and lavender. It is an exceptionally potent aroma that also makes it great for a date night. The brand behind <b>Pure Black</b> is Creation Lamis. <b>Perfumes</b> made from this brand are crafted with high-quality ingredients.',NULL,NULL,'-ahjcx',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 01:13:32'),(296,'Pure Blue Deluxe Edition For Men','admin',9,15,NULL,NULL,1,'354,353','355','youtube',NULL,'velburry','<strong>Article no: 1002</strong><br><div class=\"d9FyLd XcVN5d\"><b>Pure Blue Cologne</b></div><br><span class=\"hgKElc\"><b>Pure Blue</b> provides a perfect complement to the self-sure and confident man. This lively <b>cologne</b> features varied accords of fruity, musky, and floral <b>notes</b> that make for a versatile everyday <b>fragrance</b>. Top <b>notes</b> include bergamot, cardamom, and mandarin orange for an immediate bracing effect.</span>',910.00,910.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Pure Blue Deluxe Edition For Men','<strong>Article no: 1002</strong><br><div class=\"d9FyLd XcVN5d\"><b>Pure Blue Cologne</b></div><br><span class=\"hgKElc\"><b>Pure Blue</b> provides a perfect complement to the self-sure and confident man. This lively <b>cologne</b> features varied accords of fruity, musky, and floral <b>notes</b> that make for a versatile everyday <b>fragrance</b>. Top <b>notes</b> include bergamot, cardamom, and mandarin orange for an immediate bracing effect.</span>',NULL,NULL,'-taee0',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 01:14:35'),(297,'Royal For Men','admin',9,15,NULL,NULL,1,'357,358','356','youtube',NULL,'velburry','<strong>Article no: 1003</strong><br><div class=\"mod\" lang=\"en-PK\" data-md=\"61\"><br><div class=\"LGOjhe\" role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CAYQAA\"><span class=\"ILfuVd\"><span class=\"hgKElc\"><b>Royal</b> For Men By <b>Sellion</b> This wonderful <b>fragrance</b> is an intense and deep <b>fragrance</b> that is enchanting and invigorating. This <b>fragrance</b> has been crafted, successful, and hardworking for todays age. ... The <b>fragrance</b> blends in aromatic accords to create a contrast that is hard to miss.</span></span></div><br></div><br><div class=\"g\"><br><div class=\"rc\" data-hveid=\"CAQQAA\" data-ved=\"2ahUKEwiuhInb2_DtAhVGfMAKHRlNA2YQFSgAMAJ6BAgEEAA\"></div><br></div>',790.00,790.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Royal For Men','<strong>Article no: 1003</strong><br><div class=\"mod\" lang=\"en-PK\" data-md=\"61\"><br><div class=\"LGOjhe\" role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CAYQAA\"><span class=\"ILfuVd\"><span class=\"hgKElc\"><b>Royal</b> For Men By <b>Sellion</b> This wonderful <b>fragrance</b> is an intense and deep <b>fragrance</b> that is enchanting and invigorating. This <b>fragrance</b> has been crafted, successful, and hardworking for todays age. ... The <b>fragrance</b> blends in aromatic accords to create a contrast that is hard to miss.</span></span></div><br></div><br><div class=\"g\"><br><div class=\"rc\" data-hveid=\"CAQQAA\" data-ved=\"2ahUKEwiuhInb2_DtAhVGfMAKHRlNA2YQFSgAMAJ6BAgEEAA\"></div><br></div>',NULL,NULL,'-nkddl',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 01:15:53'),(298,'Everyone Deluxe Limited Edition For Men','admin',9,15,NULL,NULL,1,'362,359,360,361','363','youtube',NULL,'velburry','<strong>Article no: 1004</strong><br><br><b>Everyone Perfume</b> by Creation Lamis, A green <b>scent</b> that marries with citrusy accords, <b>Everyone</b> is a Unisex <b>perfume</b> that provides users with an exciting and fresh aroma. Its stimulating opening starts with top <b>notes</b> of bergamot, pineapple, cardamom, mandarin and lemon.<br><br>&nbsp;',910.00,910.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Everyone Deluxe Limited Edition For Men','<strong>Article no: 1004</strong><br><br><b>Everyone Perfume</b> by Creation Lamis, A green <b>scent</b> that marries with citrusy accords, <b>Everyone</b> is a Unisex <b>perfume</b> that provides users with an exciting and fresh aroma. Its stimulating opening starts with top <b>notes</b> of bergamot, pineapple, cardamom, mandarin and lemon.<br><br>&nbsp;',NULL,NULL,'-svz9z',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 01:16:59'),(299,'Havoc Silver Atomiseur For Women','admin',9,16,NULL,NULL,1,'365,366','364','youtube',NULL,'velburry','<strong>Article no: 1005</strong><br><br><b>Havoc</b> is classified as a gorgeous powdery mossy, green, aldehydic chypre with a floral that begins with a tantalizing floral creme broule.<br>...<br><b>Havoc Silver</b> Eau de Toilette - 75 ml (For Women)',1190.00,1190.00,0,'[]','[]','[]','[]',0,1,1,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Havoc Silver Atomiseur For Women','<strong>Article no: 1005</strong><br><br><b>Havoc</b> is classified as a gorgeous powdery mossy, green, aldehydic chypre with a floral that begins with a tantalizing floral creme broule.<br>...<br><b>Havoc Silver</b> Eau de Toilette - 75 ml (For Women)',NULL,NULL,'-igxdl',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 03:00:39'),(300,'Havoc Gold Atomiseur For Men','admin',9,15,NULL,NULL,1,'367','368','youtube',NULL,'velburry','<strong>Article no: 1006</strong><br><br>KEY <b>NOTES</b>: Cypress, bergamot, cedar, oakwood ABOUT THE <b>FRAGRANCE</b>: A beguiling blend of classic citrus with bold aromatic woods create a captivating Citrus Oriental.',1190.00,1190.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Havoc Gold Atomiseur For Men','<strong>Article no: 1006</strong><br><br>KEY <b>NOTES</b>: Cypress, bergamot, cedar, oakwood ABOUT THE <b>FRAGRANCE</b>: A beguiling blend of classic citrus with bold aromatic woods create a captivating Citrus Oriental.',NULL,NULL,'-imvja',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 01:19:17'),(301,'Shirley May Black Car For Men','admin',9,15,NULL,NULL,1,'370,372,371','369','youtube',NULL,'velburry','<strong>Article no: 1007</strong><br><ul><br> 	<li>Quantity Perfume - 100 ml</li><br> 	<li>Quantity Body Spray - 75 ml</li><br> 	<li>Good fragrance</li><br> 	<li>Long lasting</li><br> 	<li>Safe On Skin</li><br> 	<li>Best for gift</li><br> 	<li>Fragrance Notes - Top Notes - Bergamot, Lemon, Passion fruit</li><br> 	<li>Heart Notes - Basil, Patchouli</li><br> 	<li>Base Notes - Cedar, Sandalwood</li><br></ul>',490.00,490.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Shirley May Black Car For Men','<strong>Article no: 1007</strong><br><ul><br> 	<li>Quantity Perfume - 100 ml</li><br> 	<li>Quantity Body Spray - 75 ml</li><br> 	<li>Good fragrance</li><br> 	<li>Long lasting</li><br> 	<li>Safe On Skin</li><br> 	<li>Best for gift</li><br> 	<li>Fragrance Notes - Top Notes - Bergamot, Lemon, Passion fruit</li><br> 	<li>Heart Notes - Basil, Patchouli</li><br> 	<li>Base Notes - Cedar, Sandalwood</li><br></ul>',NULL,NULL,'-mgdma',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 01:20:28'),(302,'Shirley May Black Market For Men','admin',9,15,NULL,NULL,1,'373','374','youtube',NULL,'velburry','<strong>Article no: 1008</strong><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Long lasting</li><br> 	<li class=\"\">100 ml</li><br> 	<li class=\"\">Refreshing scent</li><br></ul><br></div><br><div class=\"html-content detail-content\">Shirley May Black Market Perfume For Men - 100ml</div>',490.00,490.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Shirley May Black Market For Men','<strong>Article no: 1008</strong><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Long lasting</li><br> 	<li class=\"\">100 ml</li><br> 	<li class=\"\">Refreshing scent</li><br></ul><br></div><br><div class=\"html-content detail-content\">Shirley May Black Market Perfume For Men - 100ml</div>',NULL,NULL,'-jrgkn',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 01:21:43'),(303,'Forever For Men','admin',9,15,NULL,NULL,1,'376','375','youtube',NULL,'velburry','<strong>Article no: 1009</strong><br><ul class=\"\"><br> 	<li class=\"\">Volume: 100ml</li><br> 	<li class=\"\">Type: Eau De Parfum Spray</li><br> 	<li class=\"\">Ingredients: Alcohol Denat, Aqua(Water), Parfum(Fragrance), Amyl cinnamal, Benzyl alcohol, Cinnamyl Alcohol, Citral, Eugenol, Hydroxycitronellal, Isoeugenol, Amyl Cinnamyl etc.</li><br> 	<li class=\"\">Made in UAE</li><br></ul>',550.00,550.00,0,'[]','[]','[]','[]',0,1,1,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Forever For Men','<strong>Article no: 1009</strong><br><ul class=\"\"><br> 	<li class=\"\">Volume: 100ml</li><br> 	<li class=\"\">Type: Eau De Parfum Spray</li><br> 	<li class=\"\">Ingredients: Alcohol Denat, Aqua(Water), Parfum(Fragrance), Amyl cinnamal, Benzyl alcohol, Cinnamyl Alcohol, Citral, Eugenol, Hydroxycitronellal, Isoeugenol, Amyl Cinnamyl etc.</li><br> 	<li class=\"\">Made in UAE</li><br></ul>',NULL,NULL,'-eshh4',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 03:00:46'),(304,'Gambit Perfume For Men and Women','admin',9,16,NULL,NULL,1,'378,379,377','380','youtube',NULL,'velburry','<strong>Article no: 1010</strong><br><br>Additional Specification; Shipment Info &amp; refund policy; Reviews. Gambit Eau De Toilette Perfume Spray – 100ml is made in UAE.<br><br>Gambit Perfume For Men and Women is good for all fragrances and best results.',590.00,590.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Gambit Perfume For Men and Women','<strong>Article no: 1010</strong><br><br>Additional Specification; Shipment Info &amp; refund policy; Reviews. Gambit Eau De Toilette Perfume Spray – 100ml is made in UAE.<br><br>Gambit Perfume For Men and Women is good for all fragrances and best results.',NULL,NULL,'-7gsw5',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 01:24:11'),(305,'Rasasi Secret Perfume for Women\'s','admin',9,16,NULL,NULL,1,'382,383,384,385','381','youtube',NULL,'velburry','<strong>Article no: 1011</strong><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">75 ml</li><br> 	<li class=\"\">For Women</li><br> 	<li class=\"\">Eau De Parfum</li><br> 	<li class=\"\">Long Lasting Fragrance</li><br></ul><br></div><br><div class=\"html-content detail-content\">Introducing a sophisticated luxurious fruity floral perfume that reflects the mysterious and emotional side of the secret lady. The fragrance opens with heady peach and sparkling orange notes that are combined with a hint of subtle violet leaves. The heart of this fragrance expresses the sensuality of the perfume blending a refined bouquet of Jasmine, Rose and lily of the valley that naturally evolves into a mysterious base of musk, ceder wood and sandalwood.</div>',1390.00,1390.00,0,'[]','[]','[]','[]',0,1,1,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Rasasi Secret Perfume for Women\'s','<strong>Article no: 1011</strong><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">75 ml</li><br> 	<li class=\"\">For Women</li><br> 	<li class=\"\">Eau De Parfum</li><br> 	<li class=\"\">Long Lasting Fragrance</li><br></ul><br></div><br><div class=\"html-content detail-content\">Introducing a sophisticated luxurious fruity floral perfume that reflects the mysterious and emotional side of the secret lady. The fragrance opens with heady peach and sparkling orange notes that are combined with a hint of subtle violet leaves. The heart of this fragrance expresses the sensuality of the perfume blending a refined bouquet of Jasmine, Rose and lily of the valley that naturally evolves into a mysterious base of musk, ceder wood and sandalwood.</div>',NULL,NULL,'-xin7m',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 03:00:48'),(306,'Blue Lady By Rasasi For Women Eau De','admin',9,16,NULL,NULL,1,'386,387,388,389','390','youtube',NULL,'velburry','<strong>Article no: 1012</strong><br><br>Blue Lady By <strong>Rasasi</strong> is a classical and cheerful perfume, ideal for ladies who enjoy life. Violet leaf, ylang-ylang, tuberose and orange blossom are at the top of the composition. The heart is filled with peach, plum, narcissus and jasmine, while the base is composed of sandalwood, vetiver, vanilla, amber and musk.',1290.00,1290.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Blue Lady By Rasasi For Women Eau De','<strong>Article no: 1012</strong><br><br>Blue Lady By <strong>Rasasi</strong> is a classical and cheerful perfume, ideal for ladies who enjoy life. Violet leaf, ylang-ylang, tuberose and orange blossom are at the top of the composition. The heart is filled with peach, plum, narcissus and jasmine, while the base is composed of sandalwood, vetiver, vanilla, amber and musk.',NULL,NULL,'-xql4a',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 01:26:00'),(307,'Romance for Woman EDP - Eau De','admin',9,16,NULL,NULL,1,'394,392,393','391','youtube',NULL,'velburry','<strong>Article no: 1013</strong><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">ABOUT ROMANCE: Romance is for the woman who loves to explore the world of fantasy who likes to take a voyage to far beyond, it is for the naturally shining woman who enjoys life and fun. Fresh and sparkling top notes lead to a sumptuous bouquet of rose and jasmine,harmoniously combined with the fruity, woody, powdery notes in the dry down</span></li><br> 	<li><span class=\"a-list-item\">TOP NOTES: Rose and jasmine</span></li><br> 	<li><span class=\"a-list-item\">MIDDLE NOTES: Fruity, woody notes</span></li><br> 	<li><span class=\"a-list-item\">BASE NOTES: Powdery notes</span></li><br></ul>',1390.00,1390.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Romance for Woman EDP - Eau De','<strong>Article no: 1013</strong><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">ABOUT ROMANCE: Romance is for the woman who loves to explore the world of fantasy who likes to take a voyage to far beyond, it is for the naturally shining woman who enjoys life and fun. Fresh and sparkling top notes lead to a sumptuous bouquet of rose and jasmine,harmoniously combined with the fruity, woody, powdery notes in the dry down</span></li><br> 	<li><span class=\"a-list-item\">TOP NOTES: Rose and jasmine</span></li><br> 	<li><span class=\"a-list-item\">MIDDLE NOTES: Fruity, woody notes</span></li><br> 	<li><span class=\"a-list-item\">BASE NOTES: Powdery notes</span></li><br></ul>',NULL,NULL,'-v6smk',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 01:26:55'),(308,'Rasasi Romance Forever For Men','admin',9,15,NULL,NULL,1,'396,397,398,395','400','youtube',NULL,'velburry','<strong>Article no: 1014</strong><br><h5 class=\"list__product--title\">Product Highlights:</h5><br><ul class=\"list__product--listings\"><br> 	<li>Soft and refreshing perfume</li><br> 	<li>Eye-catching rose color</li><br> 	<li>Blend of floral and woodsy accords</li><br> 	<li>Stylishly designed glass flacon</li><br></ul>',1800.00,1800.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Rasasi Romance Forever For Men','<strong>Article no: 1014</strong><br><h5 class=\"list__product--title\">Product Highlights:</h5><br><ul class=\"list__product--listings\"><br> 	<li>Soft and refreshing perfume</li><br> 	<li>Eye-catching rose color</li><br> 	<li>Blend of floral and woodsy accords</li><br> 	<li>Stylishly designed glass flacon</li><br></ul>',NULL,NULL,'-vc0um',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 01:28:20'),(309,'Rasasi Emotion For Women 50ml','admin',9,16,NULL,NULL,1,'404,405,402,403','401','youtube',NULL,'velburry','<strong>Article no: 1015</strong><br><h5 class=\"list__product--title\">Product Highlights:</h5><br><ul class=\"list__product--listings\"><br> 	<li>A great traditional fragrance for women</li><br> 	<li>Rich and glamorous</li><br> 	<li>Features an oriental-balsamic composition</li><br> 	<li>Recommended for formal and nighttime occasions</li><br></ul>',1390.00,1390.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Rasasi Emotion For Women 50ml','<strong>Article no: 1015</strong><br><h5 class=\"list__product--title\">Product Highlights:</h5><br><ul class=\"list__product--listings\"><br> 	<li>A great traditional fragrance for women</li><br> 	<li>Rich and glamorous</li><br> 	<li>Features an oriental-balsamic composition</li><br> 	<li>Recommended for formal and nighttime occasions</li><br></ul>',NULL,NULL,'-0uw9h',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 01:31:02'),(310,'Rasasi Emotion Masculine Perfume For Men','admin',9,15,NULL,NULL,1,'408,406,407','410','youtube',NULL,'velburry','<strong>Article no: 1016</strong><br><br>Rasasi Emotion Masculine Eau De Parfum let the fragrance of Emotions weave a spell of pure magic after all that is life without Emotions? Live and Feel life....with none other than Rasasi.<br><br>Brand: Rasasi<br><br>Fragrance Perfume: Emotion Homme<br><br>Fragrance: Bergamot, orange blossom. lavender, violet, cinnamon, and rose are at the heart and the base features patchouli, Tonka, sandalwood, amber, and musk.<br><br>Gender: Men<br><br>ML: 100 EDP',1750.00,1750.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Rasasi Emotion Masculine Perfume For Men','<strong>Article no: 1016</strong><br><br>Rasasi Emotion Masculine Eau De Parfum let the fragrance of Emotions weave a spell of pure magic after all that is life without Emotions? Live and Feel life....with none other than Rasasi.<br><br>Brand: Rasasi<br><br>Fragrance Perfume: Emotion Homme<br><br>Fragrance: Bergamot, orange blossom. lavender, violet, cinnamon, and rose are at the heart and the base features patchouli, Tonka, sandalwood, amber, and musk.<br><br>Gender: Men<br><br>ML: 100 EDP',NULL,NULL,'-kwyez',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 02:00:18'),(311,'Rasasi Royale Blue Pour Femme EDP For Men','admin',9,15,NULL,NULL,1,'413,411,412','414','youtube',NULL,'velburry','<strong>Article no: 1017</strong><br><div class=\"d9FyLd XcVN5d\">Product <b>Description</b></div><br><span class=\"hgKElc\">Powerful and masculine is this <b>fragrance</b> from <b>Rasasi</b>, Just the way every man wants his <b>perfume</b> to be. Floral Woody Tone Both playful and serious, the <b>perfume</b> combines floral <b>notes</b> to leave the perfect undertone and intense woody to keep the masculine side highlighted.</span><br><h5 class=\"list__product--title\">Product Highlights:</h5><br><ul class=\"list__product--listings\"><br> 	<li>Long-lasting scent</li><br> 	<li>A feminine Eau de parfum</li><br> 	<li>Blend of woody and spicy notes</li><br> 	<li>Super stylish and feminine fragrance</li><br></ul>',1550.00,1550.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Rasasi Royale Blue Pour Femme EDP For Men','<strong>Article no: 1017</strong><br><div class=\"d9FyLd XcVN5d\">Product <b>Description</b></div><br><span class=\"hgKElc\">Powerful and masculine is this <b>fragrance</b> from <b>Rasasi</b>, Just the way every man wants his <b>perfume</b> to be. Floral Woody Tone Both playful and serious, the <b>perfume</b> combines floral <b>notes</b> to leave the perfect undertone and intense woody to keep the masculine side highlighted.</span><br><h5 class=\"list__product--title\">Product Highlights:</h5><br><ul class=\"list__product--listings\"><br> 	<li>Long-lasting scent</li><br> 	<li>A feminine Eau de parfum</li><br> 	<li>Blend of woody and spicy notes</li><br> 	<li>Super stylish and feminine fragrance</li><br></ul>',NULL,NULL,'-o89kk',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 02:02:46'),(312,'Rasasi Royale Masculine French Green - For man','admin',9,15,NULL,NULL,1,'416,417,418,419','415','youtube',NULL,'velburry','<strong>Article no: 1018</strong><br><h6>Product Description:</h6><br><div class=\"rte\"><br><ul><br> 	<li>Powerful and masculine is this fragrance from Rasasi,</li><br> 	<li>Just the way every man wants his perfume to be.</li><br> 	<li>Royale pour Homme. His quest for a perfect fragrance has now been fulfilled. The fragrance of the Royale…The unimaginable scent with power…lays the stone paved path to overcome the blues. Now he knows looking at the air around him… the scented grasping tendrills...like a feeling,would not leave him through the breaking twisting of a macho mans life; reluctant to part, the fresh smell of Royale. if embraced him all the time, the good feeling...the presence of the real essence of life...around him always. through the lifes tapestry, the Royale..gives him the power to be the ultimate man...The Royale Man.</li><br> 	<li>100% Original product from Rasasi - one of the best perfume brands from the Middle East.</li><br> 	<li>Rasasi Royale Green Masculine EAU DE Toilette 75 ml - For men (2.5 fl. oz.)</li><br></ul><br></div>',1550.00,1550.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Rasasi Royale Masculine French Green - For man','<strong>Article no: 1018</strong><br><h6>Product Description:</h6><br><div class=\"rte\"><br><ul><br> 	<li>Powerful and masculine is this fragrance from Rasasi,</li><br> 	<li>Just the way every man wants his perfume to be.</li><br> 	<li>Royale pour Homme. His quest for a perfect fragrance has now been fulfilled. The fragrance of the Royale…The unimaginable scent with power…lays the stone paved path to overcome the blues. Now he knows looking at the air around him… the scented grasping tendrills...like a feeling,would not leave him through the breaking twisting of a macho mans life; reluctant to part, the fresh smell of Royale. if embraced him all the time, the good feeling...the presence of the real essence of life...around him always. through the lifes tapestry, the Royale..gives him the power to be the ultimate man...The Royale Man.</li><br> 	<li>100% Original product from Rasasi - one of the best perfume brands from the Middle East.</li><br> 	<li>Rasasi Royale Green Masculine EAU DE Toilette 75 ml - For men (2.5 fl. oz.)</li><br></ul><br></div>',NULL,NULL,'-6zz5a',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 02:03:59'),(313,'SHALIS for men by REMY MARQUIS 3.4 OZ. EDT','admin',9,15,NULL,NULL,1,'420,421,422,423,424','425','youtube',NULL,'velburry','<strong>Article no: 1019</strong><br><div class=\"d9FyLd XcVN5d\">Product <b>description</b></div><br><span class=\"hgKElc\">Designed for the cavalier <b>man Shalis</b> is a smooth <b>scent</b> with a hint of spice to pique your interest. It has top <b>notes</b> of grapefruit mandarin orange and apple. The heart is mixed with lavender and basil.</span><br><h6>Product details</h6><br><div id=\"detailBullets_feature_div\"><br><ul class=\"a-unordered-list a-nostyle a-vertical a-spacing-none detail-bullet-list\"><br> 	<li><span class=\"a-list-item\"><span class=\"a-text-bold\">Item Weight : </span>1.5 Pounds</span></li><br> 	<li><span class=\"a-list-item\"><span class=\"a-text-bold\">Manufacturer : </span>USA</span></li><br></ul><br></div>',1890.00,1890.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'SHALIS for men by REMY MARQUIS 3.4 OZ. EDT','<strong>Article no: 1019</strong><br><div class=\"d9FyLd XcVN5d\">Product <b>description</b></div><br><span class=\"hgKElc\">Designed for the cavalier <b>man Shalis</b> is a smooth <b>scent</b> with a hint of spice to pique your interest. It has top <b>notes</b> of grapefruit mandarin orange and apple. The heart is mixed with lavender and basil.</span><br><h6>Product details</h6><br><div id=\"detailBullets_feature_div\"><br><ul class=\"a-unordered-list a-nostyle a-vertical a-spacing-none detail-bullet-list\"><br> 	<li><span class=\"a-list-item\"><span class=\"a-text-bold\">Item Weight : </span>1.5 Pounds</span></li><br> 	<li><span class=\"a-list-item\"><span class=\"a-text-bold\">Manufacturer : </span>USA</span></li><br></ul><br></div>',NULL,NULL,'-vcrg7',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 02:05:15'),(314,'Shalis For Woman By Remy Marquis Eau De','admin',9,16,NULL,NULL,1,'427,428,429','426','youtube',NULL,'velburry','<strong>Article no: 1020</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.634452c0b5BVrf\">Product details of Perfume For Women - 50ml</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Long Lasting</li><br> 	<li class=\"\">Floral and Musky</li><br> 	<li class=\"\">Friendly Fragrance</li><br> 	<li class=\"\">Safe on Skin</li><br> 	<li class=\"\">Daily Use</li><br></ul><br></div><br><div class=\"html-content detail-content\"><br><br>Perfume For Women - 50ml<br><br><b>Shalis</b> by Remy Marquis is a Floral Fruity <b>fragrance</b> for <b>women</b>. Top <b>notes</b> are Fruity <b>Notes</b>, Cyclamen and Lavender; middle <b>notes</b> are Rose, Magnolia and Peony; base <b>notes</b> are Musk, Amber and Patchouli.<br><br></div><br></div><br></div>',1890.00,1890.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Shalis For Woman By Remy Marquis Eau De','<strong>Article no: 1020</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.634452c0b5BVrf\">Product details of Perfume For Women - 50ml</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Long Lasting</li><br> 	<li class=\"\">Floral and Musky</li><br> 	<li class=\"\">Friendly Fragrance</li><br> 	<li class=\"\">Safe on Skin</li><br> 	<li class=\"\">Daily Use</li><br></ul><br></div><br><div class=\"html-content detail-content\"><br><br>Perfume For Women - 50ml<br><br><b>Shalis</b> by Remy Marquis is a Floral Fruity <b>fragrance</b> for <b>women</b>. Top <b>notes</b> are Fruity <b>Notes</b>, Cyclamen and Lavender; middle <b>notes</b> are Rose, Magnolia and Peony; base <b>notes</b> are Musk, Amber and Patchouli.<br><br></div><br></div><br></div>',NULL,NULL,'-fpovu',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 02:06:18'),(315,'Remy by Remy Marquis Eau De 3.4 oz for Women','admin',9,16,NULL,NULL,1,'431,430','432','youtube',NULL,'velburry','<strong>Article no: 1021</strong><br><div class=\"d9FyLd XcVN5d\">Product <b>description</b></div><br><span class=\"hgKElc\"><b>Remy</b> by <b>Remy</b> Marquis a Floral Woody Musk <b>fragrance</b> for <b>women</b>; Top <b>notes</b> are apple blossom, ivy and peach; Middle <b>notes</b> are jasmine, rose, peony and hibiscus; Base <b>notes</b> are sandalwood, white musk and amber. Size: 100 ml.</span><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.261e2dccji683e\">Product details of Remy For Women EDP 100ml</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc height-limit\"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">100% Original Perfume and Long Lasting.</li><br> 	<li class=\"\">Branded Imported product.</li><br> 	<li class=\"\">Mesmerizing Fragrance</li><br> 	<li class=\"\">Long Lasting Fragrance</li><br> 	<li class=\"\">For Daily Use</li><br> 	<li class=\"\">Premium Quality Fragrance.</li><br> 	<li class=\"\">Average Lasting More Than 6 Hours.</li><br> 	<li class=\"\">Best for Projection, Silage &amp; Longevity.</li><br> 	<li class=\"\">Best Prices.</li><br> 	<li class=\"\">One of the Bestselling Fragrances Ever.</li><br> 	<li class=\"\">No Water or Any Other Inexpensive Filler.</li><br> 	<li class=\"\">Safe For Skin</li><br> 	<li class=\"\">Official Seller Genuine product</li><br> 	<li class=\"\">Best For Gift &amp; Personal Use.</li><br> 	<li class=\"\">All our fragrances are 100% originals by their original designers. We do not sell any knockoffs or imitations.</li><br></ul><br></div><br></div><br></div>',1990.00,1990.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Remy by Remy Marquis Eau De 3.4 oz for Women','<strong>Article no: 1021</strong><br><div class=\"d9FyLd XcVN5d\">Product <b>description</b></div><br><span class=\"hgKElc\"><b>Remy</b> by <b>Remy</b> Marquis a Floral Woody Musk <b>fragrance</b> for <b>women</b>; Top <b>notes</b> are apple blossom, ivy and peach; Middle <b>notes</b> are jasmine, rose, peony and hibiscus; Base <b>notes</b> are sandalwood, white musk and amber. Size: 100 ml.</span><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.261e2dccji683e\">Product details of Remy For Women EDP 100ml</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc height-limit\"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">100% Original Perfume and Long Lasting.</li><br> 	<li class=\"\">Branded Imported product.</li><br> 	<li class=\"\">Mesmerizing Fragrance</li><br> 	<li class=\"\">Long Lasting Fragrance</li><br> 	<li class=\"\">For Daily Use</li><br> 	<li class=\"\">Premium Quality Fragrance.</li><br> 	<li class=\"\">Average Lasting More Than 6 Hours.</li><br> 	<li class=\"\">Best for Projection, Silage &amp; Longevity.</li><br> 	<li class=\"\">Best Prices.</li><br> 	<li class=\"\">One of the Bestselling Fragrances Ever.</li><br> 	<li class=\"\">No Water or Any Other Inexpensive Filler.</li><br> 	<li class=\"\">Safe For Skin</li><br> 	<li class=\"\">Official Seller Genuine product</li><br> 	<li class=\"\">Best For Gift &amp; Personal Use.</li><br> 	<li class=\"\">All our fragrances are 100% originals by their original designers. We do not sell any knockoffs or imitations.</li><br></ul><br></div><br></div><br></div>',NULL,NULL,'-n0tlo',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 02:07:23'),(316,'CIGAR Perfume By REMY LATOUR For MEN','admin',9,15,NULL,NULL,1,'434,435,436','433','youtube',NULL,'velburry','<strong>Article no: 1022</strong><br><br><b>Cigar</b> by <b>Remy Latour</b> is a Aromatic Fruity fragrance for men. <b>Cigar</b> was launched in 1996. Top notes are Plum, Pineapple, Pear, Bergamot and Amalfi Lemon; middle notes are Bay Leaf, Marigold, Geranium and Jasmine; base notes are Tobacco, Patchouli, Sandalwood, Virginia Cedar and Musk.<br><br>This innovative masculine aroma exceeds all expectations. Cigar perfume from the house of Rémy Latour (launched in 1996) is an intense, powerful and fresh fragrance that begins with notes of bergamot, lemon, pears, prunes and pineapple. The composition is heated by the aromatic notes of flowers such as marigold, geranium, jasmine and bay leaves. Lower notes will afford you the luxury of cedar, patchouli and sandalwood, blended with tobacco and musk.<br><br>Available as 60 and 100 ml EDT and 200 ml deodorant.',1590.00,1590.00,0,'[]','[]','[]','[]',0,1,1,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'CIGAR Perfume By REMY LATOUR For MEN','<strong>Article no: 1022</strong><br><br><b>Cigar</b> by <b>Remy Latour</b> is a Aromatic Fruity fragrance for men. <b>Cigar</b> was launched in 1996. Top notes are Plum, Pineapple, Pear, Bergamot and Amalfi Lemon; middle notes are Bay Leaf, Marigold, Geranium and Jasmine; base notes are Tobacco, Patchouli, Sandalwood, Virginia Cedar and Musk.<br><br>This innovative masculine aroma exceeds all expectations. Cigar perfume from the house of Rémy Latour (launched in 1996) is an intense, powerful and fresh fragrance that begins with notes of bergamot, lemon, pears, prunes and pineapple. The composition is heated by the aromatic notes of flowers such as marigold, geranium, jasmine and bay leaves. Lower notes will afford you the luxury of cedar, patchouli and sandalwood, blended with tobacco and musk.<br><br>Available as 60 and 100 ml EDT and 200 ml deodorant.',NULL,NULL,'-vwxdj',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 03:00:52'),(317,'Lomani Do It Lomani cologne - a fragrance for men','admin',9,15,NULL,NULL,1,'441,437,438,439,440','442','youtube',NULL,'velburry','<strong>Article no: 1023</strong><br><br><strong>Details:</strong><br><br><strong>DO IT Perfume:</strong> Aroma is to cover the smell of intemperate scent that may emerge amid times of moderate to substantial effort. The reason for scent isnt to smell wonderful yet in addition feel new constantly. Joining liquor or water and scents, aromas give dependable smell insurance by concealing smell with aroma fixings, making a situation of freshness and lessening scent.<br><br>Lomani <b>Do</b> It by Lomani is a Aromatic Spicy <b>fragrance</b> for <b>men</b>. Top <b>notes</b> are Coriander, Lemon, Galbanum, Bergamot and Juniper; middle <b>notes</b> are Geranium, Violet, Nutmeg, Lavender and Carnation; base <b>notes</b> are Oakmoss, Sandalwood, Orris Root, Patchouli, Amber and Musk.',890.00,890.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lomani Do It Lomani cologne - a fragrance for men','<strong>Article no: 1023</strong><br><br><strong>Details:</strong><br><br><strong>DO IT Perfume:</strong> Aroma is to cover the smell of intemperate scent that may emerge amid times of moderate to substantial effort. The reason for scent isnt to smell wonderful yet in addition feel new constantly. Joining liquor or water and scents, aromas give dependable smell insurance by concealing smell with aroma fixings, making a situation of freshness and lessening scent.<br><br>Lomani <b>Do</b> It by Lomani is a Aromatic Spicy <b>fragrance</b> for <b>men</b>. Top <b>notes</b> are Coriander, Lemon, Galbanum, Bergamot and Juniper; middle <b>notes</b> are Geranium, Violet, Nutmeg, Lavender and Carnation; base <b>notes</b> are Oakmoss, Sandalwood, Orris Root, Patchouli, Amber and Musk.',NULL,NULL,'-a3dtb',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 02:09:35'),(318,'Lomani By Lomani 3.4 oz Eau De Toilette Spray for Men','admin',9,15,NULL,NULL,1,'445,446,447,448,444','443','youtube',NULL,'velburry','<strong>Article no: 1024</strong><br><br>Product details:<br><ul><br> 	<li>Quantity - 100 ml</li><br> 	<li>Good Fragrance</li><br> 	<li>Long Lasting</li><br> 	<li>Safe On Skin</li><br> 	<li>Best for Gift</li><br> 	<li>Strong &amp; Refreshing Scent</li><br> 	<li>be it parties, meetings or hangouts.</li><br> 	<li>Fragrance Notes - Top Notes - Bergamot, Lavender, Rosemary, Juniper berry</li><br> 	<li>Heart Notes - Geranium, Violet leaf</li><br> 	<li>Base Notes - Musk, Sandalwood, Cedar, Amber</li><br></ul><br>LOMANI SIGNATURE Men Eau de Toilette 3.3oz Spray',850.00,850.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lomani By Lomani 3.4 oz Eau De Toilette Spray for Men','<strong>Article no: 1024</strong><br><br>Product details:<br><ul><br> 	<li>Quantity - 100 ml</li><br> 	<li>Good Fragrance</li><br> 	<li>Long Lasting</li><br> 	<li>Safe On Skin</li><br> 	<li>Best for Gift</li><br> 	<li>Strong &amp; Refreshing Scent</li><br> 	<li>be it parties, meetings or hangouts.</li><br> 	<li>Fragrance Notes - Top Notes - Bergamot, Lavender, Rosemary, Juniper berry</li><br> 	<li>Heart Notes - Geranium, Violet leaf</li><br> 	<li>Base Notes - Musk, Sandalwood, Cedar, Amber</li><br></ul><br>LOMANI SIGNATURE Men Eau de Toilette 3.3oz Spray',NULL,NULL,'-bglrm',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 02:10:30'),(319,'Brut Prestige Paris Parfums for Men','admin',9,15,NULL,NULL,1,'451,449,450','452','youtube',NULL,'velburry','<p><strong>Article no:1025</strong></p><p><strong><br></strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.443849e6bLJKNf\">product details of Faberge Brut Classic For Men Perfume 100ml Jar:</h6><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><div class=\"pdp-product-desc \"><div class=\"html-content pdp-product-highlights\"><ul class=\"\"><br> 	<li class=\"\">Faberge Brut Classic For Men Perfume 100ml Jar</li></ul></div><div class=\"html-content detail-content\"><ul> 	<li>Faberge Brut Classic For Men Perfume 100ml Jar<a href=\"http://www.deobazaar.com/p46_Brut-Original-Perfume.html\">Brut,&nbsp;<strong>one of the most popular&nbsp;</strong>mens colognes</a>&nbsp;was first launched in 1964 by Faberge Paris. Top notes of this super sexy masculine perfume comprise of lemon, bergamot, lavender, anise and basil which blend very subtly into middle notes of geranium, jasmine and ylang-ylang. The trail holds a strong fragrance of sandalwood, oak moss, vetiver, patchouli, tonka bean and vanilla.&nbsp;<a href=\"http://www.deobazaar.com/p46_Brut-Original-Perfume.html\">Brut Perfume</a>&nbsp;is widely advertised with the slogan \"<a href=\"http://www.deobazaar.com/p46_Brut-Original-Perfume.html\">The essence of men</a>\". The nose &amp; innovator of this fragrance is Karl Mann.<br><div class=\"pdstitextie\"><strong>STORAGE:- </strong>Store bottle in a cool dry place only, Do not keep bottle with lid or cap open.<br><strong>DISCLAIMER:- </strong>Colors of the product might appear slightly different on digital devices.</div></li><br></ul><br></div><br></div><br></div></p>',1290.00,1290.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Brut Prestige Paris Parfums for Men','<p><strong>Article no:1025</strong></p><p><strong><br></strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.443849e6bLJKNf\">product details of Faberge Brut Classic For Men Perfume 100ml Jar:</h6><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><div class=\"pdp-product-desc \"><div class=\"html-content pdp-product-highlights\"><ul class=\"\"><br> 	<li class=\"\">Faberge Brut Classic For Men Perfume 100ml Jar</li></ul></div><div class=\"html-content detail-content\"><ul> 	<li>Faberge Brut Classic For Men Perfume 100ml Jar<a href=\"http://www.deobazaar.com/p46_Brut-Original-Perfume.html\">Brut,&nbsp;<strong>one of the most popular&nbsp;</strong>mens colognes</a>&nbsp;was first launched in 1964 by Faberge Paris. Top notes of this super sexy masculine perfume comprise of lemon, bergamot, lavender, anise and basil which blend very subtly into middle notes of geranium, jasmine and ylang-ylang. The trail holds a strong fragrance of sandalwood, oak moss, vetiver, patchouli, tonka bean and vanilla.&nbsp;<a href=\"http://www.deobazaar.com/p46_Brut-Original-Perfume.html\">Brut Perfume</a>&nbsp;is widely advertised with the slogan \"<a href=\"http://www.deobazaar.com/p46_Brut-Original-Perfume.html\">The essence of men</a>\". The nose &amp; innovator of this fragrance is Karl Mann.<br><div class=\"pdstitextie\"><strong>STORAGE:- </strong>Store bottle in a cool dry place only, Do not keep bottle with lid or cap open.<br><strong>DISCLAIMER:- </strong>Colors of the product might appear slightly different on digital devices.</div></li><br></ul><br></div><br></div><br></div></p>',NULL,NULL,'-whkuj',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 02:12:17'),(320,'Mutual Love perfume For women','admin',9,16,NULL,NULL,1,'454,455,456','453','youtube',NULL,'velburry','<p><strong>Article no: 1026</strong></p><p><strong><br></strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i2.6d5c5360MhLU02\">product details of Mutual Love perfume</h6><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><div class=\"pdp-product-desc \" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i1.6d5c5360MhLU02\"><div class=\"html-content pdp-product-highlights\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.6d5c5360MhLU02\"><ul class=\"\"><br> 	<li class=\"\">MUTUAL LOVE PERFUME</li><br> 	<li class=\"\">HEART SHAPE PERFUME</li><br> 	<li class=\"\">50 ML</li><br> 	<li class=\"\">EAU DE PARFUM</li><br> 	<li class=\"\">FOR WOMEN</li><br> 	<li class=\"\">GIFTING PERFUME FOR LOVERS</li><br></ul><br></div><br><div class=\"html-content detail-content\"><br><ul>MUTUAL LOVE PERFUME&nbsp;FOR GIRL&nbsp;/ WOMEN&nbsp;EDP50 ML&nbsp;LONG LASTING&nbsp;BEST FRAGRANCE&nbsp;BEST RATEGIFTING PERFUMEORIGINAL ARTICLE</ul><br></div><br></div><br></div><br>HEART SHAPED SMALL BEAUTIFUL PERFUM , EASY TO CARRY , PERFECT FOR BAG FITTINGS, SOFT POLITE ODOUR LONG LASTING,SAFE ON SKIN AND A PERFECT GIFT.</p>',390.00,390.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Mutual Love perfume For women','<p><strong>Article no: 1026</strong></p><p><strong><br></strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i2.6d5c5360MhLU02\">product details of Mutual Love perfume</h6><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><div class=\"pdp-product-desc \" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i1.6d5c5360MhLU02\"><div class=\"html-content pdp-product-highlights\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.6d5c5360MhLU02\"><ul class=\"\"><br> 	<li class=\"\">MUTUAL LOVE PERFUME</li><br> 	<li class=\"\">HEART SHAPE PERFUME</li><br> 	<li class=\"\">50 ML</li><br> 	<li class=\"\">EAU DE PARFUM</li><br> 	<li class=\"\">FOR WOMEN</li><br> 	<li class=\"\">GIFTING PERFUME FOR LOVERS</li><br></ul><br></div><br><div class=\"html-content detail-content\"><br><ul>MUTUAL LOVE PERFUME&nbsp;FOR GIRL&nbsp;/ WOMEN&nbsp;EDP50 ML&nbsp;LONG LASTING&nbsp;BEST FRAGRANCE&nbsp;BEST RATEGIFTING PERFUMEORIGINAL ARTICLE</ul><br></div><br></div><br></div><br>HEART SHAPED SMALL BEAUTIFUL PERFUM , EASY TO CARRY , PERFECT FOR BAG FITTINGS, SOFT POLITE ODOUR LONG LASTING,SAFE ON SKIN AND A PERFECT GIFT.</p>',NULL,NULL,'-87l5g',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 02:13:30'),(321,'Royal Ramba perfume for women','admin',9,16,NULL,NULL,1,'458,459,457','460','youtube',NULL,'velburry','<strong>Article no: 1027</strong><br><h6>product details:</h6><br><ul><br> 	<li>Size – 100 ml</li><br> 	<li>Good Fragrance</li><br> 	<li>Strong &amp; Refreshing Scent</li><br> 	<li>Sensual and Bold Fragrance</li><br> 	<li>be it parties, meetings, or hangouts</li><br></ul><br>Royal Ramba Perfume For Men and Women is good for all fragrances and best results.',450.00,450.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Royal Ramba perfume for women','<strong>Article no: 1027</strong><br><h6>product details:</h6><br><ul><br> 	<li>Size – 100 ml</li><br> 	<li>Good Fragrance</li><br> 	<li>Strong &amp; Refreshing Scent</li><br> 	<li>Sensual and Bold Fragrance</li><br> 	<li>be it parties, meetings, or hangouts</li><br></ul><br>Royal Ramba Perfume For Men and Women is good for all fragrances and best results.',NULL,NULL,'-xobsp',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 02:14:33'),(322,'Rumba By Ted Lapidus For Women, Eau De Toilette Spray','admin',9,16,NULL,NULL,1,'462,463','461','youtube',NULL,'velburry','<strong>Article no: 1028</strong><br><div id=\"descriptionAndDetails\" class=\"a-section a-spacing-extra-large\"><br><div id=\"productDescription_feature_div\" class=\"celwidget\" data-feature-name=\"productDescription\" data-csa-c-id=\"ygppwy-mgijjm-y16svi-xz8i3j\" data-cel-widget=\"productDescription_feature_div\"><div><div id=\"productDescription_feature_div\" class=\"a-row feature\" data-feature-name=\"productDescription\" data-template-name=\"productDescription\" data-cel-widget=\"productDescription_feature_div\"><div id=\"productDescription\" class=\"a-section a-spacing-small\"><br><br>Introduced in 1989. Fragrance notes: fruity and floral, has exotic notes of light woods, musk and vanilla. Recommended use: casual.When applying any fragrance please consider that there are several factors which can affect the natural smell of your skin and, in turn, the way a scent smells on you.&nbsp; For instance, your mood, stress level, age, body chemistry, diet, and current medications may all alter the scents you wear.&nbsp;&nbsp;Similarly, factor such as dry or oily skin can even affect the amount of time a fragrance will last after being applied.<br><br></div><br></div><br></div><br></div><br></div><br><b>Rumba</b>&nbsp;by&nbsp;<b>Ted Lapidus</b>&nbsp;is a Oriental Floral fragrance for women.&nbsp;<b>Rumba</b>&nbsp;was launched in 1989. The nose behind this fragrance is Jean-Claude Ellena. Top notes are Plum, Peach, Mirabelle, Orange Blossom, Bergamot, Basil and Raspberry; middle notes are Honey, Marigold, Carnation, Tuberose, Heliotrope, Jasmine, Gardenia, Rose, Magnolia, Orchid and Lily-of-the-Valley; base notes are Leather, Oakmoss, Plum, Ambergris, Sandalwood, Musk, Styrax, Patchouli, Tonka Bean, Vanilla and Cedar.',2650.00,2650.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Rumba By Ted Lapidus For Women, Eau De Toilette Spray','<strong>Article no: 1028</strong><br><div id=\"descriptionAndDetails\" class=\"a-section a-spacing-extra-large\"><br><div id=\"productDescription_feature_div\" class=\"celwidget\" data-feature-name=\"productDescription\" data-csa-c-id=\"ygppwy-mgijjm-y16svi-xz8i3j\" data-cel-widget=\"productDescription_feature_div\"><div><div id=\"productDescription_feature_div\" class=\"a-row feature\" data-feature-name=\"productDescription\" data-template-name=\"productDescription\" data-cel-widget=\"productDescription_feature_div\"><div id=\"productDescription\" class=\"a-section a-spacing-small\"><br><br>Introduced in 1989. Fragrance notes: fruity and floral, has exotic notes of light woods, musk and vanilla. Recommended use: casual.When applying any fragrance please consider that there are several factors which can affect the natural smell of your skin and, in turn, the way a scent smells on you.&nbsp; For instance, your mood, stress level, age, body chemistry, diet, and current medications may all alter the scents you wear.&nbsp;&nbsp;Similarly, factor such as dry or oily skin can even affect the amount of time a fragrance will last after being applied.<br><br></div><br></div><br></div><br></div><br></div><br><b>Rumba</b>&nbsp;by&nbsp;<b>Ted Lapidus</b>&nbsp;is a Oriental Floral fragrance for women.&nbsp;<b>Rumba</b>&nbsp;was launched in 1989. The nose behind this fragrance is Jean-Claude Ellena. Top notes are Plum, Peach, Mirabelle, Orange Blossom, Bergamot, Basil and Raspberry; middle notes are Honey, Marigold, Carnation, Tuberose, Heliotrope, Jasmine, Gardenia, Rose, Magnolia, Orchid and Lily-of-the-Valley; base notes are Leather, Oakmoss, Plum, Ambergris, Sandalwood, Musk, Styrax, Patchouli, Tonka Bean, Vanilla and Cedar.',NULL,NULL,'-qr8vg',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 02:15:36'),(323,'CHARLIE RED PERFUME FOR MEN','admin',9,15,NULL,NULL,1,'466,467,465,464','468','youtube',NULL,'velburry','<p><strong>Article no: 1029</strong></p><p><strong><br></strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.750248c3UPIjEe\">Product details of CHARLIE RED PERFUME FOR MEN 100 ML</h6><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><div class=\"pdp-product-desc \"><div class=\"html-content pdp-product-highlights\"><ul class=\"\"> 	<li class=\"\">Charlie Red Perfume</li><br> 	<li class=\"\">100 Ml</li><br> 	<li class=\"\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.750248c3UPIjEe\">For Men</li><br> 	<li class=\"\">Long Lasting</li><br></ul><br>Eau De Toilette<b>Charlie Perfume for Men</b>&nbsp;- 100mlCharlie Blue&nbsp;<b>Perfume</b>&nbsp;By Revlon, Launched By The Design House Of Revlon In 1973,&nbsp;<b>Charlie</b>&nbsp;Blue Is Classified As A Luxurious, Flowery&nbsp;<b>Fragrance</b>&nbsp;. This Feminine&nbsp;<b>Scent</b>&nbsp;Possesses A Blend Of Florals Geranium, Jasmine, And Rose, Mossy Woods, Sandalwood, Oakmoss, And Musk.<br><br></div><br></div><br></div></p>',950.00,950.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'CHARLIE RED PERFUME FOR MEN','<p><strong>Article no: 1029</strong></p><p><strong><br></strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.750248c3UPIjEe\">Product details of CHARLIE RED PERFUME FOR MEN 100 ML</h6><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><div class=\"pdp-product-desc \"><div class=\"html-content pdp-product-highlights\"><ul class=\"\"> 	<li class=\"\">Charlie Red Perfume</li><br> 	<li class=\"\">100 Ml</li><br> 	<li class=\"\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.750248c3UPIjEe\">For Men</li><br> 	<li class=\"\">Long Lasting</li><br></ul><br>Eau De Toilette<b>Charlie Perfume for Men</b>&nbsp;- 100mlCharlie Blue&nbsp;<b>Perfume</b>&nbsp;By Revlon, Launched By The Design House Of Revlon In 1973,&nbsp;<b>Charlie</b>&nbsp;Blue Is Classified As A Luxurious, Flowery&nbsp;<b>Fragrance</b>&nbsp;. This Feminine&nbsp;<b>Scent</b>&nbsp;Possesses A Blend Of Florals Geranium, Jasmine, And Rose, Mossy Woods, Sandalwood, Oakmoss, And Musk.<br><br></div><br></div><br></div></p>',NULL,NULL,'-1e0si',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 02:17:22'),(324,'Charlie Blue Eau De toilette For Men','admin',9,15,NULL,NULL,1,'480,478,479','477','youtube',NULL,'velburry','<strong>Article no: 1030</strong><br><br><strong>Charlie Perfume for Men - 100ml</strong>Charlie Blue Perfume By Revlon, Launched By The Design House Of Revlon In 1973, Charlie Blue Is Classified As A Luxurious, Flowery Fragrance . This Feminine Scent Possesses A Blend Of Florals Geranium, Jasmine, And Rose, Mossy Woods, Sandalwood, Oakmoss, And Musk. It Is Recommended For Daytime Wear. Imported from Dubai.<br><br><b>Charlie Perfume for Men</b> - 100mlCharlie Blue <b>Perfume</b> By Revlon, Launched By The Design House Of Revlon In 1973, <b>Charlie</b> Blue Is Classified As A Luxurious, Flowery <b>Fragrance</b> . This Feminine <b>Scent</b> Possesses A Blend Of Florals Geranium, Jasmine, And Rose, Mossy Woods, Sandalwood, Oakmoss, And Musk.',950.00,950.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Charlie Blue Eau De toilette For Men','<strong>Article no: 1030</strong><br><br><strong>Charlie Perfume for Men - 100ml</strong>Charlie Blue Perfume By Revlon, Launched By The Design House Of Revlon In 1973, Charlie Blue Is Classified As A Luxurious, Flowery Fragrance . This Feminine Scent Possesses A Blend Of Florals Geranium, Jasmine, And Rose, Mossy Woods, Sandalwood, Oakmoss, And Musk. It Is Recommended For Daytime Wear. Imported from Dubai.<br><br><b>Charlie Perfume for Men</b> - 100mlCharlie Blue <b>Perfume</b> By Revlon, Launched By The Design House Of Revlon In 1973, <b>Charlie</b> Blue Is Classified As A Luxurious, Flowery <b>Fragrance</b> . This Feminine <b>Scent</b> Possesses A Blend Of Florals Geranium, Jasmine, And Rose, Mossy Woods, Sandalwood, Oakmoss, And Musk.',NULL,NULL,'-be07t',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 02:22:03'),(325,'Network By Lomani For Men. Eau De Toilette','admin',9,15,NULL,NULL,1,'470,471,472','469','youtube',NULL,'velburry','<p><strong>Article no: 1031</strong></p><p><strong><br></strong><br><div>Lomani Paris&nbsp;Network&nbsp;a radically fresh composition, dictated by a name that has the ring of a manifesto. This sensually fresh scent sets a modern vision of virility with thrill of pure freshness top note face to the sensuality.</div><br><div><br><br>Brand : Lomani<br><br>Fragrance Perfume :&nbsp;Network<br><br>Fragrance : Bergamot, lavender, mint and mandarin orange, lily of the valley, nutmeg and water lily, musk, sandalwood, oakmoss, labdanum, cedar and clary sage.<br><br>Gender : Men<br><br>ML : 100 EDT<br><br><b>Network</b>&nbsp;by Lomani is a Aromatic Fougere&nbsp;<b>fragrance</b>&nbsp;for men.&nbsp;<b>Network</b>&nbsp;was launched in 1996. Top&nbsp;<b>notes</b>&nbsp;are Mandarin Orange, Lavender, Bergamot and Mint; middle&nbsp;<b>notes</b>&nbsp;are Nutmeg, Lily-of-the-Valley and Water Lily; base&nbsp;<b>notes</b>&nbsp;are Sandalwood, Clary Sage, Cedar, Musk, Oakmoss and Labdanum.<br><br></div></p>',1690.00,1690.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Network By Lomani For Men. Eau De Toilette','<p><strong>Article no: 1031</strong></p><p><strong><br></strong><br><div>Lomani Paris&nbsp;Network&nbsp;a radically fresh composition, dictated by a name that has the ring of a manifesto. This sensually fresh scent sets a modern vision of virility with thrill of pure freshness top note face to the sensuality.</div><br><div><br><br>Brand : Lomani<br><br>Fragrance Perfume :&nbsp;Network<br><br>Fragrance : Bergamot, lavender, mint and mandarin orange, lily of the valley, nutmeg and water lily, musk, sandalwood, oakmoss, labdanum, cedar and clary sage.<br><br>Gender : Men<br><br>ML : 100 EDT<br><br><b>Network</b>&nbsp;by Lomani is a Aromatic Fougere&nbsp;<b>fragrance</b>&nbsp;for men.&nbsp;<b>Network</b>&nbsp;was launched in 1996. Top&nbsp;<b>notes</b>&nbsp;are Mandarin Orange, Lavender, Bergamot and Mint; middle&nbsp;<b>notes</b>&nbsp;are Nutmeg, Lily-of-the-Valley and Water Lily; base&nbsp;<b>notes</b>&nbsp;are Sandalwood, Clary Sage, Cedar, Musk, Oakmoss and Labdanum.<br><br></div></p>',NULL,NULL,'-17hvl',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 02:19:19'),(326,'Vaseline Hair Tonic and Scalp Conditioner Hair Oil(100ml)','admin',9,19,NULL,NULL,1,'476,474,475','473','youtube',NULL,'velburry','<strong>Article no: 1066</strong><br><br>Vaseline Hair Tonic and Scalp Conditioner helps to keep the hair and scalp tidy and tamed. It provides deep nourishment to the hair and makes it healthy and strong from the hair roots to tip. It works a dual purposr of both a hair oil and a hair conditioner. This comes in transparent sleek bottle with a screw cap which makes it easy to carry around when needed.',250.00,250.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Vaseline Hair Tonic and Scalp Conditioner Hair Oil(100ml)','<strong>Article no: 1066</strong><br><br>Vaseline Hair Tonic and Scalp Conditioner helps to keep the hair and scalp tidy and tamed. It provides deep nourishment to the hair and makes it healthy and strong from the hair roots to tip. It works a dual purposr of both a hair oil and a hair conditioner. This comes in transparent sleek bottle with a screw cap which makes it easy to carry around when needed.',NULL,NULL,'-s0eh8',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 05:38:23'),(327,'Vaseline Hair Tonic and Scalp Conditioner Hair Oil (200 ml)','admin',9,19,NULL,NULL,1,'481,482','483','youtube',NULL,'velburry','<p class=\"more\"><strong>Article no: 1067</strong></p><br><p class=\"more\">Vaseline Hair Tonic and Scalp Conditioner helps to keep the hair and scalp tidy and tamed. It provides deep nourishment to the hair and makes it healthy and strong from the hair roots to tip. It works a dual purpose of both a hair oil and a hair conditioner. This comes in transparent sleek bottle with a screw cap which makes it easy to carry around when needed.</p>',320.00,320.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Vaseline Hair Tonic and Scalp Conditioner Hair Oil (200 ml)','<p class=\"more\"><strong>Article no: 1067</strong></p><br><p class=\"more\">Vaseline Hair Tonic and Scalp Conditioner helps to keep the hair and scalp tidy and tamed. It provides deep nourishment to the hair and makes it healthy and strong from the hair roots to tip. It works a dual purpose of both a hair oil and a hair conditioner. This comes in transparent sleek bottle with a screw cap which makes it easy to carry around when needed.</p>',NULL,NULL,'-s3nwk',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 05:38:36'),(328,'Desire By Alfred Dunhill For Men','admin',9,15,NULL,NULL,1,'485,486,487,488,489','484','youtube',NULL,'velburry','<strong>Article no: 1032</strong><br><br><b>Desire Red</b> is a refreshing woody-oriental fragrance. At its heart are unique notes of rose, patchouli and teakwood. A blend of warm and sensual fruity and woody top notes contrast with undertones of vanilla and musk.<br><br><strong>Desire for a Man (Eau de Toilette)</strong> is a perfume by <a href=\"https://www.parfumo.net/Perfumes/Dunhill\"><strong>Dunhill</strong></a> for men and was released in <a href=\"https://www.parfumo.net/Release_Year/2000\">2000</a>. The scent is fruity-sweet. It was last marketed by Inter Parfums.',5200.00,5200.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Desire By Alfred Dunhill For Men','<strong>Article no: 1032</strong><br><br><b>Desire Red</b> is a refreshing woody-oriental fragrance. At its heart are unique notes of rose, patchouli and teakwood. A blend of warm and sensual fruity and woody top notes contrast with undertones of vanilla and musk.<br><br><strong>Desire for a Man (Eau de Toilette)</strong> is a perfume by <a href=\"https://www.parfumo.net/Perfumes/Dunhill\"><strong>Dunhill</strong></a> for men and was released in <a href=\"https://www.parfumo.net/Release_Year/2000\">2000</a>. The scent is fruity-sweet. It was last marketed by Inter Parfums.',NULL,NULL,'-tb71t',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 02:24:34'),(329,'Nitro Canada Hair','admin',9,19,NULL,NULL,1,'491,490','492','youtube',NULL,'velburry','<strong>Article No: 1068</strong><br>Enhance lustrous shine and fixable hold. Emphasize shape and curl of your hair. Ieal for sleek look and good scent. Easy to apply and wash off.<br><ul><br> 	<li class=\"_21Ahn-\">For Men</li><br> 	<li class=\"_21Ahn-\">For All Hair Types</li><br> 	<li class=\"_21Ahn-\">Type: Hair Wax</li><br> 	<li class=\"_21Ahn-\">Quantity: 150</li><br> 	<li class=\"_21Ahn-\">Sulfate Free</li><br></ul>',230.00,230.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Nitro Canada Hair','<strong>Article No: 1068</strong><br>Enhance lustrous shine and fixable hold. Emphasize shape and curl of your hair. Ieal for sleek look and good scent. Easy to apply and wash off.<br><ul><br> 	<li class=\"_21Ahn-\">For Men</li><br> 	<li class=\"_21Ahn-\">For All Hair Types</li><br> 	<li class=\"_21Ahn-\">Type: Hair Wax</li><br> 	<li class=\"_21Ahn-\">Quantity: 150</li><br> 	<li class=\"_21Ahn-\">Sulfate Free</li><br></ul>',NULL,NULL,'-nqp7l',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 05:38:51'),(330,'Sabalon Hair Spray for Unisex - Red - 420 ml','admin',9,19,NULL,NULL,1,'494,495','493','youtube',NULL,'velburry','<strong>Article No: 1069</strong><br><br>Farosh offers you Sabalon Hair Spray for Unisex - Red - 420 ml. It is compatible with all types of hair for styling purposes. If you are fed up with not getting settled in the right position, Sabalon is an option to go. Once the hair is positioned with this Sabalon hair spray, they wont even change their position until washed or combed. The spray is compatible with both the males and females hair to get positioned. Start fixing your hair with Sabalon spray from today.',330.00,330.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Sabalon Hair Spray for Unisex - Red - 420 ml','<strong>Article No: 1069</strong><br><br>Farosh offers you Sabalon Hair Spray for Unisex - Red - 420 ml. It is compatible with all types of hair for styling purposes. If you are fed up with not getting settled in the right position, Sabalon is an option to go. Once the hair is positioned with this Sabalon hair spray, they wont even change their position until washed or combed. The spray is compatible with both the males and females hair to get positioned. Start fixing your hair with Sabalon spray from today.',NULL,NULL,'-c1eb9',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 05:39:11'),(331,'Dunhill Desire Blue Eau De Toilette For Men','admin',9,15,NULL,NULL,1,'497,498,499,500','496','youtube',NULL,'velburry','<strong>Article no: 1033</strong><br><br>Desire <b>Blue</b> by Alfred <b>Dunhill</b> is a Aromatic Green <b>fragrance</b> for men. ... The nose behind this <b>fragrance</b> is Philippe Romano. Top <b>notes</b> are Litchi, Mandarin Orange, Lotus and Bergamot; middle <b>notes</b> are Sea <b>Notes</b>, Orange and Brazilian Rosewood; base <b>notes</b> are Tonka Bean, Amber, Musk and Benzoin.<br><h6 class=\"list__product--title\">Product Highlights:</h6><br><ul class=\"list__product--listings\"><br> 	<li>The perfect scent for men looking to achieve a bold fragrance</li><br> 	<li>Designed and manufactured by Philippe Romano for Dunhill London</li><br> 	<li>Top notes of litchi, lotus, and mandarin orange</li><br> 	<li>Heart notes consist of rosewood and sea notes</li><br> 	<li>Base notes are benzoin and musk</li><br></ul>',4900.00,4900.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Dunhill Desire Blue Eau De Toilette For Men','<strong>Article no: 1033</strong><br><br>Desire <b>Blue</b> by Alfred <b>Dunhill</b> is a Aromatic Green <b>fragrance</b> for men. ... The nose behind this <b>fragrance</b> is Philippe Romano. Top <b>notes</b> are Litchi, Mandarin Orange, Lotus and Bergamot; middle <b>notes</b> are Sea <b>Notes</b>, Orange and Brazilian Rosewood; base <b>notes</b> are Tonka Bean, Amber, Musk and Benzoin.<br><h6 class=\"list__product--title\">Product Highlights:</h6><br><ul class=\"list__product--listings\"><br> 	<li>The perfect scent for men looking to achieve a bold fragrance</li><br> 	<li>Designed and manufactured by Philippe Romano for Dunhill London</li><br> 	<li>Top notes of litchi, lotus, and mandarin orange</li><br> 	<li>Heart notes consist of rosewood and sea notes</li><br> 	<li>Base notes are benzoin and musk</li><br></ul>',NULL,NULL,'-gsyy8',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 02:28:10'),(332,'Nova Gold Super Firm Hold Hair Spray(200ml)','admin',9,19,NULL,NULL,1,'501,502,503','504','youtube',NULL,'velburry','<strong>Article No: 1070</strong><br><br><strong>We brings you the best price for Nova Gold Super Firm Hold Hair Spray For Unisex 200ml with express shipping all over Pakistan.</strong><br><br><strong>Details:</strong><br><br><b>•</b> Quantity - 200ml<br><b>•</b> Super Hold Hairspray<br><b>•</b> Shake before use, spray the hair as needed<br><b>•</b> Hair styling spray<br><b>•</b> For All Hair Types<br><b>•</b> Firm look - Construing the Effect of Vogue.<br><b>•</b> Long lasting - Gives Life to Hair<br><b>•</b> Unisex: Suitable For Both Males &amp; Females<br><b>•</b> Hair Fixer',250.00,250.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Nova Gold Super Firm Hold Hair Spray(200ml)','<strong>Article No: 1070</strong><br><br><strong>We brings you the best price for Nova Gold Super Firm Hold Hair Spray For Unisex 200ml with express shipping all over Pakistan.</strong><br><br><strong>Details:</strong><br><br><b>•</b> Quantity - 200ml<br><b>•</b> Super Hold Hairspray<br><b>•</b> Shake before use, spray the hair as needed<br><b>•</b> Hair styling spray<br><b>•</b> For All Hair Types<br><b>•</b> Firm look - Construing the Effect of Vogue.<br><b>•</b> Long lasting - Gives Life to Hair<br><b>•</b> Unisex: Suitable For Both Males &amp; Females<br><b>•</b> Hair Fixer',NULL,NULL,'-7oagf',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 05:39:36'),(333,'Jaguar By Jaguar For Men. Eau De Toilette','admin',9,15,NULL,NULL,1,'506,507,508','505','youtube',NULL,'velburry','<p><strong>Article no: 1034</strong></p><p><strong><br></strong><br><h6 class=\"a-size-base-plus a-text-bold\">About this item</h6><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Country of origin is China</span></li><br> 	<li><span class=\"a-list-item\">The package weight of the product is 12 pounds</span></li><br> 	<li><span class=\"a-list-item\">Apply onto clean, dry skin.</span></li><br> 	<li><span class=\"a-list-item\"><span class=\"a-list-item\">This item is by designer Jaguar.</span></span><br><div id=\"tabs\" class=\"tabs \"><br><div class=\"tab active\"><br><div></div><br><span id=\"tabs-1\" class=\"tab1-desc tab-desc tab-content show-drop\">Jaguar For Men was launched by design house of Jaguar in 1988, it is classified as a luxurious, spicy, lavender, amber fragrance.<br>This masculine scent possesses a blend of basil, lavender, grapefruit and gardenia.<br>Accompanied by cedar, spruce, leather and fern.</span><br><br></div><br></div></li><br></ul></p>',2550.00,2550.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Jaguar By Jaguar For Men. Eau De Toilette','<p><strong>Article no: 1034</strong></p><p><strong><br></strong><br><h6 class=\"a-size-base-plus a-text-bold\">About this item</h6><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Country of origin is China</span></li><br> 	<li><span class=\"a-list-item\">The package weight of the product is 12 pounds</span></li><br> 	<li><span class=\"a-list-item\">Apply onto clean, dry skin.</span></li><br> 	<li><span class=\"a-list-item\"><span class=\"a-list-item\">This item is by designer Jaguar.</span></span><br><div id=\"tabs\" class=\"tabs \"><br><div class=\"tab active\"><br><div></div><br><span id=\"tabs-1\" class=\"tab1-desc tab-desc tab-content show-drop\">Jaguar For Men was launched by design house of Jaguar in 1988, it is classified as a luxurious, spicy, lavender, amber fragrance.<br>This masculine scent possesses a blend of basil, lavender, grapefruit and gardenia.<br>Accompanied by cedar, spruce, leather and fern.</span><br><br></div><br></div></li><br></ul></p>',NULL,NULL,'-adoyo',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 02:33:42'),(334,'Garnier Hair Natural Colors','admin',9,19,NULL,NULL,1,'510,1925,1926,1927,1924,1922,1923,1916,1918,1917,1919,1921,1920,1914,1915,1912,1913,1911,1909,1905,1899,1904,1898,1903,1906,1908,1902,1907,1910,1900','512','youtube',NULL,'velburry','<strong>Article No: 1071</strong><br><br>For over 60 years, Garnier has been creating unique hair colors and combining them with caring natural ingredients which have proven positive effects on the condition of the hair.<br><h6><b> Hair Color Shades to Try:</b></h6><br><ul><br> 	<li>Natural Black – Warm</li><br> 	<li>Reflective Blue Black – Cool</li><br> 	<li>Darkest Brown – Cool</li><br> 	<li>Light Brown  – Neutral</li><br> 	<li>Brown – Neutral</li><br> 	<li>Caramel Brown – Warm</li><br> 	<li>Intense Red – Neutral</li><br> 	<li>Copper Red – Warm</li><br> 	<li>Wine Burgundy – Cool</li><br></ul><br><pre></pre><br><pre></pre><br><pre></pre><br><pre></pre><br><pre></pre><br><pre></pre><br><strong> </strong>',549.00,500.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,49.00,'amount',0.00,'amount','flat_rate',0.00,0,'Garnier Hair Natural Colors','<strong>Article No: 1071</strong><br><br>For over 60 years, Garnier has been creating unique hair colors and combining them with caring natural ingredients which have proven positive effects on the condition of the hair.<br><h6><b> Hair Color Shades to Try:</b></h6><br><ul><br> 	<li>Natural Black – Warm</li><br> 	<li>Reflective Blue Black – Cool</li><br> 	<li>Darkest Brown – Cool</li><br> 	<li>Light Brown  – Neutral</li><br> 	<li>Brown – Neutral</li><br> 	<li>Caramel Brown – Warm</li><br> 	<li>Intense Red – Neutral</li><br> 	<li>Copper Red – Warm</li><br> 	<li>Wine Burgundy – Cool</li><br></ul><br><pre></pre><br><pre></pre><br><pre></pre><br><pre></pre><br><pre></pre><br><pre></pre><br><strong> </strong>',NULL,NULL,'-qeypp',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-21 10:21:21'),(335,'Eternity For Men Calvin Klein for men','admin',9,15,NULL,NULL,1,'514,515,516,517','513','youtube',NULL,'velburry','<strong>Article no: 1035</strong><br><br><b>Eternity for Men</b> is fresh yet woody, combining crisp, cool <b>notes</b> with warmer ingredients. This confident <b>scent</b> features green botanical top <b>notes</b>, balanced with a herbaceous hint of sage and basil at the heart, rounded off with a woodsy cedar base that lingers on the skin.<br><br>Calvin Klein Eternity for Men Eau de Parfum comes out in September 2019 as a new version of the original 1989 Eternity for Men fragrance. The brand uses phrases such as \"robust but refined\" and \"masculine but sensual\" to describe the new fragrance.',4400.00,4400.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Eternity For Men Calvin Klein for men','<strong>Article no: 1035</strong><br><br><b>Eternity for Men</b> is fresh yet woody, combining crisp, cool <b>notes</b> with warmer ingredients. This confident <b>scent</b> features green botanical top <b>notes</b>, balanced with a herbaceous hint of sage and basil at the heart, rounded off with a woodsy cedar base that lingers on the skin.<br><br>Calvin Klein Eternity for Men Eau de Parfum comes out in September 2019 as a new version of the original 1989 Eternity for Men fragrance. The brand uses phrases such as \"robust but refined\" and \"masculine but sensual\" to describe the new fragrance.',NULL,NULL,'-alzqj',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 02:36:08'),(336,'Active Man Chris Adams for men','admin',9,15,NULL,NULL,1,'519,520,518','521','youtube',NULL,'velburry','<strong>Article no: 1036</strong><br><br>TOP NOTES:<br><br>Bergamot, Herbs, Lime<br><br>MIDDLE NOTES:Lavender, Rose, Jasmine, Water Flowers, Violet, Patchouli<br><br>BASE NOTES: Sandalwood, Cedarwood, Teck, Musk, Amber, Moss<br><br>OLFACTIVE FAMILY: Aromatic - Floral - Woody<br><br>Young, energetic and oozing charisma, he makes a splash wherever he goes. A cool and refreshing <b>perfume</b> that combines the freshness of aqua with tangy citrus <b>notes</b> and herbal <b>notes</b> is offset by a sensual white musk.',1250.00,1250.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Active Man Chris Adams for men','<strong>Article no: 1036</strong><br><br>TOP NOTES:<br><br>Bergamot, Herbs, Lime<br><br>MIDDLE NOTES:Lavender, Rose, Jasmine, Water Flowers, Violet, Patchouli<br><br>BASE NOTES: Sandalwood, Cedarwood, Teck, Musk, Amber, Moss<br><br>OLFACTIVE FAMILY: Aromatic - Floral - Woody<br><br>Young, energetic and oozing charisma, he makes a splash wherever he goes. A cool and refreshing <b>perfume</b> that combines the freshness of aqua with tangy citrus <b>notes</b> and herbal <b>notes</b> is offset by a sensual white musk.',NULL,NULL,'-o8l6l',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 02:37:07'),(337,'Ponds White Beauty Lightening Facial Foam Daily Spot-Less 100gm','admin',9,24,NULL,NULL,1,'523,524,525','522','youtube',NULL,'velburry','<strong>Article No: 1072</strong><br><br><b>White Beauty Facial Foam</b> Cleanses deeply for a fair &amp; glowing skin. Unique formula that reduces dullness &amp; brightens the skin. Washes away dead skin cells to uncover bright skin cells. Cleanses deeply for a fair &amp; glowing skin.',270.00,270.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Ponds White Beauty Lightening Facial Foam Daily Spot-Less','<strong>Article No: 1072</strong><br><br><b>White Beauty Facial Foam</b> Cleanses deeply for a fair &amp; glowing skin. Unique formula that reduces dullness &amp; brightens the skin. Washes away dead skin cells to uncover bright skin cells. Cleanses deeply for a fair &amp; glowing skin.',NULL,NULL,'-idn0x',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-23 07:54:20'),(338,'CHRIS ADAMS ACTIVE WOMAN EAU DE PARFUM','admin',9,16,NULL,NULL,1,'526,527,528,529','530','youtube',NULL,'velburry','<strong>Article no: 1037</strong><br><br>TOP NOTES: Bergamot, Orange, Grapefruit<br>MIDDLE NOTES: Exotic Fruits, Rose, Jasmine<br>BASE NOTES: Sandalwood, Patchouli, Tonka Beans, Vanilla, Musks<br>OLFACTIVE FAMILY: Floral-Fruity-Musky<br><br>This <b>fragrance</b> is a playful blend of exotic fruits and floral <b>notes</b>. ... MIDDLE NOTE : Basket of Exotic Fruits, Rose Petals, Aquatic Jasmine. BASE NOTE : Precious Sandalwood, Leaves of Patchouly, Tonka Beans, Vanilla Sugar, Sensual White Musks. <b>Active Woman Perfume</b> is available in 80-ml transparent pink colored bottle.',1250.00,1250.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'CHRIS ADAMS ACTIVE WOMAN EAU DE PARFUM','<strong>Article no: 1037</strong><br><br>TOP NOTES: Bergamot, Orange, Grapefruit<br>MIDDLE NOTES: Exotic Fruits, Rose, Jasmine<br>BASE NOTES: Sandalwood, Patchouli, Tonka Beans, Vanilla, Musks<br>OLFACTIVE FAMILY: Floral-Fruity-Musky<br><br>This <b>fragrance</b> is a playful blend of exotic fruits and floral <b>notes</b>. ... MIDDLE NOTE : Basket of Exotic Fruits, Rose Petals, Aquatic Jasmine. BASE NOTE : Precious Sandalwood, Leaves of Patchouly, Tonka Beans, Vanilla Sugar, Sensual White Musks. <b>Active Woman Perfume</b> is available in 80-ml transparent pink colored bottle.',NULL,NULL,'-s2r4v',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 02:39:12'),(339,'POND\'S Oil Control Face Wash 100gm','admin',9,24,NULL,NULL,1,'534,535,532,533','531','youtube',NULL,'velburry','<strong>Article No: 1073</strong><br><br>It helps remove <b>oil</b> and grime off your <b>face</b>. Women with oily or combination skin tend to look dull due to the <b>oil</b> secretion - <b>Ponds oil control</b> is tough on the <b>oil</b> but gentle on the skin. The silica gel bead technology helps giving you an <b>oil free</b> glow. Feel the freshness with <b>Ponds oil control</b>.',270.00,270.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'POND\'S Oil Control Face Wash','<strong>Article No: 1073</strong><br><br>It helps remove <b>oil</b> and grime off your <b>face</b>. Women with oily or combination skin tend to look dull due to the <b>oil</b> secretion - <b>Ponds oil control</b> is tough on the <b>oil</b> but gentle on the skin. The silica gel bead technology helps giving you an <b>oil free</b> glow. Feel the freshness with <b>Ponds oil control</b>.',NULL,NULL,'-a4ww4',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-21 11:19:36'),(340,'Marquis Remy Marquis for women','admin',9,16,NULL,NULL,1,'536,537','538','youtube',NULL,'velburry','<strong>Article no: 1038</strong><br><br><b>Marquis</b> by <b>Remy Marquis</b> is a Oriental Woody fragrance for women. <b>Marquis</b> was launched in 1999.<br><br><b>Marquis</b> is a full on old school <b>fragrance</b>, and definitely very close to Poême – maybe 85% the same vibe, but notably sweeter. In fact <b>Marquis</b> reads *very* sweet on my skin. It takes about 30 minutes to calm down before becoming a sweet, ambery-balsamic white floral.',1890.00,1890.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Marquis Remy Marquis for women','<strong>Article no: 1038</strong><br><br><b>Marquis</b> by <b>Remy Marquis</b> is a Oriental Woody fragrance for women. <b>Marquis</b> was launched in 1999.<br><br><b>Marquis</b> is a full on old school <b>fragrance</b>, and definitely very close to Poême – maybe 85% the same vibe, but notably sweeter. In fact <b>Marquis</b> reads *very* sweet on my skin. It takes about 30 minutes to calm down before becoming a sweet, ambery-balsamic white floral.',NULL,NULL,'-ro7nw',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 02:43:01'),(341,'PONDS Pure White face wash 100gm','admin',9,24,NULL,NULL,1,'541,539,540','542','youtube',NULL,'velburry','<strong>Article No: 1074</strong><br><br>Formulated with Activated Carbon and Vitamin B3, <b>Ponds Pure White</b> Deep <b>Cleansing Facial Wash</b> removes dead skin cells and impurities in your skin from the inside, resulting in brighter, radiant skin on the outside. Achieve fairer-looking skin with <b>Ponds face cleansing</b> solution.',300.00,300.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'PONDS Pure White face wash','<strong>Article No: 1074</strong><br><br>Formulated with Activated Carbon and Vitamin B3, <b>Ponds Pure White</b> Deep <b>Cleansing Facial Wash</b> removes dead skin cells and impurities in your skin from the inside, resulting in brighter, radiant skin on the outside. Achieve fairer-looking skin with <b>Ponds face cleansing</b> solution.',NULL,NULL,'-ll1pp',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-21 11:19:45'),(342,'Remy Marquis Marquis Perfume For Men','admin',9,15,NULL,NULL,1,'546,544,545','543','youtube',NULL,'velburry','<strong>Article no: 1039</strong><br><ul><br> 	<li>Size - 100 ml</li><br> 	<li>Good Fragrance</li><br> 	<li>Long Lasting</li><br> 	<li>Safe On Skin</li><br> 	<li>Fragrance Notes - Top Notes - Mint,Grapefruit,Lemon,Bergamot</li><br> 	<li>Heart Notes - Nutmeg,Geranium,Sage,Cinnamon</li><br> 	<li>Base Notes - Cedar,Amber,Sandalwood,Musk</li><br></ul><br><b>Marquis</b> is a spicy citrus <b>perfume</b> that doesnt change much through the drydown. It lasts for 5-6 hours on my skin unlike its more potent sibling, Shalis. Those who prefer citrus frags can try this one out and its pretty cheap.',1880.00,1880.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Remy Marquis Marquis Perfume For Men','<strong>Article no: 1039</strong><br><ul><br> 	<li>Size - 100 ml</li><br> 	<li>Good Fragrance</li><br> 	<li>Long Lasting</li><br> 	<li>Safe On Skin</li><br> 	<li>Fragrance Notes - Top Notes - Mint,Grapefruit,Lemon,Bergamot</li><br> 	<li>Heart Notes - Nutmeg,Geranium,Sage,Cinnamon</li><br> 	<li>Base Notes - Cedar,Amber,Sandalwood,Musk</li><br></ul><br><b>Marquis</b> is a spicy citrus <b>perfume</b> that doesnt change much through the drydown. It lasts for 5-6 hours on my skin unlike its more potent sibling, Shalis. Those who prefer citrus frags can try this one out and its pretty cheap.',NULL,NULL,'-3jejg',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 02:45:36'),(343,'POND\'s Flawless White Deep Whitening Facial Foam 100gm','admin',9,24,NULL,NULL,1,'547,548,549','550','youtube',NULL,'velburry','<b>Article No: 1075</b><br><br><b></b><b>Ponds</b> Flawless White <b>Deep Whitening Facial Foam deeply</b> cleanses pores and removes impurities that causes skin dullness for fresh, soft skin with a radiant glow. How It Works: Increase your skins radiance in 7 days with a formula that brightens and clears up your complexion.',390.00,390.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'POND\'s Flawless White Deep Whitening Facial Foam','<b>Article No: 1075</b><br><br><b></b><b>Ponds</b> Flawless White <b>Deep Whitening Facial Foam deeply</b> cleanses pores and removes impurities that causes skin dullness for fresh, soft skin with a radiant glow. How It Works: Increase your skins radiance in 7 days with a formula that brightens and clears up your complexion.',NULL,NULL,'-ewtrm',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-21 11:19:56'),(344,'CK One Calvin Klein for women and men','admin',9,16,NULL,NULL,1,'552,553,551','554','youtube',NULL,'velburry','<strong>Article no: 1040</strong><br><br>Ck One by Calvin Klein Perfume. No woman will fail to be impressed by the luxurious accents of this fragrance from the design house of Calvin Klein. <span id=\"product-read-more-text-mq1\" class=\"\">Created in 1994, Ck One perfume for women is a fragrance that conveys exotic appeal. The provocative scent contains accords of jasmine, citrus, rose and pineapple infused with green tea to create a sensuous scent that will cling to your body for hours. Youll feel confident, elegant, and adorable after spraying on this light, refreshing perfume,</span> <span id=\"product-read-more-text\" class=\"mq1dnone\">and youll be sure to attract appreciative comments from friends and acquaintances.</span>',3800.00,3800.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'CK One Calvin Klein for women and men','<strong>Article no: 1040</strong><br><br>Ck One by Calvin Klein Perfume. No woman will fail to be impressed by the luxurious accents of this fragrance from the design house of Calvin Klein. <span id=\"product-read-more-text-mq1\" class=\"\">Created in 1994, Ck One perfume for women is a fragrance that conveys exotic appeal. The provocative scent contains accords of jasmine, citrus, rose and pineapple infused with green tea to create a sensuous scent that will cling to your body for hours. Youll feel confident, elegant, and adorable after spraying on this light, refreshing perfume,</span> <span id=\"product-read-more-text\" class=\"mq1dnone\">and youll be sure to attract appreciative comments from friends and acquaintances.</span>',NULL,NULL,'-jrtvd',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 02:47:44'),(345,'POND\'s Age Miracle Cell Regenerating Facial Foam 100gm','admin',9,24,NULL,NULL,1,'557,555,556','558','youtube',NULL,'velburry','<strong>Article No: 1076</strong><br><br>Formulated with intelligent pro-cell complex and CLA, <b>Ponds age miracle</b> facial foam is an exfoliating foam <b>cleanser</b> with gentle micro granules that remove dead skin cells to reduce dullness, and enhance your skins overall radiance.',750.00,750.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'POND\'s Age Miracle Cell Regenerating Facial Foam','<strong>Article No: 1076</strong><br><br>Formulated with intelligent pro-cell complex and CLA, <b>Ponds age miracle</b> facial foam is an exfoliating foam <b>cleanser</b> with gentle micro granules that remove dead skin cells to reduce dullness, and enhance your skins overall radiance.',NULL,NULL,'-67sim',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-21 11:20:05'),(346,'CK be Calvin Klein for women and men','admin',9,15,NULL,NULL,1,'560,561,562,563','559','youtube',NULL,'velburry','<strong>Article no: 1041</strong><br><br><b>CK be</b> by <b>Calvin Klein</b> is a Floral Woody Musk fragrance for women and men. <b>CK be</b> was launched in 1996. The nose behind this fragrance is Rene Morgenthaler. Top notes are Lavender, Green Notes, Bergamot, Mint, Juniper and Mandarin Orange; middle notes are Green Grass, Peach, Jasmine, Freesia, Magnolia and Orchid; base notes are Musk, Sandalwood, Cedar, Vanilla, Opoponax and Amber.<br><br><b>Ck</b> Be is a <b>fragrance</b> for men created by <b>Calvin Klein</b> in 1996. Its classic <b>notes</b> of aromatic lavender, green <b>notes</b>, fresh mint, mandarin orange and intense juniper offer a refreshing, oriental <b>scent</b> that is recommended for the office and daytime casual wear.',3850.00,3850.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'CK be Calvin Klein for women and men','<strong>Article no: 1041</strong><br><br><b>CK be</b> by <b>Calvin Klein</b> is a Floral Woody Musk fragrance for women and men. <b>CK be</b> was launched in 1996. The nose behind this fragrance is Rene Morgenthaler. Top notes are Lavender, Green Notes, Bergamot, Mint, Juniper and Mandarin Orange; middle notes are Green Grass, Peach, Jasmine, Freesia, Magnolia and Orchid; base notes are Musk, Sandalwood, Cedar, Vanilla, Opoponax and Amber.<br><br><b>Ck</b> Be is a <b>fragrance</b> for men created by <b>Calvin Klein</b> in 1996. Its classic <b>notes</b> of aromatic lavender, green <b>notes</b>, fresh mint, mandarin orange and intense juniper offer a refreshing, oriental <b>scent</b> that is recommended for the office and daytime casual wear.',NULL,NULL,'-wwak0',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 02:49:52'),(347,'POND\'s Pimple Clear Facewash 100gm','admin',9,24,NULL,NULL,1,'564,566','568','youtube',NULL,'velburry','<strong>Article No: 1077</strong><br><br><b>Ponds Pimple Clear Face Wash</b> has active Thymo-T Essence which goes deep inside your <b>skin</b> to lock the <b>pimple</b>-causing germs at its root and helps <b>clear</b> it away. This <b>face wash</b> delivers superior results that strengthen <b>skin</b> and offer offer beautifully smooth, clearer <b>skin</b> on the outside',270.00,270.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'POND\'s Pimple Clear Facewash','<strong>Article No: 1077</strong><br><br><b>Ponds Pimple Clear Face Wash</b> has active Thymo-T Essence which goes deep inside your <b>skin</b> to lock the <b>pimple</b>-causing germs at its root and helps <b>clear</b> it away. This <b>face wash</b> delivers superior results that strengthen <b>skin</b> and offer offer beautifully smooth, clearer <b>skin</b> on the outside',NULL,NULL,'-ougkc',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-21 11:20:15'),(348,'Open By Roger & Gallet Edt Spray For Men','admin',9,15,NULL,NULL,1,'569,570,571','572','youtube',NULL,'velburry','<strong>Article no: 1042</strong><br><br><b>Open</b> by Roger &amp; Gallet is a Woody Aromatic <b>fragrance</b> for men. <b>Open</b> was launched in 1985. Top <b>notes</b> are Lavender, Amalfi Lemon and Bergamot; middle <b>notes</b> are Thyme and Sage; base <b>notes</b> are Tobacco, Vetiver and Patchouli.<br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Launched by the brand Roger &amp; Gallet</span></li><br> 	<li><span class=\"a-list-item\">This Perfume for men holds a long lasting fragrance</span></li><br> 	<li><span class=\"a-list-item\">Keeps you refreshing all day</span></li><br></ul>',1950.00,1950.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Open By Roger & Gallet Edt Spray For Men','<strong>Article no: 1042</strong><br><br><b>Open</b> by Roger &amp; Gallet is a Woody Aromatic <b>fragrance</b> for men. <b>Open</b> was launched in 1985. Top <b>notes</b> are Lavender, Amalfi Lemon and Bergamot; middle <b>notes</b> are Thyme and Sage; base <b>notes</b> are Tobacco, Vetiver and Patchouli.<br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Launched by the brand Roger &amp; Gallet</span></li><br> 	<li><span class=\"a-list-item\">This Perfume for men holds a long lasting fragrance</span></li><br> 	<li><span class=\"a-list-item\">Keeps you refreshing all day</span></li><br></ul>',NULL,NULL,'-o2haa',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 02:52:24'),(349,'POND\'s Clear Solution Facial Scrub 100gm','admin',9,24,NULL,NULL,1,'573,574','575','youtube',NULL,'velburry','<strong>Article No:1078 </strong><br><br><b>Ponds Clear Solutions</b> Facial Scrub with scrub beads, combines a Brightening Essence with a salicylic formula to effectively wash away 99% of pimple-causing germs while making your skin fairer and more radiant. Unlock your skins natural glow, without an oily shine. ... Resulting in <b>clear</b>, radiant skin.',270.00,270.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'POND\'s Clear Solution Facial Scrub','<strong>Article No:1078 </strong><br><br><b>Ponds Clear Solutions</b> Facial Scrub with scrub beads, combines a Brightening Essence with a salicylic formula to effectively wash away 99% of pimple-causing germs while making your skin fairer and more radiant. Unlock your skins natural glow, without an oily shine. ... Resulting in <b>clear</b>, radiant skin.',NULL,NULL,'-dghqo',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-21 11:20:26'),(350,'One Man Show By Jacques Bogart Eau De Toilette Spray For Men','admin',9,15,NULL,NULL,1,'577,576','578','youtube',NULL,'velburry','<strong>Article no: 1043</strong><br><br>Top <b>Notes</b>:<br><br>of Artemisia, caraway, galbanum, basil, bergamot and Brazilian rosewood Middle <b>Notes</b>:are labdanum, nutmeg, spices, carnation, patchouli, jasmine, vetiver, rose, pine tree needles and geranium while Base <b>Notes</b>:are leather, sandalwood, Tonka bean, amber, coconut, vanilla, oak moss, cedar, styrax and castoreum.',1850.00,1850.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'One Man Show By Jacques Bogart Eau De Toilette Spray For Men','<strong>Article no: 1043</strong><br><br>Top <b>Notes</b>:<br><br>of Artemisia, caraway, galbanum, basil, bergamot and Brazilian rosewood Middle <b>Notes</b>:are labdanum, nutmeg, spices, carnation, patchouli, jasmine, vetiver, rose, pine tree needles and geranium while Base <b>Notes</b>:are leather, sandalwood, Tonka bean, amber, coconut, vanilla, oak moss, cedar, styrax and castoreum.',NULL,NULL,'-2oaac',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 02:54:39'),(351,'Prophecy Prince Matchabelli for women','admin',9,16,NULL,NULL,1,'581,582,580','579','youtube',NULL,'velburry','<strong>Article no: 1044</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i0.61d4f445MvTp39\">Product details of Prophecy Perfume - 100ml</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">100 ml</li><br> 	<li class=\"\">Made in USA</li><br> 	<li class=\"\">Long Lasting</li><br></ul><br>Prince Matchabelli <b>Prophecy Cologne</b> Spray Mist is a Floral Woody Musk <b>fragrance</b> for women. Top <b>notes</b> are lily, aldehydes and pepper. Middle <b>notes</b> are cassis, gardenia, carnation, jasmine and rose. ... Top <b>notes</b> are lily, aldehydes and pepper.<br><br></div><br></div><br></div>',1250.00,1250.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Prophecy Prince Matchabelli for women','<strong>Article no: 1044</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i0.61d4f445MvTp39\">Product details of Prophecy Perfume - 100ml</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">100 ml</li><br> 	<li class=\"\">Made in USA</li><br> 	<li class=\"\">Long Lasting</li><br></ul><br>Prince Matchabelli <b>Prophecy Cologne</b> Spray Mist is a Floral Woody Musk <b>fragrance</b> for women. Top <b>notes</b> are lily, aldehydes and pepper. Middle <b>notes</b> are cassis, gardenia, carnation, jasmine and rose. ... Top <b>notes</b> are lily, aldehydes and pepper.<br><br></div><br></div><br></div>',NULL,NULL,'-kmpf2',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 02:55:40'),(352,'Joop Homme by Joop 125ml EDT for Men','admin',9,15,NULL,NULL,1,'583,584,585','586','youtube',NULL,'velburry','<strong>Article no: 1045</strong><br><br><b>Fragrance Notes</b>:<br><br><b>Joop</b>! <b>Homme</b> is a very sensual, oriental <b>fragrance</b> with fresh citrus top <b>notes</b> of mandarin, lemon, bergamot and orange blossom. The floral heart is very warm and balmy, revealing jasmine, lily of the valley, heliotrope and cinnamon.<br><br>Joop Homme by Joop 125ml Eau De Toilette Spray for Men<br><br>Full of fascinating originality Joop! Homme is a celebration of masculine sensuality.<br><br>The burst of cool, fresh spiciness unfolds to reveal a nuanced warm floral body and a strong, sensual oriental character.<br><br>Designer: Joop!<br><br>Year Introduced: 1989',3800.00,3800.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Joop Homme by Joop 125ml EDT for Men','<strong>Article no: 1045</strong><br><br><b>Fragrance Notes</b>:<br><br><b>Joop</b>! <b>Homme</b> is a very sensual, oriental <b>fragrance</b> with fresh citrus top <b>notes</b> of mandarin, lemon, bergamot and orange blossom. The floral heart is very warm and balmy, revealing jasmine, lily of the valley, heliotrope and cinnamon.<br><br>Joop Homme by Joop 125ml Eau De Toilette Spray for Men<br><br>Full of fascinating originality Joop! Homme is a celebration of masculine sensuality.<br><br>The burst of cool, fresh spiciness unfolds to reveal a nuanced warm floral body and a strong, sensual oriental character.<br><br>Designer: Joop!<br><br>Year Introduced: 1989',NULL,NULL,'-gq3xc',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 02:56:42'),(353,'Joop Homme by Joop 75ml EDT for Men','admin',9,15,NULL,NULL,1,'589,590,588','587','youtube',NULL,'velburry','<strong>Article no: 1046</strong><br><br><b>Fragrance Notes</b>:<br><br><b>Joop</b>! <b>Homme</b> is a very sensual, oriental <b>fragrance</b> with fresh citrus top <b>notes</b> of mandarin, lemon, bergamot and orange blossom. The floral heart is very warm and balmy, revealing jasmine, lily of the valley, heliotrope and cinnamon.<br><br>Joop Homme by Joop 125ml Eau De Toilette Spray for Men<br><br>Full of fascinating originality Joop! Homme is a celebration of masculine sensuality.<br><br>The burst of cool, fresh spiciness unfolds to reveal a nuanced warm floral body and a strong, sensual oriental character.<br><br>Designer: Joop!<br><br>Year Introduced: 1989',3600.00,3600.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Joop Homme by Joop 75ml EDT for Men','<strong>Article no: 1046</strong><br><br><b>Fragrance Notes</b>:<br><br><b>Joop</b>! <b>Homme</b> is a very sensual, oriental <b>fragrance</b> with fresh citrus top <b>notes</b> of mandarin, lemon, bergamot and orange blossom. The floral heart is very warm and balmy, revealing jasmine, lily of the valley, heliotrope and cinnamon.<br><br>Joop Homme by Joop 125ml Eau De Toilette Spray for Men<br><br>Full of fascinating originality Joop! Homme is a celebration of masculine sensuality.<br><br>The burst of cool, fresh spiciness unfolds to reveal a nuanced warm floral body and a strong, sensual oriental character.<br><br>Designer: Joop!<br><br>Year Introduced: 1989',NULL,NULL,'-gfkw1',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 02:57:49'),(354,'Joop Jump EDT Perfume For Men','admin',9,15,NULL,NULL,1,'591,592,593','594','youtube',NULL,'velburry','<strong>Article no: 1047</strong><br><br><strong>Jump 100 ml eau de toilette spray for men from Joop</strong><br><br>Jump by Joop! is a Aromatic Fougere fragrance for men. Jump was launched in 2005. The nose behind this fragrance is Sophie Labbe. Top notes are rosemary, caraway and grapefruit; middle notes are coriander and heliotrope; base notes are tonka bean, musk and vetiver.<br><br>.. The nose behind this <b>fragrance</b> is Sophie Labbe. Top <b>notes</b> are Grapefruit, Rosemary and Caraway; middle <b>notes</b> are Heliotrope and Coriander; base <b>notes</b> are Tonka Bean, Musk and Vetiver.',4100.00,4100.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Joop Jump EDT Perfume For Men','<strong>Article no: 1047</strong><br><br><strong>Jump 100 ml eau de toilette spray for men from Joop</strong><br><br>Jump by Joop! is a Aromatic Fougere fragrance for men. Jump was launched in 2005. The nose behind this fragrance is Sophie Labbe. Top notes are rosemary, caraway and grapefruit; middle notes are coriander and heliotrope; base notes are tonka bean, musk and vetiver.<br><br>.. The nose behind this <b>fragrance</b> is Sophie Labbe. Top <b>notes</b> are Grapefruit, Rosemary and Caraway; middle <b>notes</b> are Heliotrope and Coriander; base <b>notes</b> are Tonka Bean, Musk and Vetiver.',NULL,NULL,'-ln74m',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 03:01:46'),(355,'Aqua Blue Perfume For Women','admin',9,16,NULL,NULL,1,'596','595','youtube',NULL,'velburry','<strong>Article no: 1048</strong><br><h6>Key Features</h6><br><ul><br> 	<li>Quantity – 50 ml</li><br> 	<li>Long Lasting Fragrance</li><br> 	<li>Strong &amp; Refreshing Scent</li><br> 	<li>be it parties, meetings or hangouts.</li><br></ul><br><strong>Fragrance Family </strong><br><div class=\"html-content pdp-product-highlights\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.1ddd1277aCQGN8\"><br><ul class=\"\"><br> 	<li class=\"\">Qty : 50 ml</li><br> 	<li class=\"\">High quality</li><br> 	<li class=\"\">Good Fragrance</li><br> 	<li class=\"\">Refreshing scent</li><br> 	<li> Eau de Parfum</li><br></ul><br></div><br><div class=\"html-content detail-content\"><br><ul><br> 	<li>Quantity – 50 ml</li><br> 	<li>Long Lasting Fragrance</li><br> 	<li>Strong &amp; Refreshing Scent</li><br> 	<li>be it parties, meetings or hangouts.</li><br></ul><br></div>',350.00,350.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Aqua Blue Perfume For Women','<strong>Article no: 1048</strong><br><h6>Key Features</h6><br><ul><br> 	<li>Quantity – 50 ml</li><br> 	<li>Long Lasting Fragrance</li><br> 	<li>Strong &amp; Refreshing Scent</li><br> 	<li>be it parties, meetings or hangouts.</li><br></ul><br><strong>Fragrance Family </strong><br><div class=\"html-content pdp-product-highlights\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.1ddd1277aCQGN8\"><br><ul class=\"\"><br> 	<li class=\"\">Qty : 50 ml</li><br> 	<li class=\"\">High quality</li><br> 	<li class=\"\">Good Fragrance</li><br> 	<li class=\"\">Refreshing scent</li><br> 	<li> Eau de Parfum</li><br></ul><br></div><br><div class=\"html-content detail-content\"><br><ul><br> 	<li>Quantity – 50 ml</li><br> 	<li>Long Lasting Fragrance</li><br> 	<li>Strong &amp; Refreshing Scent</li><br> 	<li>be it parties, meetings or hangouts.</li><br></ul><br></div>',NULL,NULL,'-9bfej',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 03:02:50'),(356,'Blue For Men Rasasi cologne for men','admin',9,15,NULL,NULL,1,'597,598,599,600','601','youtube',NULL,'velburry','<strong>Article no: 1049</strong><br><br>Gender: Men<br>Volume: 100ML<br>Brand: Rasasi<br>Condition: Authentic<br>Type: Eau De Parfum<br>The rich composition opens with fresh sparkling aromatic and citrus accords of mint and mandarine. The aromatic theme continues into the heart of the fragrance with coriander, floral notes of rose and jasmine are present and these mingle with geranium and pepper. The warm and retentive dry down notes of precious woods and amber ads to the originality and luxuriousness of this unique fragrance.',1450.00,1450.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Blue For Men Rasasi cologne for men','<strong>Article no: 1049</strong><br><br>Gender: Men<br>Volume: 100ML<br>Brand: Rasasi<br>Condition: Authentic<br>Type: Eau De Parfum<br>The rich composition opens with fresh sparkling aromatic and citrus accords of mint and mandarine. The aromatic theme continues into the heart of the fragrance with coriander, floral notes of rose and jasmine are present and these mingle with geranium and pepper. The warm and retentive dry down notes of precious woods and amber ads to the originality and luxuriousness of this unique fragrance.',NULL,NULL,'-8qzmp',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 03:03:51'),(357,'Armaf Tag-Him Pour Homme EDT For Men','admin',9,15,NULL,NULL,1,'605,603,604','602','youtube',NULL,'velburry','<strong>Article no: 1050</strong><br><h6 class=\"list__product--title\">Product Details:</h6><br><ul class=\"list__product--listings\"><br> 	<li>Beautifully designed bold black bottle</li><br> 	<li>A spicy, woody yet cool fragrance</li><br> 	<li>Wearable for any time of the day</li><br></ul><br><div class=\"d9FyLd XcVN5d\">Product <b>description</b></div><br><span class=\"hgKElc\">Confident, iconic and swashbuckling - an intense and energizing <b>scent</b> reveals masculine modernity. An aromatic woody <b>fragrance</b> with top <b>notes</b> of lemon, grapefruit and lavender mingled with spicy accents of pink pepper, ginger and warm woods of cedar and vetiver. The dry down is woody and ambery.</span>',2300.00,2300.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Armaf Tag-Him Pour Homme EDT For Men','<strong>Article no: 1050</strong><br><h6 class=\"list__product--title\">Product Details:</h6><br><ul class=\"list__product--listings\"><br> 	<li>Beautifully designed bold black bottle</li><br> 	<li>A spicy, woody yet cool fragrance</li><br> 	<li>Wearable for any time of the day</li><br></ul><br><div class=\"d9FyLd XcVN5d\">Product <b>description</b></div><br><span class=\"hgKElc\">Confident, iconic and swashbuckling - an intense and energizing <b>scent</b> reveals masculine modernity. An aromatic woody <b>fragrance</b> with top <b>notes</b> of lemon, grapefruit and lavender mingled with spicy accents of pink pepper, ginger and warm woods of cedar and vetiver. The dry down is woody and ambery.</span>',NULL,NULL,'-n5l2h',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 03:05:03'),(358,'Estiara Stag White for men','admin',9,15,NULL,NULL,1,'608,606,607','610','youtube',NULL,'velburry','<strong>Article no: 1051</strong><br><br><span class=\"a-list-item\">Top Note:</span><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\"> Aquatic accords, Orange, Bergamot</span></li><br> 	<li><span class=\"a-list-item\">Middle Note: Blackcurrant, Green Tea</span></li><br> 	<li><span class=\"a-list-item\">Base Note: Musk, Sandalwood, Galbanum</span></li><br> 	<li><span class=\"a-list-item\">Available in 100ml EDT</span></li><br></ul><br><div class=\"mod\" lang=\"en-PK\" data-md=\"61\"><br><div class=\"LGOjhe\" role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CAYQAA\"><br><div class=\"d9FyLd XcVN5d\">Product <b>description</b></div><br><span class=\"ILfuVd\"><span class=\"hgKElc\"><b>STAG WHITE</b> A sparkling aromatic <b>fragrance</b> for <b>men</b> with refreshing <b>notes</b> of bergamot and orange followed by a heart of green tea and blackcurrant. Base consists of galbanum, musk and sandalwood.</span></span><br><br></div><br></div><br><div class=\"g\"><br><div class=\"rc\" data-hveid=\"CAQQAA\" data-ved=\"2ahUKEwiT_5aryfPtAhXSPsAKHdJjAtoQFSgAMAJ6BAgEEAA\"></div><br></div>',1750.00,1750.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Estiara Stag White for men','<strong>Article no: 1051</strong><br><br><span class=\"a-list-item\">Top Note:</span><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\"> Aquatic accords, Orange, Bergamot</span></li><br> 	<li><span class=\"a-list-item\">Middle Note: Blackcurrant, Green Tea</span></li><br> 	<li><span class=\"a-list-item\">Base Note: Musk, Sandalwood, Galbanum</span></li><br> 	<li><span class=\"a-list-item\">Available in 100ml EDT</span></li><br></ul><br><div class=\"mod\" lang=\"en-PK\" data-md=\"61\"><br><div class=\"LGOjhe\" role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CAYQAA\"><br><div class=\"d9FyLd XcVN5d\">Product <b>description</b></div><br><span class=\"ILfuVd\"><span class=\"hgKElc\"><b>STAG WHITE</b> A sparkling aromatic <b>fragrance</b> for <b>men</b> with refreshing <b>notes</b> of bergamot and orange followed by a heart of green tea and blackcurrant. Base consists of galbanum, musk and sandalwood.</span></span><br><br></div><br></div><br><div class=\"g\"><br><div class=\"rc\" data-hveid=\"CAQQAA\" data-ved=\"2ahUKEwiT_5aryfPtAhXSPsAKHdJjAtoQFSgAMAJ6BAgEEAA\"></div><br></div>',NULL,NULL,'-9gpx3',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 03:07:19'),(359,'Stag Black M Estiara','admin',9,15,NULL,NULL,1,'614,611,612,613','609','youtube',NULL,'velburry','<strong>Article no: 1052</strong><br><br>Stag Black by Estiara for Men. Stag black backs an explosive and extrovert scent for sporty men. Top opens with refreshing notes of lemon and verbena mingling with a heart of violets and exotic spices. The base consists of sandalwood and ambergris. There’s nothing more cozy and charming than a decent scent. This undetectable piece of a man’s style impacts how those around fathom his identity; verily Stag black is the particular scent you desire!<br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Good quality product</span></li><br> 	<li><span class=\"a-list-item\">Easy to use</span></li><br> 	<li><span class=\"a-list-item\">Ideal for gift purpose</span></li><br></ul>',1750.00,1750.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Stag Black M Estiara','<strong>Article no: 1052</strong><br><br>Stag Black by Estiara for Men. Stag black backs an explosive and extrovert scent for sporty men. Top opens with refreshing notes of lemon and verbena mingling with a heart of violets and exotic spices. The base consists of sandalwood and ambergris. There’s nothing more cozy and charming than a decent scent. This undetectable piece of a man’s style impacts how those around fathom his identity; verily Stag black is the particular scent you desire!<br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Good quality product</span></li><br> 	<li><span class=\"a-list-item\">Easy to use</span></li><br> 	<li><span class=\"a-list-item\">Ideal for gift purpose</span></li><br></ul>',NULL,NULL,'-arewc',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 03:08:13'),(360,'HUGO BOSS Now eau de toilette For Men','admin',9,15,NULL,NULL,1,'617,618,615,616','619','youtube',NULL,'velburry','<strong>Article no: 1053</strong><br><br>A compact 75ml bottle of HUGO Now eau de toilette. HUGO Now presents an original new scent, combining fresh and aromatic notes of cardamom, lemon zest, lavender, mint and vetiver. This invigorating fragrance is ideal for those with an adventurous spirit.<br><br>The <b>fragrance</b> delivers an energising hit of fresh, crisp green apple, twisted with vibrant herbal aromas and the smoky, earthy scents of a wild forest. An optimistic <b>scent</b> for a liberated soul, <b>HUGO Man</b> is presented in a sleek flask with a strapped-on cap, designed for <b>men</b> on the move.',4500.00,4500.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'HUGO BOSS Now eau de toilette For Men','<strong>Article no: 1053</strong><br><br>A compact 75ml bottle of HUGO Now eau de toilette. HUGO Now presents an original new scent, combining fresh and aromatic notes of cardamom, lemon zest, lavender, mint and vetiver. This invigorating fragrance is ideal for those with an adventurous spirit.<br><br>The <b>fragrance</b> delivers an energising hit of fresh, crisp green apple, twisted with vibrant herbal aromas and the smoky, earthy scents of a wild forest. An optimistic <b>scent</b> for a liberated soul, <b>HUGO Man</b> is presented in a sleek flask with a strapped-on cap, designed for <b>men</b> on the move.',NULL,NULL,'-aqob0',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 03:09:33'),(361,'Tradition For Men Perfume','admin',9,15,NULL,NULL,1,'621,622','620','youtube',NULL,'velburry','<strong>Article no: 1054</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.2cce6103RC73fn\">Product details:</h6><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><div class=\"pdp-product-desc \"><div class=\"html-content pdp-product-highlights\"><ul class=\"\"><br> 	<li class=\"\">Beautiful packing for gifts</li><br> 	<li class=\"\">Long lasting Fragrance Capability</li><br> 	<li class=\"\">Easy to spray</li><br> 	<li class=\"\">Decent look</li><br> 	<li class=\"\">125ml</li><br></ul><br>Insurrection by Reyane&nbsp;<b>Tradition</b>&nbsp;is a Oriental Woody&nbsp;<b>fragrance</b>&nbsp;for&nbsp;<b>men</b>. Reyane&nbsp;<b>Tradition</b>&nbsp;Insurrection is a sweet aromatic&nbsp;<b>scent</b>&nbsp;of sweet fruits, intense vanilla, amber and woody&nbsp;<b>notes</b>&nbsp;.<br><br></div><br></div><br></div>',550.00,550.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Tradition For Men Perfume','<strong>Article no: 1054</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.2cce6103RC73fn\">Product details:</h6><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><div class=\"pdp-product-desc \"><div class=\"html-content pdp-product-highlights\"><ul class=\"\"><br> 	<li class=\"\">Beautiful packing for gifts</li><br> 	<li class=\"\">Long lasting Fragrance Capability</li><br> 	<li class=\"\">Easy to spray</li><br> 	<li class=\"\">Decent look</li><br> 	<li class=\"\">125ml</li><br></ul><br>Insurrection by Reyane&nbsp;<b>Tradition</b>&nbsp;is a Oriental Woody&nbsp;<b>fragrance</b>&nbsp;for&nbsp;<b>men</b>. Reyane&nbsp;<b>Tradition</b>&nbsp;Insurrection is a sweet aromatic&nbsp;<b>scent</b>&nbsp;of sweet fruits, intense vanilla, amber and woody&nbsp;<b>notes</b>&nbsp;.<br><br></div><br></div><br></div>',NULL,NULL,'-l7hfo',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 03:14:03'),(362,'Sellion Graceful Yellow Eau De Parfum For Women','admin',9,16,NULL,NULL,1,'624,625','623','youtube',NULL,'velburry','<strong>Article no: 1055</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i5.732a3681zZvyHo\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul><br> 	<li class=\"\">Long lasting</li><br> 	<li class=\"\">Eau de Toilette</li><br> 	<li class=\"\">High Quality Perfumes</li><br> 	<li class=\"\">Pleasantscent</li><br> 	<li class=\"\">Get Closer.</li><br> 	<li class=\"\">Reliable</li><br> 	<li class=\"\">By Ted Lapidus, Paris</li><br> 	<li data-spm-anchor-id=\"a2a0e.pdp.product_detail.i1.732a3681zZvyHo\">Long lasting</li><br> 	<li>Eau de Toilette</li><br> 	<li>High Quality Perfumes</li><br> 	<li data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.732a3681zZvyHo\">Pleasant <b>scent</b></li><br> 	<li>Get Closer.</li><br> 	<li>Reliable</li><br> 	<li>By Ted Lapidus, Paris</li><br></ul><br></div><br></div><br></div>',920.00,920.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Sellion Graceful Yellow Eau De Parfum For Women','<strong>Article no: 1055</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i5.732a3681zZvyHo\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul><br> 	<li class=\"\">Long lasting</li><br> 	<li class=\"\">Eau de Toilette</li><br> 	<li class=\"\">High Quality Perfumes</li><br> 	<li class=\"\">Pleasantscent</li><br> 	<li class=\"\">Get Closer.</li><br> 	<li class=\"\">Reliable</li><br> 	<li class=\"\">By Ted Lapidus, Paris</li><br> 	<li data-spm-anchor-id=\"a2a0e.pdp.product_detail.i1.732a3681zZvyHo\">Long lasting</li><br> 	<li>Eau de Toilette</li><br> 	<li>High Quality Perfumes</li><br> 	<li data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.732a3681zZvyHo\">Pleasant <b>scent</b></li><br> 	<li>Get Closer.</li><br> 	<li>Reliable</li><br> 	<li>By Ted Lapidus, Paris</li><br></ul><br></div><br></div><br></div>',NULL,NULL,'-v4jjk',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 03:14:56'),(363,'Sellion Graceful Pink Eau De Parfum','admin',9,16,NULL,NULL,1,'627,626','628','youtube',NULL,'velburry','<p><strong>Article no: 1056</strong></p><p><strong><br></strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i2.2b8515c98oIUdT\">Product detail:</h6><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><div class=\"pdp-product-desc \"><div class=\"html-content pdp-product-highlights\"><ul class=\"\"><br> 	<li class=\"\">Graceful pink Perfume</li><br> 	<li class=\"\">100ml</li><br> 	<li class=\"\">For Women</li><br> 	<li class=\"\">Sellion perfumes</li><br> 	<li class=\"\">Ideal For Gift</li><br> 	<li class=\"\">Attractive Tin Box Packing</li><br></ul><br>The special and romantic times are always adored and when thought about later, creates a magnificent aroma which is certainly felt by the hearts which is lustrously meant to bring a smile on someone special. Perfume is a mixture of fragrant essential oils or aroma compounds, fixatives and solvents, used to give the human body an agreeable scent. It is usually in liquid form and used to give a pleasant scent to a persons body.<br><br></div><br></div><br></div></p>',920.00,920.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Sellion Graceful Pink Eau De Parfum','<p><strong>Article no: 1056</strong></p><p><strong><br></strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i2.2b8515c98oIUdT\">Product detail:</h6><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><div class=\"pdp-product-desc \"><div class=\"html-content pdp-product-highlights\"><ul class=\"\"><br> 	<li class=\"\">Graceful pink Perfume</li><br> 	<li class=\"\">100ml</li><br> 	<li class=\"\">For Women</li><br> 	<li class=\"\">Sellion perfumes</li><br> 	<li class=\"\">Ideal For Gift</li><br> 	<li class=\"\">Attractive Tin Box Packing</li><br></ul><br>The special and romantic times are always adored and when thought about later, creates a magnificent aroma which is certainly felt by the hearts which is lustrously meant to bring a smile on someone special. Perfume is a mixture of fragrant essential oils or aroma compounds, fixatives and solvents, used to give the human body an agreeable scent. It is usually in liquid form and used to give a pleasant scent to a persons body.<br><br></div><br></div><br></div></p>',NULL,NULL,'-0tv32',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 03:16:45'),(364,'ARD AL ZAAFARAN PERFUMES DIRHAM EAU DE FOR MEN','admin',9,15,NULL,NULL,1,'630,631,632,633','629','youtube',NULL,'velburry','<strong>Article no: 1057</strong><br><br>Perfume Dirham Eau de Parfum by Ard Al Zaafaran <span class=\"hps\">is a fresh</span>, <span class=\"hps\">vital</span> <span class=\"hps\">perfume</span> <span class=\"hps\">with</span> <span class=\"hps\">floral notes</span> <span class=\"hps\">and</span> <span class=\"hps\">a</span> <span class=\"hps\">slightly</span> <span class=\"hps\">woody base</span>.<br><br><span class=\"hps\">The opening</span> <span class=\"hps\">top note</span> <span class=\"hps\">is fresh</span> <span class=\"hps\">with</span> <span class=\"hps\">citrus</span> <span class=\"hps\">scents</span> and dries <span class=\"hps\">to</span> <span class=\"hps\">cool</span> <span class=\"hps\">bergamot and</span> <span class=\"hps\">spicy </span><span class=\"hps\">cardamom</span>.<br><br>The heart note is warm and bright with roses, jasmine and lavender.<br><br>In the base sandalwood is blended with cedar and vetiver, giving Dirham depth and elegance.<br><br><span class=\"hps\">Dirham</span> <span class=\"hps\">is a nice</span> <span class=\"hps\">everyday</span> <span class=\"hps\">fragrance</span>, spreading <span class=\"hps\">freshness</span> <span class=\"hps\">and</span> <span class=\"hps\">positive</span> <span class=\"hps\">energy</span>.<br><div><strong>Main accords:</strong> fresh, floral, vibrant, slightly woody</div><br><div><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.65ad6642dalesL\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Volume: 100ml</li><br> 	<li class=\"\">For Unisex</li><br> 	<li class=\"\">Eau de Parfum</li><br> 	<li class=\"\">Arabic Fragrance</li><br> 	<li class=\"\">Long Lasting Fragrance</li><br> 	<li class=\"\">Exclusively by Ard Al Zaafaran</li><br></ul><br></div><br></div><br></div><br></div>',1350.00,1350.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'ARD AL ZAAFARAN PERFUMES DIRHAM EAU DE FOR MEN','<strong>Article no: 1057</strong><br><br>Perfume Dirham Eau de Parfum by Ard Al Zaafaran <span class=\"hps\">is a fresh</span>, <span class=\"hps\">vital</span> <span class=\"hps\">perfume</span> <span class=\"hps\">with</span> <span class=\"hps\">floral notes</span> <span class=\"hps\">and</span> <span class=\"hps\">a</span> <span class=\"hps\">slightly</span> <span class=\"hps\">woody base</span>.<br><br><span class=\"hps\">The opening</span> <span class=\"hps\">top note</span> <span class=\"hps\">is fresh</span> <span class=\"hps\">with</span> <span class=\"hps\">citrus</span> <span class=\"hps\">scents</span> and dries <span class=\"hps\">to</span> <span class=\"hps\">cool</span> <span class=\"hps\">bergamot and</span> <span class=\"hps\">spicy </span><span class=\"hps\">cardamom</span>.<br><br>The heart note is warm and bright with roses, jasmine and lavender.<br><br>In the base sandalwood is blended with cedar and vetiver, giving Dirham depth and elegance.<br><br><span class=\"hps\">Dirham</span> <span class=\"hps\">is a nice</span> <span class=\"hps\">everyday</span> <span class=\"hps\">fragrance</span>, spreading <span class=\"hps\">freshness</span> <span class=\"hps\">and</span> <span class=\"hps\">positive</span> <span class=\"hps\">energy</span>.<br><div><strong>Main accords:</strong> fresh, floral, vibrant, slightly woody</div><br><div><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.65ad6642dalesL\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Volume: 100ml</li><br> 	<li class=\"\">For Unisex</li><br> 	<li class=\"\">Eau de Parfum</li><br> 	<li class=\"\">Arabic Fragrance</li><br> 	<li class=\"\">Long Lasting Fragrance</li><br> 	<li class=\"\">Exclusively by Ard Al Zaafaran</li><br></ul><br></div><br></div><br></div><br></div>',NULL,NULL,'-tkqmq',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 03:17:41'),(365,'Graceful Red Perfume For Women','admin',9,16,NULL,NULL,1,'636,634,635','637','youtube',NULL,'velburry','<strong>Article no: 1058</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i2.2b8515c9QpjyP0\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">100ml</li><br> 	<li class=\"\">For Women</li><br> 	<li class=\"\">Sellion perfumes</li><br> 	<li class=\"\">Ideal For Gift</li><br> 	<li class=\"\">Attractive Tin Box Packing</li><br></ul><br>The special and romantic times are always adored and when thought about later, creates a magnificent aroma which is certainly felt by the hearts which is lustrously meant to bring a smile on someone special. Perfume is a mixture of fragrant essential oils or aroma compounds, fixatives, and solvents, used to give the human body an agreeable scent. It is usually in liquid form and used to give a pleasant scent to a persons body.<br><br></div><br></div><br></div>',920.00,920.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Graceful Red Perfume For Women','<strong>Article no: 1058</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i2.2b8515c9QpjyP0\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">100ml</li><br> 	<li class=\"\">For Women</li><br> 	<li class=\"\">Sellion perfumes</li><br> 	<li class=\"\">Ideal For Gift</li><br> 	<li class=\"\">Attractive Tin Box Packing</li><br></ul><br>The special and romantic times are always adored and when thought about later, creates a magnificent aroma which is certainly felt by the hearts which is lustrously meant to bring a smile on someone special. Perfume is a mixture of fragrant essential oils or aroma compounds, fixatives, and solvents, used to give the human body an agreeable scent. It is usually in liquid form and used to give a pleasant scent to a persons body.<br><br></div><br></div><br></div>',NULL,NULL,'-aiklb',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 03:18:49'),(366,'Rasasi L\'Incontournable Blue For Men 2','admin',9,15,NULL,NULL,1,'642,640,641,639','638','youtube',NULL,'velburry','<strong>Article no:1059</strong><br><h6 class=\"list__product--title\">Product details:</h6><br><ul class=\"list__product--listings\"><br> 	<li>An oriental fragrance by Rasasi</li><br> 	<li>Blend of alluring notes</li><br> 	<li>Suitable for evening wear</li><br> 	<li>Glamorously-styled glass flacon</li><br></ul><br>Note:<br><br>Citruses, bergamot and wormwood, middle <b>notes</b> are spicy <b>notes</b>, geranium and cardamom, base <b>notes</b> are woody <b>notes</b>, sandalwood and musk.',1450.00,1450.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Rasasi L\'Incontournable Blue For Men 2','<strong>Article no:1059</strong><br><h6 class=\"list__product--title\">Product details:</h6><br><ul class=\"list__product--listings\"><br> 	<li>An oriental fragrance by Rasasi</li><br> 	<li>Blend of alluring notes</li><br> 	<li>Suitable for evening wear</li><br> 	<li>Glamorously-styled glass flacon</li><br></ul><br>Note:<br><br>Citruses, bergamot and wormwood, middle <b>notes</b> are spicy <b>notes</b>, geranium and cardamom, base <b>notes</b> are woody <b>notes</b>, sandalwood and musk.',NULL,NULL,'-ubaik',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 03:19:47'),(367,'Rasasi L\'incontournable Blue Lady 2 for Women','admin',9,16,NULL,NULL,1,'643,644,645,646','647','youtube',NULL,'velburry','<strong>Article no: 1060</strong><br><div class=\"_3a9CI2\">product details:</div><br><div class=\"_2418kt\"><br><ul><br> 	<li class=\"_21Ahn-\">Quantity: 40 ml</li><br> 	<li class=\"_21Ahn-\">Ideal For: Women</li><br> 	<li class=\"_21Ahn-\">Fragrance Classification: Eau de Parfum</li><br> 	<li class=\"_21Ahn-\">Fragrance Family: Oriental, Floral, Woody, Fresh</li><br></ul><br>With a unique blend of floral and fruity <b>notes</b>, the <b>perfume</b> is the perfect concoction of what every <b>woman</b> desires. ... The base <b>notes</b> of the <b>perfume</b> hints sandalwood and musk. The three different <b>notes</b> are a great combination of violet leaves, jasmine, tuberose, vanilla, narcissus, peach, sandalwood and amber.<br><br></div>',1250.00,1250.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Rasasi L\'incontournable Blue Lady 2 for Women','<strong>Article no: 1060</strong><br><div class=\"_3a9CI2\">product details:</div><br><div class=\"_2418kt\"><br><ul><br> 	<li class=\"_21Ahn-\">Quantity: 40 ml</li><br> 	<li class=\"_21Ahn-\">Ideal For: Women</li><br> 	<li class=\"_21Ahn-\">Fragrance Classification: Eau de Parfum</li><br> 	<li class=\"_21Ahn-\">Fragrance Family: Oriental, Floral, Woody, Fresh</li><br></ul><br>With a unique blend of floral and fruity <b>notes</b>, the <b>perfume</b> is the perfect concoction of what every <b>woman</b> desires. ... The base <b>notes</b> of the <b>perfume</b> hints sandalwood and musk. The three different <b>notes</b> are a great combination of violet leaves, jasmine, tuberose, vanilla, narcissus, peach, sandalwood and amber.<br><br></div>',NULL,NULL,'-2gkzl',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 03:20:39'),(368,'Hunaidi Alisha Gold Perfume For Men & Women','admin',9,16,NULL,NULL,1,'649','648','youtube',NULL,'velburry','<strong>Article no: 1061</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i2.74061bb6ok7xju\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Quantity – 100 ml</li><br> 	<li class=\"\">Long Lasting Fragrance</li><br> 	<li class=\"\">Strong &amp; Refreshing Scent</li><br> 	<li class=\"\">Sensual and Bold Fragrance</li><br></ul><br></div><br><div class=\"html-content detail-content\"><br><ul><br> 	<li>Quantity – 100 ml</li><br> 	<li>Ideal For Men &amp; Women</li><br> 	<li>Strong &amp; Refreshing Scent</li><br> 	<li>Sensual and bold Fragrance</li><br> 	<li>Alisha Gold By <strong>Hunaidi </strong>is a Oriental fruity spicy fragrance.</li><br></ul><br></div><br></div><br></div>',850.00,850.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Hunaidi Alisha Gold Perfume For Men & Women','<strong>Article no: 1061</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i2.74061bb6ok7xju\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Quantity – 100 ml</li><br> 	<li class=\"\">Long Lasting Fragrance</li><br> 	<li class=\"\">Strong &amp; Refreshing Scent</li><br> 	<li class=\"\">Sensual and Bold Fragrance</li><br></ul><br></div><br><div class=\"html-content detail-content\"><br><ul><br> 	<li>Quantity – 100 ml</li><br> 	<li>Ideal For Men &amp; Women</li><br> 	<li>Strong &amp; Refreshing Scent</li><br> 	<li>Sensual and bold Fragrance</li><br> 	<li>Alisha Gold By <strong>Hunaidi </strong>is a Oriental fruity spicy fragrance.</li><br></ul><br></div><br></div><br></div>',NULL,NULL,'-lets2',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 03:21:44'),(369,'Rasasi Hope Silver Women Perfume','admin',9,16,NULL,NULL,1,'650,651,653','654','youtube',NULL,'velburry','<strong>Article no: 1063</strong><br><h6 class=\"list__product--title\">Product details:</h6><br><ul class=\"list__product--listings\"><br> 	<li>Heady and sensual</li><br> 	<li>Brimming with masculinity</li><br> 	<li>Features great floral-oriental notes</li><br> 	<li>Recommended for all occasions</li><br></ul><br><div class=\"d9FyLd XcVN5d\">Product <b>description</b></div><br><span class=\"hgKElc\">ABOUT <b>HOPE</b>: <b>Hope</b> is a very powerful emotion on which millions of people depend and draw their inner strength. It is a wonderful brunch of fruity flowery <b>notes</b>. The warm and obstinate rose is surrounded by the vibrating plum melon fruity note which brings sensuality to the <b>perfume</b>.</span>',1690.00,1690.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Rasasi Hope Silver Women Perfume','<strong>Article no: 1063</strong><br><h6 class=\"list__product--title\">Product details:</h6><br><ul class=\"list__product--listings\"><br> 	<li>Heady and sensual</li><br> 	<li>Brimming with masculinity</li><br> 	<li>Features great floral-oriental notes</li><br> 	<li>Recommended for all occasions</li><br></ul><br><div class=\"d9FyLd XcVN5d\">Product <b>description</b></div><br><span class=\"hgKElc\">ABOUT <b>HOPE</b>: <b>Hope</b> is a very powerful emotion on which millions of people depend and draw their inner strength. It is a wonderful brunch of fruity flowery <b>notes</b>. The warm and obstinate rose is surrounded by the vibrating plum melon fruity note which brings sensuality to the <b>perfume</b>.</span>',NULL,NULL,'-u6su1',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 03:34:45'),(370,'Eternal Love by Eternal Love for Men','admin',9,15,NULL,NULL,1,'658,656,657','655','youtube',NULL,'velburry','<strong>Article no: 1064</strong><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Brand: Eternal Love</span></li><br> 	<li><span class=\"a-list-item\">Eternal Love Cologne by Eternal Love Parfums 3.4oz Eau De Perfume Spray for Men.</span></li><br> 	<li><span class=\"a-list-item\">Shop with confidence,&amp;Eternal Love Cologne.</span></li><br></ul><br><div class=\"d9FyLd XcVN5d\">Product <b>description:</b></div><br><span class=\"hgKElc\">A sparkling mix of lemon and bergamot surrounds an herbaceous floral heart of soothing lavender and jasmine accentuated with subtle peppery <b>notes</b> of sage.</span>',2450.00,2450.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Eternal Love by Eternal Love for Men','<strong>Article no: 1064</strong><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Brand: Eternal Love</span></li><br> 	<li><span class=\"a-list-item\">Eternal Love Cologne by Eternal Love Parfums 3.4oz Eau De Perfume Spray for Men.</span></li><br> 	<li><span class=\"a-list-item\">Shop with confidence,&amp;Eternal Love Cologne.</span></li><br></ul><br><div class=\"d9FyLd XcVN5d\">Product <b>description:</b></div><br><span class=\"hgKElc\">A sparkling mix of lemon and bergamot surrounds an herbaceous floral heart of soothing lavender and jasmine accentuated with subtle peppery <b>notes</b> of sage.</span>',NULL,NULL,'-eza2m',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 03:36:17'),(371,'Hunaidi Alisha Eau De Perfume For Men','admin',9,15,NULL,NULL,1,'660,659','661','youtube',NULL,'velburry','<strong>Article no: 1065</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.108c7dc35j7vks\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Alisha Gold perfume</li><br> 	<li class=\"\">100 ML</li><br> 	<li class=\"\">Eau De Toilette</li><br> 	<li class=\"\">Long Lasting</li><br> 	<li class=\"\">Tin Packed</li><br></ul><br><b>Fragrance Notes</b> - Vanilla, Sandalwood and Patchouli Including Peach and Melon, to create your own exclusive <b>scent</b>.<br><br></div><br></div><br></div>',850.00,850.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Hunaidi Alisha Eau De Perfume For Men','<strong>Article no: 1065</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.108c7dc35j7vks\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Alisha Gold perfume</li><br> 	<li class=\"\">100 ML</li><br> 	<li class=\"\">Eau De Toilette</li><br> 	<li class=\"\">Long Lasting</li><br> 	<li class=\"\">Tin Packed</li><br></ul><br><b>Fragrance Notes</b> - Vanilla, Sandalwood and Patchouli Including Peach and Melon, to create your own exclusive <b>scent</b>.<br><br></div><br></div><br></div>',NULL,NULL,'-veqyo',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 03:37:20'),(372,'Rasasi Hope For Men Perfum','admin',9,15,NULL,NULL,1,'663,664,665,666','662','youtube',NULL,'velburry','<strong>Article no: 1062</strong><br><h6>Product Description:</h6><br><div class=\"rte\"><br><ul><br> 	<li>Hope for Men by Rasasi symbolizes expectations and faith</li><br> 	<li>The fragrance is seamless fusion of spices musk and warm woods in a scent that fresh transparent, contemporary long lasting and very warm.</li><br> 	<li>The Fragrance is meant to evoke success, energy, optimism and HOPE</li><br> 	<li>Hope is a very powerful emotion on which millions of people depend and draw their inner strength.</li><br> 	<li>Powerful and masculine is this fragrance from Rasasi,</li><br> 	<li>Just the way every man wants his perfume to be.</li><br> 	<li>100% Original product from Rasasi - one of the best perfume brands from the Middle East.</li><br> 	<li>Rasasi Hope for man EAU DE Toilette 75 ml - For men (2.5 fl. oz.)</li><br></ul><br></div>',1690.00,1690.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Rasasi Hope For Men Perfum','<strong>Article no: 1062</strong><br><h6>Product Description:</h6><br><div class=\"rte\"><br><ul><br> 	<li>Hope for Men by Rasasi symbolizes expectations and faith</li><br> 	<li>The fragrance is seamless fusion of spices musk and warm woods in a scent that fresh transparent, contemporary long lasting and very warm.</li><br> 	<li>The Fragrance is meant to evoke success, energy, optimism and HOPE</li><br> 	<li>Hope is a very powerful emotion on which millions of people depend and draw their inner strength.</li><br> 	<li>Powerful and masculine is this fragrance from Rasasi,</li><br> 	<li>Just the way every man wants his perfume to be.</li><br> 	<li>100% Original product from Rasasi - one of the best perfume brands from the Middle East.</li><br> 	<li>Rasasi Hope for man EAU DE Toilette 75 ml - For men (2.5 fl. oz.)</li><br></ul><br></div>',NULL,NULL,'-fghr7',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 03:38:27'),(373,'Blue for Men by Rassasi Body Spray (200 ml)','admin',9,17,NULL,NULL,1,'667,668','669','youtube',NULL,'velburry','<strong>Article no: 2068</strong><br><br>Rasasi <b>Blue For Men</b> Pour Homme the rich composition open with fresh sparkling aromatic and citrus accords of mint and mandarine. The aromatic theme continues into the heart of the fragrance with coriander, floral notes of rose and jasmine are present and these mingle with geranium and pepper.<br><br><b>Specifications:</b><br><br>• Brand: Rasasi<br>• Variant: Blue for Men<br>• Condition: Brand-new, unused, unopened, undamaged item<br>• Size: 200 ml<br>• Gender: Men<br>• Spray type: Deodorant Pumps<br>• Long lasting',550.00,550.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Blue for Men by Rassasi Body Spray','<strong>Article no: 2068</strong><br><br>Rasasi <b>Blue For Men</b> Pour Homme the rich composition open with fresh sparkling aromatic and citrus accords of mint and mandarine. The aromatic theme continues into the heart of the fragrance with coriander, floral notes of rose and jasmine are present and these mingle with geranium and pepper.<br><br><b>Specifications:</b><br><br>• Brand: Rasasi<br>• Variant: Blue for Men<br>• Condition: Brand-new, unused, unopened, undamaged item<br>• Size: 200 ml<br>• Gender: Men<br>• Spray type: Deodorant Pumps<br>• Long lasting',NULL,NULL,'-jwpkz',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-23 07:27:39'),(374,'Blue Lady Rasasi Body Spray For Women','admin',9,18,NULL,NULL,1,'671,672','670','youtube',NULL,'velburry','<strong>Article no: 2069</strong><br><br>The <b>blue lady</b> Rasasi <b>body spray</b> for <b>women</b> is the finishing touch you need to apply before you step out of your house. It defines femininity with floral and fruity scents that will give a boost to your confidence. Impress passersby with the alluring fragrance from the house of Rasasi.<br><br><b>Specifications:</b><br><ul><br> 	<li>Brand: Rasasi</li><br> 	<li>Condition: Brand-new, unused, unopened, undamaged item</li><br> 	<li>Variant: Blue Lady</li><br> 	<li>Targeted Group: Women</li><br> 	<li>Type: Body Spray</li><br> 	<li>Quantity: 200 ml</li><br> 	<li>Long Lasting</li><br> 	<li>Safe on Skin</li><br> 	<li>Neutralizes Body Odor</li><br> 	<li>Cooling and Refreshing Effect</li><br> 	<li>Helps to avoid Body Odor</li><br></ul><br>&nbsp;',550.00,550.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Blue Lady Rasasi Body Spray For Women','<strong>Article no: 2069</strong><br><br>The <b>blue lady</b> Rasasi <b>body spray</b> for <b>women</b> is the finishing touch you need to apply before you step out of your house. It defines femininity with floral and fruity scents that will give a boost to your confidence. Impress passersby with the alluring fragrance from the house of Rasasi.<br><br><b>Specifications:</b><br><ul><br> 	<li>Brand: Rasasi</li><br> 	<li>Condition: Brand-new, unused, unopened, undamaged item</li><br> 	<li>Variant: Blue Lady</li><br> 	<li>Targeted Group: Women</li><br> 	<li>Type: Body Spray</li><br> 	<li>Quantity: 200 ml</li><br> 	<li>Long Lasting</li><br> 	<li>Safe on Skin</li><br> 	<li>Neutralizes Body Odor</li><br> 	<li>Cooling and Refreshing Effect</li><br> 	<li>Helps to avoid Body Odor</li><br></ul><br>&nbsp;',NULL,NULL,'-smjb8',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 03:41:14'),(375,'Chastity Pour Homme Deodorant Body Spray For Men (200 ml)','admin',9,17,NULL,NULL,1,'673','674','youtube',NULL,'velburry','<strong>Article no: 2070</strong><br><br>A mans appearance is defined by his clothes sense. Impeccable dressing whether formal or casual, is the first key to irresistibility. Let your choice of colours and fabric speak for you. Let your accessories complement your style. Keep up with the fashion of the day, but also venture out to set new trends for others to follow. Perfume-one of the essentials of physical appeal-never to be compromised upon. Select the best with Rasasi perfume par excellence \"Chastity\"!',550.00,550.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Chastity Pour Homme Deodorant Body Spray For Men','<strong>Article no: 2070</strong><br><br>A mans appearance is defined by his clothes sense. Impeccable dressing whether formal or casual, is the first key to irresistibility. Let your choice of colours and fabric speak for you. Let your accessories complement your style. Keep up with the fashion of the day, but also venture out to set new trends for others to follow. Perfume-one of the essentials of physical appeal-never to be compromised upon. Select the best with Rasasi perfume par excellence \"Chastity\"!',NULL,NULL,'-7gfuv',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-23 07:28:28'),(376,'Relation Black by Rassasi Body Spray For Men & Women','admin',9,18,NULL,NULL,1,'676,677,678','675','youtube',NULL,'velburry','<strong>Article no: 2071</strong><br><br>Rasasi Relation pour Homme high quality deodorant are simply expression of luxury keeps you fresh all day long and you feel prestigious all the time. the symbol of excellence.<br><br>Fragrance : Relation pour Homme<br><br>Gender : Men &amp; Women<br><br>ML : 200',550.00,550.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Relation Black by Rassasi Body Spray For Men & Women','<strong>Article no: 2071</strong><br><br>Rasasi Relation pour Homme high quality deodorant are simply expression of luxury keeps you fresh all day long and you feel prestigious all the time. the symbol of excellence.<br><br>Fragrance : Relation pour Homme<br><br>Gender : Men &amp; Women<br><br>ML : 200',NULL,NULL,'-u9hpj',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 03:47:08'),(377,'Relation Body Spray For Women','admin',9,18,NULL,NULL,1,'679','680','youtube',NULL,'velburry','<strong>Article no: 2072</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i2.616f4821myAQmm\">product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Body Spray Size: 200 ml</li><br> 	<li class=\"\">Long Lasting Fragrance</li><br> 	<li class=\"\">Refreshing Scent</li><br> 	<li class=\"\">Brand : Rasasi</li><br> 	<li class=\"\">Sensual and Bold Fragrance</li><br></ul><br>asasi  Retation Pour Femme the continual movement of the two energies is what keeps the world going. These two energies the Yin and Yang together are synonymous of a perfect whole, one is lost without the other and causes turmoil in our day today behaviour and attitude. And together they form a unique force which can even create life.<br><br></div><br></div><br></div>',550.00,550.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Relation Body Spray For Women','<strong>Article no: 2072</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i2.616f4821myAQmm\">product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Body Spray Size: 200 ml</li><br> 	<li class=\"\">Long Lasting Fragrance</li><br> 	<li class=\"\">Refreshing Scent</li><br> 	<li class=\"\">Brand : Rasasi</li><br> 	<li class=\"\">Sensual and Bold Fragrance</li><br></ul><br>asasi  Retation Pour Femme the continual movement of the two energies is what keeps the world going. These two energies the Yin and Yang together are synonymous of a perfect whole, one is lost without the other and causes turmoil in our day today behaviour and attitude. And together they form a unique force which can even create life.<br><br></div><br></div><br></div>',NULL,NULL,'-fbrvp',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 03:48:04'),(378,'Rasasi Romance for Men Forever Deodorant Body Spray (200 ml)','admin',9,17,NULL,NULL,1,'682','681','youtube',NULL,'velburry','<strong>Article no: 2073</strong><br><br><strong>Country of Origin:</strong> Product of UAE<br><br><strong>Product Weight:</strong> 6.76 FL OZ (200 ML)<br><br><strong>Storage Instruction:</strong> Keep in cool and dry place.<br><br><strong>Package:</strong> Bottle<br><div class=\"d9FyLd XcVN5d\">asasi <b>Romance</b> for <b>Men</b> Forever <b>Deodorant Body Spray</b> 200 ML</div><br><span class=\"hgKElc\">A very fresh floral bouquet with citrus notes and fruity touches. The green note gives more freshness and more diffusion. The accord finishes with a soft musky powdery effect and a lasting woody note.</span>',550.00,550.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Rasasi Romance for Men Forever Deodorant Body Spray','<strong>Article no: 2073</strong><br><br><strong>Country of Origin:</strong> Product of UAE<br><br><strong>Product Weight:</strong> 6.76 FL OZ (200 ML)<br><br><strong>Storage Instruction:</strong> Keep in cool and dry place.<br><br><strong>Package:</strong> Bottle<br><div class=\"d9FyLd XcVN5d\">asasi <b>Romance</b> for <b>Men</b> Forever <b>Deodorant Body Spray</b> 200 ML</div><br><span class=\"hgKElc\">A very fresh floral bouquet with citrus notes and fruity touches. The green note gives more freshness and more diffusion. The accord finishes with a soft musky powdery effect and a lasting woody note.</span>',NULL,NULL,'-akcjn',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-23 07:29:01'),(379,'Secret Body Spray For Women','admin',9,18,NULL,NULL,1,'684,683','685','youtube',NULL,'velburry','<strong>Article no: 2074</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i2.33e22e60hkDa4f\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">High Quality</li><br> 	<li class=\"\">Strong Fragrance</li><br> 	<li class=\"\">Long Lasting</li><br></ul><br></div><br><div class=\"html-content detail-content\">Secret Body Spray For Women</div><br><div></div><br><h6 class=\"html-content detail-content\">PRODUCT DESCRIPTION</h6><br><div><br><div class=\"ProductDescriptionContainer prodAccordionContent\"><br><br>The fragrance opens with heady peach and sparkling orange notes that are combined with a hint of subtle violet leaves. The heart of this fragrance expresses the sensuality of the perfume blending a refined bouquet of Jasmine. Rose and Lily of the valley that naturally evolves into a mysterious base of musk, ceder wood and sandalwood.<br><br></div><br></div><br></div><br></div>',550.00,550.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Secret Body Spray For Women','<strong>Article no: 2074</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i2.33e22e60hkDa4f\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">High Quality</li><br> 	<li class=\"\">Strong Fragrance</li><br> 	<li class=\"\">Long Lasting</li><br></ul><br></div><br><div class=\"html-content detail-content\">Secret Body Spray For Women</div><br><div></div><br><h6 class=\"html-content detail-content\">PRODUCT DESCRIPTION</h6><br><div><br><div class=\"ProductDescriptionContainer prodAccordionContent\"><br><br>The fragrance opens with heady peach and sparkling orange notes that are combined with a hint of subtle violet leaves. The heart of this fragrance expresses the sensuality of the perfume blending a refined bouquet of Jasmine. Rose and Lily of the valley that naturally evolves into a mysterious base of musk, ceder wood and sandalwood.<br><br></div><br></div><br></div><br></div>',NULL,NULL,'-njhxe',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 03:49:55'),(380,'Romance Body Spray For Women','admin',9,18,NULL,NULL,1,'687','686','youtube',NULL,'velburry','<strong>Article no: 2075</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i2.34b3cce5UmdCfr\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Body Spray Size: 200 ml</li><br> 	<li class=\"\">Long Lasting Fragrance</li><br> 	<li class=\"\">Refreshing Scent</li><br> 	<li class=\"\">Bold Fragrance</li><br></ul><br></div><br><div class=\"html-content detail-content\">Romance Body Spray For Women.</div><br><div>Rasasi Romance body spray is specially created for those women who love to explore the world of fantasy, who like to take a voyage to far beyond. Also, it’s for the naturally shinning women who always enjoy life and fun. Fresh and sparkling top notes lead to a sumptuous bouquet of rose and jasmine, harmoniously combined with the fruity, woody, powdery notes in the dry down.</div><br></div><br></div>',550.00,550.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Romance Body Spray For Women','<strong>Article no: 2075</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i2.34b3cce5UmdCfr\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Body Spray Size: 200 ml</li><br> 	<li class=\"\">Long Lasting Fragrance</li><br> 	<li class=\"\">Refreshing Scent</li><br> 	<li class=\"\">Bold Fragrance</li><br></ul><br></div><br><div class=\"html-content detail-content\">Romance Body Spray For Women.</div><br><div>Rasasi Romance body spray is specially created for those women who love to explore the world of fantasy, who like to take a voyage to far beyond. Also, it’s for the naturally shinning women who always enjoy life and fun. Fresh and sparkling top notes lead to a sumptuous bouquet of rose and jasmine, harmoniously combined with the fruity, woody, powdery notes in the dry down.</div><br></div><br></div>',NULL,NULL,'-uxswc',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 03:50:45'),(381,'Rasasi Royale Blue Deodorant Body Spray for Men (200 ml)','admin',9,17,NULL,NULL,1,'688','689','youtube',NULL,'velburry','<strong>Article no: 2076</strong><br><h6 class=\"subtitle\">PRODUCT DESCRIPTION</h6><br><div class=\"ProductDescriptionContainer prodAccordionContent\"><br><br>Now he knows looking at the air around him.... The scented grasping tendrils... like a feeling, would not leave him through the breaking twisting of a macho mans life; reluctant to part, the fresh smell of Cavaillon melon, Mandarin orange, Cucumber mellowed by the scent of Geranium, Basil, Sage absolute and finally the aroma of delicate musky sensual woods that persists.<br><br><strong>Country of Origin:</strong> Product of UAE<br><br><strong>Product Weight:</strong> 6.76 FL OZ (200 ML)<br><br><strong>Storage Instruction:</strong> Keep in cool and dry place.<br><br><strong>Package:</strong> Bottle<br><br></div>',550.00,550.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Rasasi Royale Blue Deodorant Body Spray for Men','<strong>Article no: 2076</strong><br><h6 class=\"subtitle\">PRODUCT DESCRIPTION</h6><br><div class=\"ProductDescriptionContainer prodAccordionContent\"><br><br>Now he knows looking at the air around him.... The scented grasping tendrils... like a feeling, would not leave him through the breaking twisting of a macho mans life; reluctant to part, the fresh smell of Cavaillon melon, Mandarin orange, Cucumber mellowed by the scent of Geranium, Basil, Sage absolute and finally the aroma of delicate musky sensual woods that persists.<br><br><strong>Country of Origin:</strong> Product of UAE<br><br><strong>Product Weight:</strong> 6.76 FL OZ (200 ML)<br><br><strong>Storage Instruction:</strong> Keep in cool and dry place.<br><br><strong>Package:</strong> Bottle<br><br></div>',NULL,NULL,'-xg3fl',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-23 07:29:36'),(382,'Rasasi royale black Deodorant Spray - For Men & Women','admin',9,18,NULL,NULL,1,'691,692','690','youtube',NULL,'velburry','<strong>Article no: 2077</strong><br><ul><br> 	<li class=\"_21Ahn-\">Quantity: 450 ml</li><br> 	<li class=\"_21Ahn-\">Fragrance: Deodorant Spray</li><br> 	<li class=\"_21Ahn-\">For Men &amp; Women</li><br></ul><br>the royale black Rasasi Body Spray for Women and Men is the finishing touch you need to apply before you step out of your house. It defines femininity with floral and fruity scents that will give a boost to your confidence. Impress passersby with the alluring fragrance from the House of Rasasi.',500.00,500.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Rasasi royale black Deodorant Spray - For Men & Women','<strong>Article no: 2077</strong><br><ul><br> 	<li class=\"_21Ahn-\">Quantity: 450 ml</li><br> 	<li class=\"_21Ahn-\">Fragrance: Deodorant Spray</li><br> 	<li class=\"_21Ahn-\">For Men &amp; Women</li><br></ul><br>the royale black Rasasi Body Spray for Women and Men is the finishing touch you need to apply before you step out of your house. It defines femininity with floral and fruity scents that will give a boost to your confidence. Impress passersby with the alluring fragrance from the House of Rasasi.',NULL,NULL,'-bce2c',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 03:52:38'),(383,'Rasasi Emotion Deodorant - For Women','admin',9,18,NULL,NULL,1,'693','694','youtube',NULL,'velburry','<strong>Article no: 2078</strong><br><h6>product details:</h6><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Rasasi emotion pour femme body spray 200ml</span></li><br> 	<li><span class=\"a-list-item\">Rasasi emotion deo is very suave fresh crisp for ladies</span></li><br> 	<li><span class=\"a-list-item\">A freshness and a dash of sensuality and femininity round off this amazing fragrance</span></li><br> 	<li><span class=\"a-list-item\">Emotion Pour Femme Deodorant Body Spray</span></li><br></ul>',550.00,550.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Rasasi Emotion Deodorant - For Women','<strong>Article no: 2078</strong><br><h6>product details:</h6><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Rasasi emotion pour femme body spray 200ml</span></li><br> 	<li><span class=\"a-list-item\">Rasasi emotion deo is very suave fresh crisp for ladies</span></li><br> 	<li><span class=\"a-list-item\">A freshness and a dash of sensuality and femininity round off this amazing fragrance</span></li><br> 	<li><span class=\"a-list-item\">Emotion Pour Femme Deodorant Body Spray</span></li><br></ul>',NULL,NULL,'-ue1is',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 03:53:35'),(384,'Rasasi Emotion Pour Homme Deodrant Body Spray For Men (200 ml)','admin',9,17,NULL,NULL,1,'696,697','695','youtube',NULL,'velburry','<strong>Article no: 2079</strong><br><br>Rasasi Emotion pour Homme let the fragrance of Emotions weave a spell of pure magic after all that is life without Emotions. Live and Feel life....with none other than Rasasi.<br><br>Fragrance : Emotion pour Homme<br><br>Gender: Men<br><br>ML: 200',550.00,550.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Rasasi Emotion Pour Homme Deodrant Body Spray For Men','<strong>Article no: 2079</strong><br><br>Rasasi Emotion pour Homme let the fragrance of Emotions weave a spell of pure magic after all that is life without Emotions. Live and Feel life....with none other than Rasasi.<br><br>Fragrance : Emotion pour Homme<br><br>Gender: Men<br><br>ML: 200',NULL,NULL,'-siilj',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-23 07:30:09'),(385,'Hope Body Spray Deodorant For Women','admin',9,18,NULL,NULL,1,'698','699','youtube',NULL,'velburry','<strong>Article no: 2080</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i2.7cfd74d7qjGSH3\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Body Spray Size: 200 ml</li><br> 	<li class=\"\">Long Lasting Fragrance</li><br> 	<li class=\"\">Refreshing Scent</li><br> 	<li class=\"\">Brand : Rasasi</li><br> 	<li class=\"\">Sensual and Bold Fragrance</li><br> 	<li class=\"\">For women</li><br></ul><br><h6 class=\"subtitle\">PRODUCT DESCRIPTION:</h6><br><div class=\"ProductDescriptionContainer prodAccordionContent\"><br><br>Hope is a very powerful emotion on which millions of people depend and dry their inner strength. It is wonderful bunch of fruity flowery notes. The warm and obstinate rose is surrounded by the vibrating plum melon fruity note which brings sensuality to the perfume, the background built with sandalwood from India and various musky notes makes this perfume definitely sustentative.<br><br></div><br></div><br></div><br></div>',550.00,550.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Hope Body Spray Deodorant For Women','<strong>Article no: 2080</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i2.7cfd74d7qjGSH3\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Body Spray Size: 200 ml</li><br> 	<li class=\"\">Long Lasting Fragrance</li><br> 	<li class=\"\">Refreshing Scent</li><br> 	<li class=\"\">Brand : Rasasi</li><br> 	<li class=\"\">Sensual and Bold Fragrance</li><br> 	<li class=\"\">For women</li><br></ul><br><h6 class=\"subtitle\">PRODUCT DESCRIPTION:</h6><br><div class=\"ProductDescriptionContainer prodAccordionContent\"><br><br>Hope is a very powerful emotion on which millions of people depend and dry their inner strength. It is wonderful bunch of fruity flowery notes. The warm and obstinate rose is surrounded by the vibrating plum melon fruity note which brings sensuality to the perfume, the background built with sandalwood from India and various musky notes makes this perfume definitely sustentative.<br><br></div><br></div><br></div><br></div>',NULL,NULL,'-dsiof',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 03:57:25'),(386,'Hope Body Spray Deodorant For Men (200 ml)','admin',9,17,NULL,NULL,1,'701','700','youtube',NULL,'velburry','<strong>Article no: 2081</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.7cfd74d7WQXSYw\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.7cfd74d7WQXSYw\"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Body Spray Size: 200 ml</li><br> 	<li class=\"\">Long Lasting Fragrance</li><br> 	<li class=\"\">Refreshing Scent</li><br> 	<li class=\"\">Brand : Rasasi</li><br> 	<li class=\"\">Sensual and Bold Fragrance</li><br> 	<li class=\"\">For Men</li><br></ul><br>Rasasi Hope the fragrance is seamless fusion of spices musk and warm woods in a scent that fresh transparent, contemporary long lasting and very warm. The fragrance is meant to evoke success, energy, optimism and HOPE.<br><br>Fragrance : Hope<br><br>Gender : Men<br><br>ML : 200<br><br></div><br></div><br></div>',550.00,550.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Hope Body Spray Deodorant For Men','<strong>Article no: 2081</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.7cfd74d7WQXSYw\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.7cfd74d7WQXSYw\"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Body Spray Size: 200 ml</li><br> 	<li class=\"\">Long Lasting Fragrance</li><br> 	<li class=\"\">Refreshing Scent</li><br> 	<li class=\"\">Brand : Rasasi</li><br> 	<li class=\"\">Sensual and Bold Fragrance</li><br> 	<li class=\"\">For Men</li><br></ul><br>Rasasi Hope the fragrance is seamless fusion of spices musk and warm woods in a scent that fresh transparent, contemporary long lasting and very warm. The fragrance is meant to evoke success, energy, optimism and HOPE.<br><br>Fragrance : Hope<br><br>Gender : Men<br><br>ML : 200<br><br></div><br></div><br></div>',NULL,NULL,'-vhxze',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-23 07:30:49'),(387,'POND\'S White Beauty Spot-less Fairness Day Cream, 35g','admin',9,24,NULL,NULL,1,'705,702,703,704','706','youtube',NULL,'velburry','<strong>Article No: 1079</strong><br><br>Its anti-<b>spot</b> formula with pro-vitamin b3 is clinically proven to fade stubborn dark <b>spots</b> from within. Pro-vitamin b3 is a potent skin lightening agent proven to reduce stubborn dark <b>spots</b> from within to reveal beautiful and <b>spot</b>-<b>less</b> skin from outside',450.00,450.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'POND\'S White Beauty Spot-less Fairness Day Cream, 35g','<strong>Article No: 1079</strong><br><br>Its anti-<b>spot</b> formula with pro-vitamin b3 is clinically proven to fade stubborn dark <b>spots</b> from within. Pro-vitamin b3 is a potent skin lightening agent proven to reduce stubborn dark <b>spots</b> from within to reveal beautiful and <b>spot</b>-<b>less</b> skin from outside',NULL,NULL,'-vou45',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 05:56:29'),(388,'Rasasi Knowledge Pour Homme Deodrant Body Spray For Men (200 ml)','admin',9,17,NULL,NULL,1,'708,709','707','youtube',NULL,'velburry','<strong>Article no: 2082</strong><br><br>Rasasi Knowledge pour Homme high quality deodorant are simply expression of luxury keeps you fresh all day long and you feel prestigious all the time. the symbol of excellence.<br><br>Fragrance : Knowledge pour Homme<br><br>Gender : Men<br><br>ML : 200<br><br>Rasasi Knowledge Pour Homme Body Spray For Men - 200ml Size: 200ml Long lasting Sensual and Masculine Fragrance.',550.00,550.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Rasasi Knowledge Pour Homme Deodrant Body Spray For Men','<strong>Article no: 2082</strong><br><br>Rasasi Knowledge pour Homme high quality deodorant are simply expression of luxury keeps you fresh all day long and you feel prestigious all the time. the symbol of excellence.<br><br>Fragrance : Knowledge pour Homme<br><br>Gender : Men<br><br>ML : 200<br><br>Rasasi Knowledge Pour Homme Body Spray For Men - 200ml Size: 200ml Long lasting Sensual and Masculine Fragrance.',NULL,NULL,'-k2bu4',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-23 07:31:17'),(389,'Shalis Woman Frangance Body Spray Deodorant','admin',9,18,NULL,NULL,1,NULL,'710','youtube',NULL,'velburry','<strong>Article no: 2083</strong><br><br><b>Specifications</b><br><ul><br> 	<li>Brand: Remy Marquis</li><br> 	<li>Variant: Shalis for Women</li><br> 	<li>Condition: Brand-new, unused, unopened, undamaged item</li><br> 	<li>Size: 175 ml</li><br> 	<li>Type Body Spray</li><br> 	<li>Design House: Remy Marquis</li><br> 	<li>Targeted Group: Women</li><br> 	<li>Safe on skin</li><br> 	<li>Long lasting</li><br></ul><br><ul class=\"\"><br> 	<li class=\"\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.676c406f5erHir\">Best for Casual/Routine Usage.</li><br> 	<li class=\"\">Perfect Solution for all Seasons.</li><br> 	<li class=\"\">Long Lasting Perfumed Body Spray.</li><br> 	<li class=\"\">Masculine and Bold Fragrance.</li><br> 	<li class=\"\">Nonstop Protection from Body Odor.</li><br></ul>',520.00,520.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Shalis Woman Frangance Body Spray Deodorant','<strong>Article no: 2083</strong><br><br><b>Specifications</b><br><ul><br> 	<li>Brand: Remy Marquis</li><br> 	<li>Variant: Shalis for Women</li><br> 	<li>Condition: Brand-new, unused, unopened, undamaged item</li><br> 	<li>Size: 175 ml</li><br> 	<li>Type Body Spray</li><br> 	<li>Design House: Remy Marquis</li><br> 	<li>Targeted Group: Women</li><br> 	<li>Safe on skin</li><br> 	<li>Long lasting</li><br></ul><br><ul class=\"\"><br> 	<li class=\"\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.676c406f5erHir\">Best for Casual/Routine Usage.</li><br> 	<li class=\"\">Perfect Solution for all Seasons.</li><br> 	<li class=\"\">Long Lasting Perfumed Body Spray.</li><br> 	<li class=\"\">Masculine and Bold Fragrance.</li><br> 	<li class=\"\">Nonstop Protection from Body Odor.</li><br></ul>',NULL,NULL,'-rv1vm',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 04:01:45'),(390,'Shalish Men Body spray (175 ml)','admin',9,17,NULL,NULL,1,'711','712','youtube',NULL,'velburry','<strong>Article no: 2084</strong><br><br><b>Shalis body spray</b> for <b>men</b> by Remy Marquis is an Aromatic Fougere fragrance. Remy Marquis <b>shalis body spray</b> helps you stay cool and fresh all day long with its pleasant and invigorating fragrance.<br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i2.43962428IlI1H3\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Shalish ( Men ) is a unique formula design specially for men ,</li><br> 	<li class=\"\">Shalish ( Men ) is a ever favorite among all range of men’s available</li><br> 	<li class=\"\">Long Lasting Fragnance</li><br> 	<li class=\"\">100% Orignal Product</li><br> 	<li class=\"\">Beautiful And Attractive Fragrance</li><br> 	<li class=\"\">Remy Marquis Deodorant pray</li><br></ul><br></div><br><div class=\"html-content detail-content\"></div><br></div><br></div>',520.00,520.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Shalish Men Body spray','<strong>Article no: 2084</strong><br><br><b>Shalis body spray</b> for <b>men</b> by Remy Marquis is an Aromatic Fougere fragrance. Remy Marquis <b>shalis body spray</b> helps you stay cool and fresh all day long with its pleasant and invigorating fragrance.<br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i2.43962428IlI1H3\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Shalish ( Men ) is a unique formula design specially for men ,</li><br> 	<li class=\"\">Shalish ( Men ) is a ever favorite among all range of men’s available</li><br> 	<li class=\"\">Long Lasting Fragnance</li><br> 	<li class=\"\">100% Orignal Product</li><br> 	<li class=\"\">Beautiful And Attractive Fragrance</li><br> 	<li class=\"\">Remy Marquis Deodorant pray</li><br></ul><br></div><br><div class=\"html-content detail-content\"></div><br></div><br></div>',NULL,NULL,'-qsjie',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-23 07:32:44'),(391,'Remy Marquis Paris Red Body Spray For Men & Women','admin',9,18,NULL,NULL,1,'713','714','youtube',NULL,'velburry','<strong>Article no: 2085</strong><br><br>The body spray is a perfume product. The body sprays can be used on your body of course, in your vehicle and in your home to add a nice aroma.It is recommended for daily use. Desire is a fresh sensual fragrance created for the man who is an achiever, self-confident, socially active and worldly wise.<br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i0.20905379aYMRWi\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Unique &amp; Fresh Fragrance</li><br> 	<li class=\"\">Best For Everyday Use</li><br> 	<li class=\"\">Lowest Price</li><br></ul><br></div><br></div><br></div>',420.00,420.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Remy Marquis Paris Red Body Spray For Men & Women','<strong>Article no: 2085</strong><br><br>The body spray is a perfume product. The body sprays can be used on your body of course, in your vehicle and in your home to add a nice aroma.It is recommended for daily use. Desire is a fresh sensual fragrance created for the man who is an achiever, self-confident, socially active and worldly wise.<br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i0.20905379aYMRWi\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Unique &amp; Fresh Fragrance</li><br> 	<li class=\"\">Best For Everyday Use</li><br> 	<li class=\"\">Lowest Price</li><br></ul><br></div><br></div><br></div>',NULL,NULL,'-2zygv',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 04:03:49'),(392,'Marquis Blue Body Spray For Men (175 ml)','admin',9,17,NULL,NULL,1,'715','716','youtube',NULL,'velburry','<strong>Article no: 2086</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i0.1bad27d1Hpvfx6\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Unique &amp; Fresh Fragrance</li><br> 	<li class=\"\">Best For Everyday Use</li><br> 	<li class=\"\">Lowest Price</li><br></ul><br>Marquis by Remy Marquis is an Oriental Fougere fragrance for men. Marquis was launched in 1999. The fragrance features oriental notes, woody notes, green notes, citruses, spicy notes, lavender and amber.<br><br></div><br></div><br></div>',520.00,520.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Marquis Blue Body Spray For Men','<strong>Article no: 2086</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i0.1bad27d1Hpvfx6\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Unique &amp; Fresh Fragrance</li><br> 	<li class=\"\">Best For Everyday Use</li><br> 	<li class=\"\">Lowest Price</li><br></ul><br>Marquis by Remy Marquis is an Oriental Fougere fragrance for men. Marquis was launched in 1999. The fragrance features oriental notes, woody notes, green notes, citruses, spicy notes, lavender and amber.<br><br></div><br></div><br></div>',NULL,NULL,'-v27ql',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-23 07:33:10'),(393,'Remy Marquis Remy Deodorant Body Spray For Women','admin',9,18,NULL,NULL,1,'717','718','youtube',NULL,'velburry','<strong>Article no: 2087</strong><br><p data-spm-anchor-id=\"a2a0e.pdp.product_detail.i1.4b2b5815R4SA1P\">Remy Marquis Remy feel fresh active deodorant a bodylicious deo spray for women with 24 hours protection.</p><br>Fragrance :  Remy<br><br>Gender : Women<br><br>ML : 175<br><br>&nbsp;',520.00,520.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Remy Marquis Remy Deodorant Body Spray For Women','<strong>Article no: 2087</strong><br><p data-spm-anchor-id=\"a2a0e.pdp.product_detail.i1.4b2b5815R4SA1P\">Remy Marquis Remy feel fresh active deodorant a bodylicious deo spray for women with 24 hours protection.</p><br>Fragrance :  Remy<br><br>Gender : Women<br><br>ML : 175<br><br>&nbsp;',NULL,NULL,'-mg1fv',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 04:05:45'),(394,'Remy Deodorant Body Spray For Men (175 ml)','admin',9,17,NULL,NULL,1,'719','720','youtube',NULL,'velburry','<strong>Article no: 2088</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.699114201JvV0C\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Remy Marquis Remy feel fresh active deodorant a bodylicious deo spray for women with 24 hours protection.</li><br> 	<li class=\"\">Fragrance :  Remy</li><br> 	<li class=\"\">Gender : Men</li><br> 	<li class=\"\">ML : 175</li><br></ul><br></div><br><div class=\"html-content detail-content\"><br><br>Remy Marquis Remy feel fresh active deodorant a bodylicious deo spray for women with 24 hours protection.<br><br>&nbsp;<br><br></div><br></div><br></div>',520.00,520.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Remy Deodorant Body Spray For Men','<strong>Article no: 2088</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.699114201JvV0C\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Remy Marquis Remy feel fresh active deodorant a bodylicious deo spray for women with 24 hours protection.</li><br> 	<li class=\"\">Fragrance :  Remy</li><br> 	<li class=\"\">Gender : Men</li><br> 	<li class=\"\">ML : 175</li><br></ul><br></div><br><div class=\"html-content detail-content\"><br><br>Remy Marquis Remy feel fresh active deodorant a bodylicious deo spray for women with 24 hours protection.<br><br>&nbsp;<br><br></div><br></div><br></div>',NULL,NULL,'-tdwta',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-23 07:33:35'),(395,'Havoc Gold Body Spray For Men (200 ml)','admin',9,17,NULL,NULL,1,'721','722','youtube',NULL,'velburry','<strong>Article no: 2089</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.1ba66f29JvxrlW\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Variant : Havoc Gold</li><br> 	<li class=\"\">Size : 200 ml</li><br> 	<li class=\"\">For MenLong LastingSafe On Skin</li><br></ul><br></div><br><div class=\"html-content detail-content\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.1ba66f29JvxrlW\">Havoc Gold Body Spray For Men - 200 Ml</div><br><div data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.1ba66f29JvxrlW\"><b>Havoc</b> is classified as a gorgeous powdery mossy, green, aldehydic chypre with a floral that begins with a tantalizing floral creme broule.It gradually settles down to a really lovely retro mix of green floracy and a faint musk.It is a very rare and hard to find <b>perfume</b>.</div><br></div><br></div>',550.00,550.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Havoc Gold Body Spray For Men','<strong>Article no: 2089</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.1ba66f29JvxrlW\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Variant : Havoc Gold</li><br> 	<li class=\"\">Size : 200 ml</li><br> 	<li class=\"\">For MenLong LastingSafe On Skin</li><br></ul><br></div><br><div class=\"html-content detail-content\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.1ba66f29JvxrlW\">Havoc Gold Body Spray For Men - 200 Ml</div><br><div data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.1ba66f29JvxrlW\"><b>Havoc</b> is classified as a gorgeous powdery mossy, green, aldehydic chypre with a floral that begins with a tantalizing floral creme broule.It gradually settles down to a really lovely retro mix of green floracy and a faint musk.It is a very rare and hard to find <b>perfume</b>.</div><br></div><br></div>',NULL,NULL,'-vzksa',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-23 07:33:58'),(396,'Havoc Silver Body Spray For Men (200 ml)','admin',9,17,NULL,NULL,1,'723,724','725','youtube',NULL,'velburry','<strong>Article no: 2090</strong><br><br>A brand name which stands out for itself. Long lasting and unique. It will make your day full of refreshing and soothing fragrance<br><br>Buy Havoc Silver Body Spray Deodorant for Men 200 ml<br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.4e569485decPhN\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Size : 200 ml</li><br> 	<li class=\"\">Type : Body SpraySafe On Skin</li><br> 	<li class=\"\">Long Lasting</li><br></ul><br></div><br></div><br></div>',550.00,550.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Havoc Silver Body Spray For Men','<strong>Article no: 2090</strong><br><br>A brand name which stands out for itself. Long lasting and unique. It will make your day full of refreshing and soothing fragrance<br><br>Buy Havoc Silver Body Spray Deodorant for Men 200 ml<br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.4e569485decPhN\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Size : 200 ml</li><br> 	<li class=\"\">Type : Body SpraySafe On Skin</li><br> 	<li class=\"\">Long Lasting</li><br></ul><br></div><br></div><br></div>',NULL,NULL,'-i6f21',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-23 07:34:24'),(397,'POND\'s Age Miracle Night Cream 50gm','admin',9,24,NULL,NULL,1,'726,727,728','729','youtube',NULL,'velburry','<strong>Article No: 1080</strong><br><br><b>Ponds Age Miracle</b> Wrinkle Corrector <b>Night Cream</b> Skin <b>aging</b> is an ongoing process that occurs naturally. It releases powerful anti-<b>aging</b> retinol actives into the skin, working 24hr non-stop to help reduce the appearance of wrinkles and fine lines from the inside.',1450.00,1450.00,0,'[]','[]','[]','[]',0,1,0,10,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'POND\'s Age Miracle Night Cream','<strong>Article No: 1080</strong><br><br><b>Ponds Age Miracle</b> Wrinkle Corrector <b>Night Cream</b> Skin <b>aging</b> is an ongoing process that occurs naturally. It releases powerful anti-<b>aging</b> retinol actives into the skin, working 24hr non-stop to help reduce the appearance of wrinkles and fine lines from the inside.',NULL,NULL,'-radgm',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-21 11:55:39'),(398,'AXE Body Spray for Men, Dark Temptation (150 ml)','admin',9,17,NULL,NULL,1,'732,730,731','733','youtube',NULL,'velburry','<strong>Article no: 2091</strong><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">A blend of hot chocolate, amber and red peppercorn</span></li><br> 	<li><span class=\"a-list-item\">A unique fragrance in an 8 oz can</span></li><br> 	<li><span class=\"a-list-item\">A few sprays is all you need</span></li><br> 	<li><span class=\"a-list-item\">Use AXE anytime, smell great all the time</span></li><br> 	<li><span class=\"a-list-item\">Goes well with AXE Dark Temptation Body Wash 16 fl oz, AXE Dark Temptation</span></li><br></ul><br>A subtle, sweet fragrance with a hint of spice. A blend of hot <b>chocolate</b>, amber and red peppercorn. Shake, twist and <b>spray</b> across your chest.',330.00,330.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'AXE Body Spray for Men, Dark Temptation','<strong>Article no: 2091</strong><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">A blend of hot chocolate, amber and red peppercorn</span></li><br> 	<li><span class=\"a-list-item\">A unique fragrance in an 8 oz can</span></li><br> 	<li><span class=\"a-list-item\">A few sprays is all you need</span></li><br> 	<li><span class=\"a-list-item\">Use AXE anytime, smell great all the time</span></li><br> 	<li><span class=\"a-list-item\">Goes well with AXE Dark Temptation Body Wash 16 fl oz, AXE Dark Temptation</span></li><br></ul><br>A subtle, sweet fragrance with a hint of spice. A blend of hot <b>chocolate</b>, amber and red peppercorn. Shake, twist and <b>spray</b> across your chest.',NULL,NULL,'-rtxgo',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-23 07:34:56'),(399,'Axe Deodorant Body Spray Africa Mens Fragrance (150 ml)','admin',9,17,NULL,NULL,1,'734,735','736','youtube',NULL,'velburry','<strong>Article no: 2092</strong><br><br><b>frica</b> by <b>Axe</b> is a Oriental Fougere fragrance for men. <b>Africa</b> was launched in 1995. The nose behind this fragrance is Ann Gottlieb. Top notes are Bergamot and Mandarin Orange; middle note is Geranium; base notes are Tonka Bean, Vanilla, Egyptian balsam, Sandalwood, Musk and Cedar.<br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">AXE helps guys look</span></li><br> 	<li><span class=\"a-list-item\">Longer-lasting fragrance</span></li><br> 	<li><span class=\"a-list-item\">Effective deodorant protection</span></li><br> 	<li><span class=\"a-list-item\">Smell and feel their best to help them get day comfortable</span></li><br></ul>',330.00,330.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Axe Deodorant Body Spray Africa Mens Fragrance','<strong>Article no: 2092</strong><br><br><b>frica</b> by <b>Axe</b> is a Oriental Fougere fragrance for men. <b>Africa</b> was launched in 1995. The nose behind this fragrance is Ann Gottlieb. Top notes are Bergamot and Mandarin Orange; middle note is Geranium; base notes are Tonka Bean, Vanilla, Egyptian balsam, Sandalwood, Musk and Cedar.<br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">AXE helps guys look</span></li><br> 	<li><span class=\"a-list-item\">Longer-lasting fragrance</span></li><br> 	<li><span class=\"a-list-item\">Effective deodorant protection</span></li><br> 	<li><span class=\"a-list-item\">Smell and feel their best to help them get day comfortable</span></li><br></ul>',NULL,NULL,'-dr4wv',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-23 07:35:20'),(400,'AXE Deodorant Body Spray Musk (150 ml)','admin',9,17,NULL,NULL,1,'738,739','737','youtube',NULL,'velburry','<strong>Article no: 2093</strong><br><div class=\"d9FyLd XcVN5d\">Product <b>Description</b></div><br><span class=\"hgKElc\"><b>Axe Musk body spray</b>. <b>Axe Deodorant Body Spray</b> is the all-over <b>bodyspray</b> with long-lasting <b>fragrance</b> and effective protection designed to seduce the ladies. If you <b>spray</b> it, they will come.</span><br><h6 class=\"a-size-base-plus a-text-bold\">About this item:</h6><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Science shows that Axes improved fragrance acts upon the female libido and stimulates the clothing-removal section of the female brain. Which means, you can fulfill more of your manly desires</span></li><br> 	<li><span class=\"a-list-item\">One application of the new improved Axe and youll smell like a hunk of man candy all day long</span></li><br> 	<li><span class=\"a-list-item\">Because Babes like man candy. Lots! Feel as good as you smell</span></li><br></ul>',330.00,330.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'AXE Deodorant Body Spray Musk','<strong>Article no: 2093</strong><br><div class=\"d9FyLd XcVN5d\">Product <b>Description</b></div><br><span class=\"hgKElc\"><b>Axe Musk body spray</b>. <b>Axe Deodorant Body Spray</b> is the all-over <b>bodyspray</b> with long-lasting <b>fragrance</b> and effective protection designed to seduce the ladies. If you <b>spray</b> it, they will come.</span><br><h6 class=\"a-size-base-plus a-text-bold\">About this item:</h6><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Science shows that Axes improved fragrance acts upon the female libido and stimulates the clothing-removal section of the female brain. Which means, you can fulfill more of your manly desires</span></li><br> 	<li><span class=\"a-list-item\">One application of the new improved Axe and youll smell like a hunk of man candy all day long</span></li><br> 	<li><span class=\"a-list-item\">Because Babes like man candy. Lots! Feel as good as you smell</span></li><br></ul>',NULL,NULL,'-bfbmc',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-23 07:35:40'),(401,'AXE Body Spray for Men (150 ml)','admin',9,17,NULL,NULL,1,'741,740','742','youtube',NULL,'velburry','<strong>Article no: 2094</strong><br><br><b>AXE Black</b>. A refined and subtle fragrance combining notes of bergamot and cedar wood allowing you to make an impression without going over the top. Our <b>AXE deodorant body spray</b> for men leaves you feeling fresh and smelling great!<br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">With Axe Black Body Spray for Men, make a statement by embracing the power of understatement</span></li><br> 	<li><span class=\"a-list-item\">Men’s body spray from the new Axe Black men’s grooming range</span></li><br> 	<li><span class=\"a-list-item\">With the subtle, refined fragrance for men of Axe Black</span></li><br> 	<li><span class=\"a-list-item\">Zesty bergamot combined with fresh rosemary and soothing cedar wood</span></li><br> 	<li><span class=\"a-list-item\">A few sprays is all you need</span></li><br></ul>',330.00,330.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'AXE Body Spray for Men','<strong>Article no: 2094</strong><br><br><b>AXE Black</b>. A refined and subtle fragrance combining notes of bergamot and cedar wood allowing you to make an impression without going over the top. Our <b>AXE deodorant body spray</b> for men leaves you feeling fresh and smelling great!<br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">With Axe Black Body Spray for Men, make a statement by embracing the power of understatement</span></li><br> 	<li><span class=\"a-list-item\">Men’s body spray from the new Axe Black men’s grooming range</span></li><br> 	<li><span class=\"a-list-item\">With the subtle, refined fragrance for men of Axe Black</span></li><br> 	<li><span class=\"a-list-item\">Zesty bergamot combined with fresh rosemary and soothing cedar wood</span></li><br> 	<li><span class=\"a-list-item\">A few sprays is all you need</span></li><br></ul>',NULL,NULL,'-wlgur',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-23 07:36:42'),(402,'AXE Body Spray for Men (150 ml)','admin',9,17,NULL,NULL,1,'744,745','743','youtube',NULL,'velburry','<strong>Article no: 2095</strong><br><br>A woody fragrance with a hint of sweetness. A blend of coconut, hazelnut and caramel notes. Shake, twist and <b>spray</b> across your chest.<br><br>&nbsp;<br><h6 class=\"a-size-base-plus a-text-bold\">About this item</h6><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">AXE Body Spray for Men, Excite, 4 oz –A woody fragrance with a hint of sweetness</span></li><br> 	<li><span class=\"a-list-item\">Packaging May Vary, Black or White</span></li><br> 	<li><span class=\"a-list-item\">A unique fragrance in a 4 oz can</span></li><br> 	<li><span class=\"a-list-item\">A few sprays is all you need</span></li><br> 	<li><span class=\"a-list-item\">Use AXE anytime, smell great all the time</span></li><br> 	<li><span class=\"a-list-item\">Blend of caramel, coconut, and hazelnut notes</span></li><br></ul>',330.00,330.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'AXE Body Spray for Men','<strong>Article no: 2095</strong><br><br>A woody fragrance with a hint of sweetness. A blend of coconut, hazelnut and caramel notes. Shake, twist and <b>spray</b> across your chest.<br><br>&nbsp;<br><h6 class=\"a-size-base-plus a-text-bold\">About this item</h6><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">AXE Body Spray for Men, Excite, 4 oz –A woody fragrance with a hint of sweetness</span></li><br> 	<li><span class=\"a-list-item\">Packaging May Vary, Black or White</span></li><br> 	<li><span class=\"a-list-item\">A unique fragrance in a 4 oz can</span></li><br> 	<li><span class=\"a-list-item\">A few sprays is all you need</span></li><br> 	<li><span class=\"a-list-item\">Use AXE anytime, smell great all the time</span></li><br> 	<li><span class=\"a-list-item\">Blend of caramel, coconut, and hazelnut notes</span></li><br></ul>',NULL,NULL,'-is0bi',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-23 07:36:54'),(403,'LOMANI DO IT BODY SPRAY FOR MEN (200 ml)','admin',9,17,NULL,NULL,1,'746','747','youtube',NULL,'velburry','<strong>Article no: 2096</strong><br><br><strong>Description:</strong><br><br><strong>•</strong> Do It Deodorant Body Spray<br><strong>•</strong> Pleasant Fragrance<br><strong>•</strong> Long Lasting<br><strong>•</strong> High Quality<br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Fresh Scent to Uplift Your Mood</span></li><br> 	<li><span class=\"a-list-item\">Power of Perfume Packed in Deo Spray Can</span></li><br> 	<li><span class=\"a-list-item\">Safe on Skin, does not sting</span></li><br></ul>',420.00,420.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'LOMANI DO IT BODY SPRAY FOR MEN','<strong>Article no: 2096</strong><br><br><strong>Description:</strong><br><br><strong>•</strong> Do It Deodorant Body Spray<br><strong>•</strong> Pleasant Fragrance<br><strong>•</strong> Long Lasting<br><strong>•</strong> High Quality<br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Fresh Scent to Uplift Your Mood</span></li><br> 	<li><span class=\"a-list-item\">Power of Perfume Packed in Deo Spray Can</span></li><br> 	<li><span class=\"a-list-item\">Safe on Skin, does not sting</span></li><br></ul>',NULL,NULL,'-abxob',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-23 07:37:51'),(404,'Lomani Pour Homme Deodorant For Men (200 ml)','admin',9,17,NULL,NULL,1,'749,750,751','748','youtube',NULL,'velburry','<strong>Article no: 2097</strong><br><br>Lomani Pour Homme Deodorant For Men ? 200Ml is best quality Men S Body Sprays, Deodorants &amp; Deo Sticks . A Paris perfumed deodorant to keep fresh and feel confident all day.<br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Brand New</span></li><br> 	<li><span class=\"a-list-item\">Original Item</span></li><br> 	<li><span class=\"a-list-item\">Factory Sealed</span></li><br> 	<li><span class=\"a-list-item\">Never Used</span></li><br> 	<li><span class=\"a-list-item\">Quality Product</span></li><br></ul>',420.00,420.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lomani Pour Homme Deodorant For Men','<strong>Article no: 2097</strong><br><br>Lomani Pour Homme Deodorant For Men ? 200Ml is best quality Men S Body Sprays, Deodorants &amp; Deo Sticks . A Paris perfumed deodorant to keep fresh and feel confident all day.<br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Brand New</span></li><br> 	<li><span class=\"a-list-item\">Original Item</span></li><br> 	<li><span class=\"a-list-item\">Factory Sealed</span></li><br> 	<li><span class=\"a-list-item\">Never Used</span></li><br> 	<li><span class=\"a-list-item\">Quality Product</span></li><br></ul>',NULL,NULL,'-xrlje',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-23 07:38:19'),(405,'Lomani Cigar Body Spray - For Men (200 ml)','admin',9,17,NULL,NULL,1,'753,752','754','youtube',NULL,'velburry','<strong>Article no: 2098</strong><br><div class=\"d9FyLd XcVN5d\"><b>Cigar Body Spray Deodorant</b> for <b>Men</b> - 200 ml</div><br><span class=\"hgKElc\">Combining propylene, glycol and fragrances, deodorants provide long-lasting odor protection by masking odor with fragrance <b>ingredients</b>, creating an environment where bacteria cant grow and reducing odor by neutralizing some of the smelly components in sweat like fatty acids.</span><br><div class=\"d9FyLd XcVN5d\">Cigar by Remy Latour is a Aromatic Fruity fragrance for men. Cigar was launched in 1996. Top notes are Plum, Pineapple, Pear, Bergamot and Amalfi Lemon; middle notes are Bay Leaf, Marigold, Geranium and Jasmine; base notes are Tobacco, Patchouli, Sandalwood, Virginia Cedar and Musk.</div>',420.00,420.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lomani Cigar Body Spray - For Men','<strong>Article no: 2098</strong><br><div class=\"d9FyLd XcVN5d\"><b>Cigar Body Spray Deodorant</b> for <b>Men</b> - 200 ml</div><br><span class=\"hgKElc\">Combining propylene, glycol and fragrances, deodorants provide long-lasting odor protection by masking odor with fragrance <b>ingredients</b>, creating an environment where bacteria cant grow and reducing odor by neutralizing some of the smelly components in sweat like fatty acids.</span><br><div class=\"d9FyLd XcVN5d\">Cigar by Remy Latour is a Aromatic Fruity fragrance for men. Cigar was launched in 1996. Top notes are Plum, Pineapple, Pear, Bergamot and Amalfi Lemon; middle notes are Bay Leaf, Marigold, Geranium and Jasmine; base notes are Tobacco, Patchouli, Sandalwood, Virginia Cedar and Musk.</div>',NULL,NULL,'-gr3ps',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-23 07:38:48'),(406,'Lomani El Paso Body Spray For Men (200 ml)','admin',9,17,NULL,NULL,1,'758,756,757','755','youtube',NULL,'velburry','<strong>Article no: 2099</strong><br><br><b>El paso</b> by lomani is a aromatic fougere fragrance for <b>men</b>. <b>El paso</b> was launched in 2002. Top notes are bergamot, lemon, thyme and eucalyptus; middle notes are lavender, nutmeg, juniper, cloves and jasmine; base notes are sandalwood, ambergris, oakmoss and musk.<br><h6 class=\"a-size-base-plus a-text-bold\">About this item:</h6><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Long lasting</span></li><br> 	<li><span class=\"a-list-item\">Attractive fragrance</span></li><br> 	<li><span class=\"a-list-item\">For all skin type</span></li><br></ul>',420.00,420.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lomani El Paso Body Spray For Men','<strong>Article no: 2099</strong><br><br><b>El paso</b> by lomani is a aromatic fougere fragrance for <b>men</b>. <b>El paso</b> was launched in 2002. Top notes are bergamot, lemon, thyme and eucalyptus; middle notes are lavender, nutmeg, juniper, cloves and jasmine; base notes are sandalwood, ambergris, oakmoss and musk.<br><h6 class=\"a-size-base-plus a-text-bold\">About this item:</h6><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Long lasting</span></li><br> 	<li><span class=\"a-list-item\">Attractive fragrance</span></li><br> 	<li><span class=\"a-list-item\">For all skin type</span></li><br></ul>',NULL,NULL,'-wudc1',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-23 07:39:15'),(407,'Lomani Paris Network Deodrant Body Spray For Men (200 ml)','admin',9,17,NULL,NULL,1,'759','760','youtube',NULL,'velburry','<strong>Article no: 3000</strong><br><h6>product details:</h6><br><ul><br> 	<li>Quantity - 200 ml</li><br> 	<li>Long Lasting Fragrance</li><br> 	<li>Strong &amp; Refreshing Scent</li><br> 	<li>be it parties, meetings or hangouts.</li><br> 	<li><strong>Fragrance Notes - </strong>Top Notes - Bergamot, Lavender, Mint, Mandarin</li><br> 	<li>Heart Notes - Lily-of-the-valley, Nutmeg, Water flowers</li><br> 	<li>Base Notes - Musk, Sandalwood, Oakmoss, Labdanum, Cedar, Clary sage</li><br> 	<li class=\"\">Volume: 200 ml</li><br> 	<li class=\"\">Long Lasting Fragrance</li><br> 	<li class=\"\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.37be133d6kQ5R8\">Prevents sweating</li><br></ul>',450.00,450.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lomani Paris Network Deodrant Body Spray For Men','<strong>Article no: 3000</strong><br><h6>product details:</h6><br><ul><br> 	<li>Quantity - 200 ml</li><br> 	<li>Long Lasting Fragrance</li><br> 	<li>Strong &amp; Refreshing Scent</li><br> 	<li>be it parties, meetings or hangouts.</li><br> 	<li><strong>Fragrance Notes - </strong>Top Notes - Bergamot, Lavender, Mint, Mandarin</li><br> 	<li>Heart Notes - Lily-of-the-valley, Nutmeg, Water flowers</li><br> 	<li>Base Notes - Musk, Sandalwood, Oakmoss, Labdanum, Cedar, Clary sage</li><br> 	<li class=\"\">Volume: 200 ml</li><br> 	<li class=\"\">Long Lasting Fragrance</li><br> 	<li class=\"\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.37be133d6kQ5R8\">Prevents sweating</li><br></ul>',NULL,NULL,'-o3qd1',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-23 07:39:45'),(408,'Everyone Body Spray Deodorant For Men','admin',9,17,NULL,NULL,1,'761','762','youtube',NULL,'velburry','<strong>Article no: 3001</strong><br><br>Farosh offers you Creation Lamis Everyone Body Spray For Men - 200 ml. The top-quality Lamis everyone body is the best avaialble price for value product that comes in enough quantity. The ingrediants of the perfume are safe on skin. The strong, refreshing scent gives you a prominent prsence in the parties and formal gathering.<br><ul class=\"\"><br> 	<li class=\"\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.a0f411c1tK58K3\">Size: 200 ml</li><br> 	<li class=\"\">Long lasting</li><br> 	<li class=\"\">Sensual and bold fragrance</li><br> 	<li>Strong &amp; Refreshing Scent</li><br> 	<li>be it parties, meetings or hangouts.</li><br></ul>',490.00,490.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Everyone Body Spray Deodorant For Men','<strong>Article no: 3001</strong><br><br>Farosh offers you Creation Lamis Everyone Body Spray For Men - 200 ml. The top-quality Lamis everyone body is the best avaialble price for value product that comes in enough quantity. The ingrediants of the perfume are safe on skin. The strong, refreshing scent gives you a prominent prsence in the parties and formal gathering.<br><ul class=\"\"><br> 	<li class=\"\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.a0f411c1tK58K3\">Size: 200 ml</li><br> 	<li class=\"\">Long lasting</li><br> 	<li class=\"\">Sensual and bold fragrance</li><br> 	<li>Strong &amp; Refreshing Scent</li><br> 	<li>be it parties, meetings or hangouts.</li><br></ul>',NULL,NULL,'-5fmfl',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 04:26:01'),(409,'Creation Lamis Pure Black Body Spray For Men','admin',9,17,NULL,NULL,1,'763,764','765','youtube',NULL,'velburry','<strong>Article no: 3002</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i2.48783a17Ji3L3h\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Size: 200 ml</li><br> 	<li class=\"\">Long lasting</li><br> 	<li class=\"\">Safe on Skin</li><br> 	<li class=\"\">Sensual and bold fragrance</li><br> 	<li class=\"\">Top Notes - Bergamot,Lemon,Rosemary</li><br> 	<li class=\"\">Middle Notes - Basil,Amber,Patchouli</li><br> 	<li class=\"\">Base Notes - Cedar,Leather,SandalwoodA long-lasting perfume body deodorant that will keep you feeling dry, cool and fresh throughout the day. It combines the protection of an effective deodorant with a fresh fragrance. Spray under your arms and all over your body for maximum effect. Is skin compatible dermatological proven smells divine and smooth to the touch on the skin keeps you dry Easy-to-use and sprays on easily.Buy Creation Lamis Pure Black Body Spray Deodorant for Men 200 ml</li><br></ul><br></div><br></div><br></div>',490.00,490.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Creation Lamis Pure Black Body Spray For Men','<strong>Article no: 3002</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i2.48783a17Ji3L3h\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Size: 200 ml</li><br> 	<li class=\"\">Long lasting</li><br> 	<li class=\"\">Safe on Skin</li><br> 	<li class=\"\">Sensual and bold fragrance</li><br> 	<li class=\"\">Top Notes - Bergamot,Lemon,Rosemary</li><br> 	<li class=\"\">Middle Notes - Basil,Amber,Patchouli</li><br> 	<li class=\"\">Base Notes - Cedar,Leather,SandalwoodA long-lasting perfume body deodorant that will keep you feeling dry, cool and fresh throughout the day. It combines the protection of an effective deodorant with a fresh fragrance. Spray under your arms and all over your body for maximum effect. Is skin compatible dermatological proven smells divine and smooth to the touch on the skin keeps you dry Easy-to-use and sprays on easily.Buy Creation Lamis Pure Black Body Spray Deodorant for Men 200 ml</li><br></ul><br></div><br></div><br></div>',NULL,NULL,'-u0slr',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 04:27:09'),(410,'POND\'s Age Miracle Day Cream 50gm','admin',9,24,NULL,NULL,1,'767','766','youtube',NULL,'velburry','<strong>Article No:1081</strong><br><br>The <b>Ponds Age Miracle Wrinkle Corrector</b> day cream helps in slowing down the ageing process of your skin. The RP-C 24 Recovery Complex helps in releasing retinol to reduce the appearance of <b>wrinkles</b> on your skin while the SPF 18 PA ++ protects your skin from the harmful UV rays.',1450.00,1450.00,0,'[]','[]','[]','[]',0,1,0,10,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'POND\'s Age Miracle Day Cream','<strong>Article No:1081</strong><br><br>The <b>Ponds Age Miracle Wrinkle Corrector</b> day cream helps in slowing down the ageing process of your skin. The RP-C 24 Recovery Complex helps in releasing retinol to reduce the appearance of <b>wrinkles</b> on your skin while the SPF 18 PA ++ protects your skin from the harmful UV rays.',NULL,NULL,'-oyrog',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-21 11:55:45'),(411,'Original Black Market Body Spray For Men','admin',9,17,NULL,NULL,1,'768','769','youtube',NULL,'velburry','<strong>Article no: 3003</strong><br><br><strong>Description:</strong><br><br><strong>•</strong> Perfume &amp; Body Spray<br><strong>•</strong> For Men<br><strong>•</strong> Long Lasting<br><strong>•</strong> Long Freshness<br><strong>•</strong> Black Market Men Perfume 100ml<br><strong>•</strong> Black Market Men Body Spray 200ml<br><p data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.2b037910dWIjfO\">The Shirley May scope of body splashes offers you brilliant smells that revive and restore.</p><br>Reasonable for all skin types,<br><br>Black Market is Famous Brand of Mens Choice . its has generally excellent rating quality among Mens .<br><br>They make your skin feel crisp and flawless throughout the day<br><br>The Shirley May scope of body splashes offers you magnificent fragrances that invigorate and revive. Appropriate for all skin types, they make your skin feel new and perfect throughout the day and are accessible ay very moderate rates.',390.00,390.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Original Black Market Body Spray For Men','<strong>Article no: 3003</strong><br><br><strong>Description:</strong><br><br><strong>•</strong> Perfume &amp; Body Spray<br><strong>•</strong> For Men<br><strong>•</strong> Long Lasting<br><strong>•</strong> Long Freshness<br><strong>•</strong> Black Market Men Perfume 100ml<br><strong>•</strong> Black Market Men Body Spray 200ml<br><p data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.2b037910dWIjfO\">The Shirley May scope of body splashes offers you brilliant smells that revive and restore.</p><br>Reasonable for all skin types,<br><br>Black Market is Famous Brand of Mens Choice . its has generally excellent rating quality among Mens .<br><br>They make your skin feel crisp and flawless throughout the day<br><br>The Shirley May scope of body splashes offers you magnificent fragrances that invigorate and revive. Appropriate for all skin types, they make your skin feel new and perfect throughout the day and are accessible ay very moderate rates.',NULL,NULL,'-4v040',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 04:30:15'),(412,'Shirley May Black Car Body Spray For Men & Women','admin',9,18,NULL,NULL,1,'771','770','youtube',NULL,'velburry','<strong>Article no: 3004</strong><br><br><b>Black Car</b> by <b>Shirley May</b> is a Woody fragrance for men &amp; women. Top notes are Bergamot and Lemon; middle notes are Basil and Patchouli; base notes are Tobacco, Sandalwood and Cedar.<br><br>Luxurious Black Car Shirley May Perfume wraps its silken fingers around your heart and refuses to let go. A splash of this compelling fragrance and you are rendered a slave for life. Elegant and sophisticated this Eau De Toilette tingles your being and arouse your senses. This intoxicating fragrance suffuses the atmosphere with the deep, dark tones of seduction drawing everybody.',390.00,390.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Shirley May Black Car Body Spray For Men & Women','<strong>Article no: 3004</strong><br><br><b>Black Car</b> by <b>Shirley May</b> is a Woody fragrance for men &amp; women. Top notes are Bergamot and Lemon; middle notes are Basil and Patchouli; base notes are Tobacco, Sandalwood and Cedar.<br><br>Luxurious Black Car Shirley May Perfume wraps its silken fingers around your heart and refuses to let go. A splash of this compelling fragrance and you are rendered a slave for life. Elegant and sophisticated this Eau De Toilette tingles your being and arouse your senses. This intoxicating fragrance suffuses the atmosphere with the deep, dark tones of seduction drawing everybody.',NULL,NULL,'-xuryq',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 04:31:09'),(413,'POND\'s Flawless White Night Cream 50gm','admin',9,24,NULL,NULL,1,'773,772','775','youtube',NULL,'velburry','<strong>Article No: 1082</strong><br><br><b>Ponds Flawless White</b> Deep <b>Whitening</b> Cream deeply cleanses pores and removes impurities that causes skin dullness for fresh, soft skin with a radiant glow. How It Works: Increase your skins <b>radiance</b> in 7 days with a formula that brightens and clears up your complexion.',990.00,990.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'POND\'s Flawless White Night Cream','<strong>Article No: 1082</strong><br><br><b>Ponds Flawless White</b> Deep <b>Whitening</b> Cream deeply cleanses pores and removes impurities that causes skin dullness for fresh, soft skin with a radiant glow. How It Works: Increase your skins <b>radiance</b> in 7 days with a formula that brightens and clears up your complexion.',NULL,NULL,'-257kk',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-21 11:55:53'),(414,'Si Fleuri Body Spray For Women','admin',9,18,NULL,NULL,1,'776','777','youtube',NULL,'velburry','<strong>Article no: 3005</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i2.3919442bEiJ5cQ\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Size: 150 ml</li><br> 	<li class=\"\">Sensual and Bold Fragrance</li><br> 	<li class=\"\">Sandalwood and Musky scent</li><br> 	<li class=\"\">For Women</li><br></ul><br>Now get on that perfect charm with this luxurious deodorant from Set Wet and steal the limelight wherever you go. Set Wet Casanova Deodorant Spray Perfume for men prevents perspiration and body odours and keeps you fresh all day long. Its flirty fragrance with an extremely pleasant aroma will impress everyone around you. Extremely sensual and appealing, this deodorant is a must-have for all who love to mark a style statement.<br><br></div><br></div><br></div>',420.00,420.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Si Fleuri Body Spray For Women','<strong>Article no: 3005</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i2.3919442bEiJ5cQ\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Size: 150 ml</li><br> 	<li class=\"\">Sensual and Bold Fragrance</li><br> 	<li class=\"\">Sandalwood and Musky scent</li><br> 	<li class=\"\">For Women</li><br></ul><br>Now get on that perfect charm with this luxurious deodorant from Set Wet and steal the limelight wherever you go. Set Wet Casanova Deodorant Spray Perfume for men prevents perspiration and body odours and keeps you fresh all day long. Its flirty fragrance with an extremely pleasant aroma will impress everyone around you. Extremely sensual and appealing, this deodorant is a must-have for all who love to mark a style statement.<br><br></div><br></div><br></div>',NULL,NULL,'-o5yex',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 04:34:01'),(415,'Pond\'s Flawless White Day Cream 50gm','admin',9,24,NULL,NULL,1,'778','779','youtube',NULL,'velburry','<strong>Article No:1083</strong><br><br>Reverse the damaging effects of harsh UV rays and pollution on your skin, with the Pond’s Flawless White Visible Lightening face cream. This lightweight formula works its magic at the deepest levels, to restore your skin’s natural fairness.<br><ul><br> 	<li class=\"_21Ahn-\">All Day Usage Cream For Spot Removal</li><br> 	<li class=\"_21Ahn-\">For Women</li><br> 	<li class=\"_21Ahn-\">Organic Type: Synthetic</li><br> 	<li class=\"_21Ahn-\">UV Protected</li><br></ul>',990.00,990.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Pond\'s Flawless White Day Cream','<strong>Article No:1083</strong><br><br>Reverse the damaging effects of harsh UV rays and pollution on your skin, with the Pond’s Flawless White Visible Lightening face cream. This lightweight formula works its magic at the deepest levels, to restore your skin’s natural fairness.<br><ul><br> 	<li class=\"_21Ahn-\">All Day Usage Cream For Spot Removal</li><br> 	<li class=\"_21Ahn-\">For Women</li><br> 	<li class=\"_21Ahn-\">Organic Type: Synthetic</li><br> 	<li class=\"_21Ahn-\">UV Protected</li><br></ul>',NULL,NULL,'-v9rjj',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-21 11:56:03'),(416,'Fogg Marco Body Spray For Men','admin',9,17,NULL,NULL,1,'781,782,780','783','youtube',NULL,'velburry','<strong>Article no: 3006</strong><br><br><strong>Features:</strong><br><br>This Status fragrance body spray from Fogg is a power packed deodorant that offers more than you bargain for. This perfumed body spray has an invigorating scent which envelops you in a pleasant smell for a long time. Fragrance It has a scent that includes the notes of the fresh fragrance family which keeps you active all day. Carry it in your bag and spray a little on yourself for smelling good and preventing body odour all day long. 1000 Sprays Can be used by both men and women, this body spray bottle contains enough perfume that lasts for 1000 sprays.',530.00,530.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Fogg Marco Body Spray For Men','<strong>Article no: 3006</strong><br><br><strong>Features:</strong><br><br>This Status fragrance body spray from Fogg is a power packed deodorant that offers more than you bargain for. This perfumed body spray has an invigorating scent which envelops you in a pleasant smell for a long time. Fragrance It has a scent that includes the notes of the fresh fragrance family which keeps you active all day. Carry it in your bag and spray a little on yourself for smelling good and preventing body odour all day long. 1000 Sprays Can be used by both men and women, this body spray bottle contains enough perfume that lasts for 1000 sprays.',NULL,NULL,'-jxuf1',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 04:36:04'),(417,'Fogg Napoleon Body Spray For Men','admin',9,17,NULL,NULL,1,'784','785','youtube',NULL,'velburry','<strong>Article no: 3007</strong><br><br>Fogg Napoleon Deodorant Fragrance Body Spray For Men 120 ml   Key Features of Fogg Napoleon Fragrance Body Spray - 120 ml   Feel Fresh and Cool All Day Long Neutralizes Body Odors and Perspiration Inspired by the Great Napoleon...<b> </b>120 ml<br><br><b>• </b>Gas free<br><b>• </b>Body Spray<br><b>• </b>For Men<br><b>• </b>Long-lasting',530.00,530.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Fogg Napoleon Body Spray For Men','<strong>Article no: 3007</strong><br><br>Fogg Napoleon Deodorant Fragrance Body Spray For Men 120 ml   Key Features of Fogg Napoleon Fragrance Body Spray - 120 ml   Feel Fresh and Cool All Day Long Neutralizes Body Odors and Perspiration Inspired by the Great Napoleon...<b> </b>120 ml<br><br><b>• </b>Gas free<br><b>• </b>Body Spray<br><b>• </b>For Men<br><b>• </b>Long-lasting',NULL,NULL,'-trm9p',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 04:36:59'),(418,'Fogg Royal Body Spray For Men','admin',9,17,NULL,NULL,1,'786,787,788','789','youtube',NULL,'velburry','<strong>Article no: 3008</strong><br><br>Features:<br><br>This Status fragrance <b>body spray</b> from <b>Fogg</b> is a power packed <b>deodorant</b> that offers more than you bargain for. This perfumed <b>body spray</b> has an invigorating scent which envelops you in a pleasant smell for a long time.<br><ul><br> 	<li class=\"_21Ahn-\">Quantity: 120 ml</li><br> 	<li class=\"_21Ahn-\">Fragrance: Body Spray</li><br> 	<li class=\"_21Ahn-\">For Men</li><br> 	<li>Gas free</li><br></ul>',530.00,530.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Fogg Royal Body Spray For Men','<strong>Article no: 3008</strong><br><br>Features:<br><br>This Status fragrance <b>body spray</b> from <b>Fogg</b> is a power packed <b>deodorant</b> that offers more than you bargain for. This perfumed <b>body spray</b> has an invigorating scent which envelops you in a pleasant smell for a long time.<br><ul><br> 	<li class=\"_21Ahn-\">Quantity: 120 ml</li><br> 	<li class=\"_21Ahn-\">Fragrance: Body Spray</li><br> 	<li class=\"_21Ahn-\">For Men</li><br> 	<li>Gas free</li><br></ul>',NULL,NULL,'-2hofv',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 04:38:04'),(419,'Fogg Imperial Body Spray For Men','admin',9,17,NULL,NULL,1,'791,790','792','youtube',NULL,'velburry','<strong>Article no: 3009</strong><br><div class=\"_3a9CI2\"><strong>Highlights:</strong></div><br><div class=\"_2418kt\"><br><ul><br> 	<li class=\"_21Ahn-\">Quantity: 360 ml</li><br> 	<li class=\"_21Ahn-\">Fragrance: Deodorant Spray</li><br> 	<li class=\"_21Ahn-\">For Men</li><br> 	<li class=\"_21Ahn-\">Limited Edition</li><br> 	<li><span class=\"a-list-item\">Quantity: 150ml; Item Form: Spray</span></li><br> 	<li><span class=\"a-list-item\">Ensures you 800 sprays</span></li><br> 	<li><span class=\"a-list-item\">Consists of refreshing</span></li><br> 	<li><span class=\"a-list-item\">Long lasting fragrance</span></li><br> 	<li><span class=\"a-list-item\">Usage: Give it a good hard shake first to make sure all the ingredients are mixed together before you spray it. You should hold the can approximately 15 cm from your body as you spray it.</span></li><br> 	<li><span class=\"a-list-item\">Target Audience: Men</span></li><br> 	<li><span class=\"a-list-item\">Package Contents: 1 Body Spray</span></li><br> 	<li><span class=\"a-list-item\">Country of Origin: India</span></li><br></ul><br></div>',530.00,530.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Fogg Imperial Body Spray For Men','<strong>Article no: 3009</strong><br><div class=\"_3a9CI2\"><strong>Highlights:</strong></div><br><div class=\"_2418kt\"><br><ul><br> 	<li class=\"_21Ahn-\">Quantity: 360 ml</li><br> 	<li class=\"_21Ahn-\">Fragrance: Deodorant Spray</li><br> 	<li class=\"_21Ahn-\">For Men</li><br> 	<li class=\"_21Ahn-\">Limited Edition</li><br> 	<li><span class=\"a-list-item\">Quantity: 150ml; Item Form: Spray</span></li><br> 	<li><span class=\"a-list-item\">Ensures you 800 sprays</span></li><br> 	<li><span class=\"a-list-item\">Consists of refreshing</span></li><br> 	<li><span class=\"a-list-item\">Long lasting fragrance</span></li><br> 	<li><span class=\"a-list-item\">Usage: Give it a good hard shake first to make sure all the ingredients are mixed together before you spray it. You should hold the can approximately 15 cm from your body as you spray it.</span></li><br> 	<li><span class=\"a-list-item\">Target Audience: Men</span></li><br> 	<li><span class=\"a-list-item\">Package Contents: 1 Body Spray</span></li><br> 	<li><span class=\"a-list-item\">Country of Origin: India</span></li><br></ul><br></div>',NULL,NULL,'-3zxj5',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 04:38:56'),(420,'Fogg Victor Body Spray For Men','admin',9,17,NULL,NULL,1,'793','794','youtube',NULL,'velburry','<strong>Article no: 3010</strong><br><h6 class=\"a-size-base-plus a-text-bold\">About this item</h6><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Fogg Fragnant Body Spray - Victor (120ml)</span></li><br> 	<li><span class=\"a-list-item\">Enables you to fight sweat odour for 24 hours</span></li><br> 	<li><span class=\"a-list-item\">Strong, refreshing scent breaks you from mundane routine. Leaves you with a refreshed feeling</span></li><br></ul><br><span class=\"a-list-item\">Ethyl Alcohol, Perfume, DEP, Propylene Glycol, Triclosan. Alcohol (95% v/v) content: 89.05% w/w, contains 1% w/w Diethyl Phthalate.</span>',530.00,530.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Fogg Victor Body Spray For Men','<strong>Article no: 3010</strong><br><h6 class=\"a-size-base-plus a-text-bold\">About this item</h6><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Fogg Fragnant Body Spray - Victor (120ml)</span></li><br> 	<li><span class=\"a-list-item\">Enables you to fight sweat odour for 24 hours</span></li><br> 	<li><span class=\"a-list-item\">Strong, refreshing scent breaks you from mundane routine. Leaves you with a refreshed feeling</span></li><br></ul><br><span class=\"a-list-item\">Ethyl Alcohol, Perfume, DEP, Propylene Glycol, Triclosan. Alcohol (95% v/v) content: 89.05% w/w, contains 1% w/w Diethyl Phthalate.</span>',NULL,NULL,'-bcvk3',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 04:39:45'),(421,'Fogg Paradise Women Body Spray','admin',9,18,NULL,NULL,1,'795,796,797','798','youtube',NULL,'velburry','<strong>Article no: 3011</strong><br><h6 class=\"a-size-base-plus a-text-bold\">About this item</h6><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Quantity: 150ml; Item Form: Spray</span></li><br> 	<li><span class=\"a-list-item\">Consists of refreshing. 1000 Sprays Can be used by both men and women, this body spray bottle contains enough perfume that lasts for 1000 sprays</span></li><br> 	<li><span class=\"a-list-item\">Long lasting fragrance</span></li><br> 	<li><span class=\"a-list-item\">Usage: Give it a good hard shake first to make sure all the ingredients are mixed together before you spray it. You should hold the can approximately 15 cm from your body as you spray it.</span></li><br> 	<li><span class=\"a-list-item\">Fragrance Classification: Body Spray;</span></li><br> 	<li><span class=\"a-list-item\">Target Audience: Women</span></li><br> 	<li><span class=\"a-list-item\">Package Contents: 1 Body Spray</span></li><br> 	<li><span class=\"a-list-item\">Country of Origin: India</span></li><br> 	<li class=\"\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i2.16f97b6ck7VIk0\">Unique &amp; Fresh Fragrance</li><br> 	<li class=\"\">Best For Everyday Use</li><br> 	<li class=\"\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i1.16f97b6ck7VIk0\">Lowest Price</li><br></ul>',530.00,530.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Fogg Paradise Women Body Spray','<strong>Article no: 3011</strong><br><h6 class=\"a-size-base-plus a-text-bold\">About this item</h6><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Quantity: 150ml; Item Form: Spray</span></li><br> 	<li><span class=\"a-list-item\">Consists of refreshing. 1000 Sprays Can be used by both men and women, this body spray bottle contains enough perfume that lasts for 1000 sprays</span></li><br> 	<li><span class=\"a-list-item\">Long lasting fragrance</span></li><br> 	<li><span class=\"a-list-item\">Usage: Give it a good hard shake first to make sure all the ingredients are mixed together before you spray it. You should hold the can approximately 15 cm from your body as you spray it.</span></li><br> 	<li><span class=\"a-list-item\">Fragrance Classification: Body Spray;</span></li><br> 	<li><span class=\"a-list-item\">Target Audience: Women</span></li><br> 	<li><span class=\"a-list-item\">Package Contents: 1 Body Spray</span></li><br> 	<li><span class=\"a-list-item\">Country of Origin: India</span></li><br> 	<li class=\"\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i2.16f97b6ck7VIk0\">Unique &amp; Fresh Fragrance</li><br> 	<li class=\"\">Best For Everyday Use</li><br> 	<li class=\"\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i1.16f97b6ck7VIk0\">Lowest Price</li><br></ul>',NULL,NULL,'-kbnzl',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 04:42:18'),(422,'Fogg Essence Body Spray For Women','admin',9,18,NULL,NULL,1,'799,800,801','803','youtube',NULL,'velburry','<strong>Article no: 3012</strong><br><h6 class=\"a-size-base-plus a-text-bold\">About this item:</h6><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Quantity: 150ml; Item Form: Spray</span></li><br> 	<li><span class=\"a-list-item\">Ensures you 1000 sprays</span></li><br> 	<li><span class=\"a-list-item\">Consists of refreshing</span></li><br> 	<li><span class=\"a-list-item\">Long lasting fragrance</span></li><br> 	<li><span class=\"a-list-item\">Usage: Give it a good hard shake first to make sure all the ingredients are mixed together before you spray it. You should hold the can approximately 15 cm from your body as you spray it.</span></li><br> 	<li><span class=\"a-list-item\">Target Audience: Women</span></li><br> 	<li><span class=\"a-list-item\">Package Contents: 1 Body Spray</span></li><br> 	<li><span class=\"a-list-item\">Country of Origin: India</span></li><br></ul>',530.00,530.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Fogg Essence Body Spray For Women','<strong>Article no: 3012</strong><br><h6 class=\"a-size-base-plus a-text-bold\">About this item:</h6><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Quantity: 150ml; Item Form: Spray</span></li><br> 	<li><span class=\"a-list-item\">Ensures you 1000 sprays</span></li><br> 	<li><span class=\"a-list-item\">Consists of refreshing</span></li><br> 	<li><span class=\"a-list-item\">Long lasting fragrance</span></li><br> 	<li><span class=\"a-list-item\">Usage: Give it a good hard shake first to make sure all the ingredients are mixed together before you spray it. You should hold the can approximately 15 cm from your body as you spray it.</span></li><br> 	<li><span class=\"a-list-item\">Target Audience: Women</span></li><br> 	<li><span class=\"a-list-item\">Package Contents: 1 Body Spray</span></li><br> 	<li><span class=\"a-list-item\">Country of Origin: India</span></li><br></ul>',NULL,NULL,'-qh0hy',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 04:43:36'),(423,'Fogg Majestic Deodorant Spray - For Men','admin',9,17,NULL,NULL,1,'804,805','807','youtube',NULL,'velburry','<strong>Article no: 3013</strong><br><h6 class=\"subtitle\">PRODUCT DESCRIPTION</h6><br><div class=\"ProductDescriptionContainer prodAccordionContent\"><br><br>Fogg is an Indian deodorant brand manufactured by Lovincare Cosmetics Pvt. Ltd. Fogg body spray deodorant provides you with absolute value for money. A pleasant and invigorating deodorant that helps you feel fresh cool.<br><ul><br> 	<li class=\"_21Ahn-\">Quantity: 120 ml</li><br> 	<li class=\"_21Ahn-\">Fragrance: Deodorant Spray</li><br> 	<li class=\"_21Ahn-\">For Men</li><br></ul><br></div>',530.00,530.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Fogg Majestic Deodorant Spray - For Men','<strong>Article no: 3013</strong><br><h6 class=\"subtitle\">PRODUCT DESCRIPTION</h6><br><div class=\"ProductDescriptionContainer prodAccordionContent\"><br><br>Fogg is an Indian deodorant brand manufactured by Lovincare Cosmetics Pvt. Ltd. Fogg body spray deodorant provides you with absolute value for money. A pleasant and invigorating deodorant that helps you feel fresh cool.<br><ul><br> 	<li class=\"_21Ahn-\">Quantity: 120 ml</li><br> 	<li class=\"_21Ahn-\">Fragrance: Deodorant Spray</li><br> 	<li class=\"_21Ahn-\">For Men</li><br></ul><br></div>',NULL,NULL,'-kqrsr',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 04:44:41'),(424,'Fogg monarch Perfume Body Spray - For Men','admin',9,17,NULL,NULL,1,'808','809','youtube',NULL,'velburry','<strong>Article no: 3014</strong><br><div class=\"d9FyLd XcVN5d\"><b>Fogg monarch Perfume Body Spray</b> - For Men (120 ml)</div><br><span class=\"hgKElc\">This perfumed <b>body spray</b> has an invigorating scent that envelops you in a pleasant smell for a long time. Fragrance It has a scent that includes the notes of the fresh fragrance family which keeps you active all day.</span><br><div class=\"_3a9CI2\"><strong>Highlights:</strong></div><br><div class=\"_2418kt\"><br><ul><br> 	<li class=\"_21Ahn-\">Quantity: 120 ml</li><br> 	<li class=\"_21Ahn-\">Fragrance: Perfume Body Spray</li><br> 	<li class=\"_21Ahn-\">For Men</li><br></ul><br></div>',530.00,530.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Fogg monarch Perfume Body Spray - For Men','<strong>Article no: 3014</strong><br><div class=\"d9FyLd XcVN5d\"><b>Fogg monarch Perfume Body Spray</b> - For Men (120 ml)</div><br><span class=\"hgKElc\">This perfumed <b>body spray</b> has an invigorating scent that envelops you in a pleasant smell for a long time. Fragrance It has a scent that includes the notes of the fresh fragrance family which keeps you active all day.</span><br><div class=\"_3a9CI2\"><strong>Highlights:</strong></div><br><div class=\"_2418kt\"><br><ul><br> 	<li class=\"_21Ahn-\">Quantity: 120 ml</li><br> 	<li class=\"_21Ahn-\">Fragrance: Perfume Body Spray</li><br> 	<li class=\"_21Ahn-\">For Men</li><br></ul><br></div>',NULL,NULL,'-yfcsa',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 04:45:41'),(425,'Bold Body Spray Life Intense For Men','admin',9,17,NULL,NULL,1,'810','811','youtube',NULL,'velburry','<strong>Article no: 3015</strong><br><br><strong>product Details:</strong><br><br>Refreshing scent<br><br>Long lasting<br><br>Sensual and Masculine Fragrance<br><br><strong>Bold- Men Body Spray Life Intense 120 ml</strong>',450.00,450.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Bold Body Spray Life Intense For Men','<strong>Article no: 3015</strong><br><br><strong>product Details:</strong><br><br>Refreshing scent<br><br>Long lasting<br><br>Sensual and Masculine Fragrance<br><br><strong>Bold- Men Body Spray Life Intense 120 ml</strong>',NULL,NULL,'-qtdxg',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 04:52:54'),(426,'Bold Life Vintage Body Spray For Men & Women','admin',9,18,NULL,NULL,1,'813','814','youtube',NULL,'velburry','<strong>Article no: 3016</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i0.662d259aTexshm\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Gas Free</li><br> 	<li class=\"\">120 ml</li><br> 	<li class=\"\">Targeted audience: Unisex</li><br></ul><br>Long lastingBold Life Body Spray collection uses the most contemporary and modern fragrances. With its long lasting properties, this range is perfect for men on the go. Buy BOLD Vintage Body Spray 120ML.<br><br></div><br></div><br></div>',450.00,450.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Bold Life Vintage Body Spray For Men & Women','<strong>Article no: 3016</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i0.662d259aTexshm\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Gas Free</li><br> 	<li class=\"\">120 ml</li><br> 	<li class=\"\">Targeted audience: Unisex</li><br></ul><br>Long lastingBold Life Body Spray collection uses the most contemporary and modern fragrances. With its long lasting properties, this range is perfect for men on the go. Buy BOLD Vintage Body Spray 120ML.<br><br></div><br></div><br></div>',NULL,NULL,'-0alg6',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 04:53:54'),(427,'Bold Ignite Special Edition Body Spray For Men','admin',9,17,NULL,NULL,1,'815','816','youtube',NULL,'velburry','<strong>Article no: 3017</strong><br><h6 class=\"css-a3q5me\">DESCRIPTION</h6><br><div>Bold Life Body Spray collection uses the most contemporary and modern fragrances. With its long lasting properties, this range is perfect for men on the go.</div><br><div></div><br><div>Ignite Special Edition a is mild and very pleasant aroma. Those who like very fine and mild fragrance, your desires will be complete with this deodorant.</div>',450.00,450.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Bold Ignite Special Edition Body Spray For Men','<strong>Article no: 3017</strong><br><h6 class=\"css-a3q5me\">DESCRIPTION</h6><br><div>Bold Life Body Spray collection uses the most contemporary and modern fragrances. With its long lasting properties, this range is perfect for men on the go.</div><br><div></div><br><div>Ignite Special Edition a is mild and very pleasant aroma. Those who like very fine and mild fragrance, your desires will be complete with this deodorant.</div>',NULL,NULL,'-vbtj0',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 04:54:56'),(428,'Bold Life Aqua Body Spray For Men','admin',9,17,NULL,NULL,1,'817','818','youtube',NULL,'velburry','<strong>Article no: 3018</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i0.27e834ae5KPHPd\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><br>Bold Aqua Body Spray 120ml Bold Life Body Spray collection uses the most contemporary and modern fragrances. With its long lasting properties, this range is perfect for men on the go.<br><ul><br> 	<li>Brand : Bold</li><br> 	<li>Type: Eau de Perfume</li><br> 	<li>Size : 200ml Fragrance</li><br> 	<li>Family : Woody &amp; Spicy</li><br></ul><br></div><br></div><br></div>',450.00,450.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Bold Life Aqua Body Spray For Men','<strong>Article no: 3018</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i0.27e834ae5KPHPd\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><br>Bold Aqua Body Spray 120ml Bold Life Body Spray collection uses the most contemporary and modern fragrances. With its long lasting properties, this range is perfect for men on the go.<br><ul><br> 	<li>Brand : Bold</li><br> 	<li>Type: Eau de Perfume</li><br> 	<li>Size : 200ml Fragrance</li><br> 	<li>Family : Woody &amp; Spicy</li><br></ul><br></div><br></div><br></div>',NULL,NULL,'-xeqqd',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 04:56:07'),(429,'CHRIS ADAMS ACTIVE MAN BODY SPRAY','admin',9,17,NULL,NULL,1,'819','820','youtube',NULL,'velburry','<strong>Article no: 3019</strong><br><br><b>Specifications:</b><br><ul><br> 	<li>Brand: Chris Adams</li><br> 	<li>Condition: Bran-new, unused, unopened, undamaged item</li><br> 	<li>Variant: Active Men</li><br> 	<li>Type: Body Spray</li><br> 	<li>Size: 200 ml</li><br> 	<li>Long lasting</li><br> 	<li>Targeted Group: Men</li><br></ul><br>Cool and Refreshing Body Spray<b>Active Man Body Spray</b> is a young, energetic and oozing charisma. It makes a splash wherever you go. Moreover, <b>Active Man</b> is a crisp and refreshing <b>body spray</b> that absorbs the freshness of aqua with tangy citrus notes, and herbal notes are offset by a sensual with musk.',410.00,410.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'CHRIS ADAMS ACTIVE MAN BODY SPRAY','<strong>Article no: 3019</strong><br><br><b>Specifications:</b><br><ul><br> 	<li>Brand: Chris Adams</li><br> 	<li>Condition: Bran-new, unused, unopened, undamaged item</li><br> 	<li>Variant: Active Men</li><br> 	<li>Type: Body Spray</li><br> 	<li>Size: 200 ml</li><br> 	<li>Long lasting</li><br> 	<li>Targeted Group: Men</li><br></ul><br>Cool and Refreshing Body Spray<b>Active Man Body Spray</b> is a young, energetic and oozing charisma. It makes a splash wherever you go. Moreover, <b>Active Man</b> is a crisp and refreshing <b>body spray</b> that absorbs the freshness of aqua with tangy citrus notes, and herbal notes are offset by a sensual with musk.',NULL,NULL,'-9ub6a',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 04:58:59'),(430,'Active Woman Body Spray Deodorant For Women','admin',9,18,NULL,NULL,1,'822','821','youtube',NULL,'velburry','<strong>Article no: 3020</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.4d1438dfhyBWZa\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Size: 200 ml</li><br> 	<li class=\"\">Safe on skin</li><br> 	<li class=\"\">Long LastingTOP NOTES: Fresh Bergamot and Orange, Sparkling Grapefruit, Cut HerbsMIDDLE NOTES: Basket of Exotic Fruits, Rose Petals, Aquatic Jasmine<br><br>BASE NOTES: Precious Sandalwood, Leaves of Patchouly, Tonka Beans, Vanilla Sugar, Sensual White Musks<br><br>OLFACTIVE FAMILY: Floral-Fruity-Musky</li><br></ul><br></div><br></div><br></div>',410.00,410.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Active Woman Body Spray Deodorant For Women','<strong>Article no: 3020</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.4d1438dfhyBWZa\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Size: 200 ml</li><br> 	<li class=\"\">Safe on skin</li><br> 	<li class=\"\">Long LastingTOP NOTES: Fresh Bergamot and Orange, Sparkling Grapefruit, Cut HerbsMIDDLE NOTES: Basket of Exotic Fruits, Rose Petals, Aquatic Jasmine<br><br>BASE NOTES: Precious Sandalwood, Leaves of Patchouly, Tonka Beans, Vanilla Sugar, Sensual White Musks<br><br>OLFACTIVE FAMILY: Floral-Fruity-Musky</li><br></ul><br></div><br></div><br></div>',NULL,NULL,'-0qpwh',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 05:00:47'),(431,'Armaf Shades For Men Body Spray','admin',9,17,NULL,NULL,1,'823','824','youtube',NULL,'velburry','<strong>Article no: 3021</strong><br><h6><strong>Armaf Shades:</strong></h6><br><a href=\"http://www.sterlingparfums.com/en/brand/fragrances/armaf\">Armaf</a> Shades <a href=\"http://orbis.pk/product/amaris-modern-girl-body-spray-200ml/\">Body Spray</a> is expression of luxury that is original and innovative collection of signature fragrances from armaf for men with quality, competitive pricing and unique packaging.<br><br><strong>Ingredients:</strong><br><br>Alcohol Denat, Aqua, (Water), Parfum (Fragrance), Dipropylene Glycol, Isopropyl Myristate, Ethylhexyl Glycerin, Propane, Limonene, Linalool, Citronellol, Butylphenyl methylpropional,Citral. By sterling perfumes<br>• Fragrance : Shades<br>• Gender : Men<br>• ML : 200',500.00,500.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Armaf Shades For Men Body Spray','<strong>Article no: 3021</strong><br><h6><strong>Armaf Shades:</strong></h6><br><a href=\"http://www.sterlingparfums.com/en/brand/fragrances/armaf\">Armaf</a> Shades <a href=\"http://orbis.pk/product/amaris-modern-girl-body-spray-200ml/\">Body Spray</a> is expression of luxury that is original and innovative collection of signature fragrances from armaf for men with quality, competitive pricing and unique packaging.<br><br><strong>Ingredients:</strong><br><br>Alcohol Denat, Aqua, (Water), Parfum (Fragrance), Dipropylene Glycol, Isopropyl Myristate, Ethylhexyl Glycerin, Propane, Limonene, Linalool, Citronellol, Butylphenyl methylpropional,Citral. By sterling perfumes<br>• Fragrance : Shades<br>• Gender : Men<br>• ML : 200',NULL,NULL,'-fzaa2',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 05:02:54'),(432,'BREMOD Black Oil','admin',9,19,NULL,NULL,1,'825','826','youtube',NULL,'velburry','<div dir=\"auto\"><strong>Article No:1084</strong></div><br><div dir=\"auto\"></div><br><div dir=\"auto\">Bremod Black Oil Magical Effects</div><br><div dir=\"auto\">Grey hair Coverage in 2 minutes</div>',1550.00,1550.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'BREMOD Black Oil','<div dir=\"auto\"><strong>Article No:1084</strong></div><br><div dir=\"auto\"></div><br><div dir=\"auto\">Bremod Black Oil Magical Effects</div><br><div dir=\"auto\">Grey hair Coverage in 2 minutes</div>',NULL,NULL,'-92fpm',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 05:57:51'),(433,'OLAY Day Natural White Cream','admin',9,24,NULL,NULL,1,'828,829,830','827','youtube',NULL,'velburry','<strong>Article No: 1085</strong><br><br>Olay Natural White Day Glowing Fairness cream nourishes and helps protect your skin with 7 benefits in just 1 bottle. Powered with a tri-Vitamin boost of B3, pro-B5 and E and SPF 24/PA++, for your natural glowing skin. Avoid contact with eyes.If contact occurs, rinse eyes thoroughly with water',690.00,690.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'OLAY Day Natural White Cream','<strong>Article No: 1085</strong><br><br>Olay Natural White Day Glowing Fairness cream nourishes and helps protect your skin with 7 benefits in just 1 bottle. Powered with a tri-Vitamin boost of B3, pro-B5 and E and SPF 24/PA++, for your natural glowing skin. Avoid contact with eyes.If contact occurs, rinse eyes thoroughly with water',NULL,NULL,'-hujlb',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 05:59:16'),(434,'OLAY Night Natural White Cream','admin',9,24,NULL,NULL,1,'834,833,831,832','835','youtube',NULL,'velburry','<strong>Article No:1086</strong><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Item Form: Cream</span></li><br> 	<li><span class=\"a-list-item\">Lightens overall skin tone by reducing melanin transfer to skin surface; Reduces the appearance of dark spots</span></li><br> 	<li><span class=\"a-list-item\">Skin Type: Suitable For All Skin Types</span></li><br> 	<li><span class=\"a-list-item\">Application Area: Face and Neck</span></li><br> 	<li><span class=\"a-list-item\">Usage: Using your fingertips, smooth evenly onto clean skin over face and neck, once or twice a day. It can be used alone or under foundation make-up.</span></li><br> 	<li><span class=\"a-list-item\">Target Audience: Women</span></li><br></ul>',690.00,690.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'OLAY Night Natural White Cream','<strong>Article No:1086</strong><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Item Form: Cream</span></li><br> 	<li><span class=\"a-list-item\">Lightens overall skin tone by reducing melanin transfer to skin surface; Reduces the appearance of dark spots</span></li><br> 	<li><span class=\"a-list-item\">Skin Type: Suitable For All Skin Types</span></li><br> 	<li><span class=\"a-list-item\">Application Area: Face and Neck</span></li><br> 	<li><span class=\"a-list-item\">Usage: Using your fingertips, smooth evenly onto clean skin over face and neck, once or twice a day. It can be used alone or under foundation make-up.</span></li><br> 	<li><span class=\"a-list-item\">Target Audience: Women</span></li><br></ul>',NULL,NULL,'-ixsro',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 05:59:31'),(435,'L\'Oréal White Perfect Day Cream','admin',9,24,NULL,NULL,1,'840,837,838,839','836','youtube',NULL,'velburry','<strong>Article No: 1087</strong><br><br>LOréal Paris <b>White Perfect Day Cream</b> and <b>face moisturizer</b> is a non-greasy, anti-spot skincare solution that is enriched with brightening elements that enhance skin radiance and provide UV protection.',1290.00,1290.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'L\'Oréal White Perfect Day Cream','<strong>Article No: 1087</strong><br><br>LOréal Paris <b>White Perfect Day Cream</b> and <b>face moisturizer</b> is a non-greasy, anti-spot skincare solution that is enriched with brightening elements that enhance skin radiance and provide UV protection.',NULL,NULL,'-kdw50',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 05:59:46'),(436,'L\'Oréal White Perfect Night Cream','admin',9,24,NULL,NULL,1,'842,843,841','844','youtube',NULL,'velburry','Article No: 1088<br><br><b>LOreal</b> Paris <b>White Perfect Night Cream</b>. <b>LOreal</b> Paris <b>White Perfect Night Cream</b> contains Melanin-Vanish and Tourmaline that reduce dark spots and visibly brighten the skin tone. The <b>cream</b> makes your skin fairer and more radiant. It inhibits melanin production and stimulates microcirculation, which makes your skin glow',1290.00,1290.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'L\'Oréal White Perfect Night Cream','Article No: 1088<br><br><b>LOreal</b> Paris <b>White Perfect Night Cream</b>. <b>LOreal</b> Paris <b>White Perfect Night Cream</b> contains Melanin-Vanish and Tourmaline that reduce dark spots and visibly brighten the skin tone. The <b>cream</b> makes your skin fairer and more radiant. It inhibits melanin production and stimulates microcirculation, which makes your skin glow',NULL,NULL,'-prrv1',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 05:59:59'),(437,'DOVE Dry Lotion','admin',9,24,NULL,NULL,1,'846,847,848','845','youtube',NULL,'velburry','<strong>Article No: 1089</strong><br><br>We have <b>Dove</b> DermaSeries Replenishing Body <b>Lotion</b>, that is formulated for severely <b>dry</b> skin. Its hypoallergenic, fragrance-free, clinically proven for lasting comfort for severely <b>dry</b> skin, and suitable for psoriasis and eczema-prone skin. The performance of the product depends on your skins specific needs.',420.00,420.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'DOVE Dry Lotion','<strong>Article No: 1089</strong><br><br>We have <b>Dove</b> DermaSeries Replenishing Body <b>Lotion</b>, that is formulated for severely <b>dry</b> skin. Its hypoallergenic, fragrance-free, clinically proven for lasting comfort for severely <b>dry</b> skin, and suitable for psoriasis and eczema-prone skin. The performance of the product depends on your skins specific needs.',NULL,NULL,'-tqswn',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:00:15'),(438,'Dove Restoring Coconut oil and Almond milk Body Lotion','admin',9,24,NULL,NULL,1,'851,850,849','852','youtube',NULL,'velburry','<strong>Article No: 1090</strong><br><br>This moisturizing body <b>lotion</b> with <b>coconut</b> oil and almond milk quickly moisturizes body to offer an instant solution to rough, dry body. The fast absorbing formula allows the body <b>lotion</b> to instantly moisturizes and soften your skin, whilst the fast drying ensures there is no sticky or greasy residue.',420.00,420.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Dove Restoring Coconut oil and Almond milk Body Lotion','<strong>Article No: 1090</strong><br><br>This moisturizing body <b>lotion</b> with <b>coconut</b> oil and almond milk quickly moisturizes body to offer an instant solution to rough, dry body. The fast absorbing formula allows the body <b>lotion</b> to instantly moisturizes and soften your skin, whilst the fast drying ensures there is no sticky or greasy residue.',NULL,NULL,'-wnjbi',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:01:58'),(439,'Armaf The Warrior Deodorant Body Spray For Men','admin',9,17,NULL,NULL,1,'853','854','youtube',NULL,'velburry','<strong>Article no: 3022</strong><br><br><strong>Description:</strong><br><br>Armaf The warriordeodorant the expression of luxury that is original and innovative collection of signature fragrances for men with quality, competitive pricing and unique packaging.<br><br>• By sterling perfumes<br><br>• Fragrance : The warrior<br><br>• Gender : Men<br><br>• ML : 200<br><br>Delicate ScentCharming Woody AromaLong LastingClassy BottleHarmony in Top, Middle/Heart &amp; Base Notes!',599.00,599.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Armaf The Warrior Deodorant Body Spray For Men','<strong>Article no: 3022</strong><br><br><strong>Description:</strong><br><br>Armaf The warriordeodorant the expression of luxury that is original and innovative collection of signature fragrances for men with quality, competitive pricing and unique packaging.<br><br>• By sterling perfumes<br><br>• Fragrance : The warrior<br><br>• Gender : Men<br><br>• ML : 200<br><br>Delicate ScentCharming Woody AromaLong LastingClassy BottleHarmony in Top, Middle/Heart &amp; Base Notes!',NULL,NULL,'-bs3ka',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 05:45:56'),(440,'Armaf Club De Nuit Intense Man Deodorant Body Spray','admin',9,17,NULL,NULL,1,'855','856','youtube',NULL,'velburry','<strong>Article no: 3023</strong><br><br><strong>PRODUCT DESCRIPTION:</strong><br><br>Armaf <b>Club De Nuit Intense Body Spray Mist</b> for <b>men</b> is a captivating blend <b>of</b> fruity accords with a smoldering dry down that gives the impression <b>of</b> a high-end <b>Perfume</b> at a surprisingly reasonable price. ... They currently have 79 scents in their fragrance line. <b>Club De Nuit Intense</b> was released 2015.<br><br>Club De Nuit Intense by Armaf is a woody fragrance for men.<br><br>Contains notes of lemon, black currant, apple, bergamot, pineapple, rose, jasmine, birch, vanilla, ambergris, musk and patchouli.<br><br>&nbsp;',599.00,599.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Armaf Club De Nuit Intense Man Deodorant Body Spray','<strong>Article no: 3023</strong><br><br><strong>PRODUCT DESCRIPTION:</strong><br><br>Armaf <b>Club De Nuit Intense Body Spray Mist</b> for <b>men</b> is a captivating blend <b>of</b> fruity accords with a smoldering dry down that gives the impression <b>of</b> a high-end <b>Perfume</b> at a surprisingly reasonable price. ... They currently have 79 scents in their fragrance line. <b>Club De Nuit Intense</b> was released 2015.<br><br>Club De Nuit Intense by Armaf is a woody fragrance for men.<br><br>Contains notes of lemon, black currant, apple, bergamot, pineapple, rose, jasmine, birch, vanilla, ambergris, musk and patchouli.<br><br>&nbsp;',NULL,NULL,'-uowxk',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 05:55:49'),(441,'Enchanteur Charming Perfumed Body Lotion 500ml','admin',9,24,NULL,NULL,1,'857,858,859','860','youtube',NULL,'velburry','<div role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CBEQAA\"><strong>Article No: 1091</strong></div><br><div role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CBEQAA\"></div><br><div class=\"mod\" lang=\"en-PK\" data-md=\"61\"><br><div class=\"LGOjhe\" role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CBEQAA\"><span class=\"ILfuVd\"><span class=\"hgKElc\"><b>Enchanteur</b> Charming Body <b>Lotion</b> offers deep moisturisation while leaving your skin non-greasy. It has skin-friendly, healing ingredients like aloe vera and olive butter, and is crafted with the fragrance of roses, muguet and fresh citrus. Try it for huggable soft skin.</span></span></div><br></div><br><div class=\"g\"><br><div class=\"rc\" data-hveid=\"CA0QAA\" data-ved=\"2ahUKEwjl7ebh3vftAhULQkEAHc1dCM8QFSgAMAJ6BAgNEAA\"></div><br></div>',550.00,550.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Enchanteur Charming Perfumed Body Lotion 500ml','<div role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CBEQAA\"><strong>Article No: 1091</strong></div><br><div role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CBEQAA\"></div><br><div class=\"mod\" lang=\"en-PK\" data-md=\"61\"><br><div class=\"LGOjhe\" role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CBEQAA\"><span class=\"ILfuVd\"><span class=\"hgKElc\"><b>Enchanteur</b> Charming Body <b>Lotion</b> offers deep moisturisation while leaving your skin non-greasy. It has skin-friendly, healing ingredients like aloe vera and olive butter, and is crafted with the fragrance of roses, muguet and fresh citrus. Try it for huggable soft skin.</span></span></div><br></div><br><div class=\"g\"><br><div class=\"rc\" data-hveid=\"CA0QAA\" data-ved=\"2ahUKEwjl7ebh3vftAhULQkEAHc1dCM8QFSgAMAJ6BAgNEAA\"></div><br></div>',NULL,NULL,'-gz3le',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:02:55'),(442,'Armaf Club De Nuit Women Deodorant Body Spray','admin',9,18,NULL,NULL,1,'861','862','youtube',NULL,'velburry','<strong>Article no: 3024</strong><br><h6 class=\"a-size-base-plus a-text-bold\">product description:</h6><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Top note: bergamot, grapefruit, peach, orange</span></li><br> 	<li><span class=\"a-list-item\">Middle note: geranium, jasmine, litchi, rose</span></li><br> 	<li><span class=\"a-list-item\"><span class=\"a-list-item\">Base note: musk, patchouli, vanilla, vetiver</span></span>Armaf Club De NuitNon Alcoholicperfume body spray isirresistible unique designer Armaf deodorant for women with beautiful designed packaging, the feminine aroma keeps your spirits high day long with class, style and elegance.• By sterling perfumes<br><br>• Fragrance : Club de nuitNon Alcoholic<br><br>• Gender : Women<br><br>• ML : 200</li><br></ul>',599.00,599.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Armaf Club De Nuit Women Deodorant Body Spray','<strong>Article no: 3024</strong><br><h6 class=\"a-size-base-plus a-text-bold\">product description:</h6><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Top note: bergamot, grapefruit, peach, orange</span></li><br> 	<li><span class=\"a-list-item\">Middle note: geranium, jasmine, litchi, rose</span></li><br> 	<li><span class=\"a-list-item\"><span class=\"a-list-item\">Base note: musk, patchouli, vanilla, vetiver</span></span>Armaf Club De NuitNon Alcoholicperfume body spray isirresistible unique designer Armaf deodorant for women with beautiful designed packaging, the feminine aroma keeps your spirits high day long with class, style and elegance.• By sterling perfumes<br><br>• Fragrance : Club de nuitNon Alcoholic<br><br>• Gender : Women<br><br>• ML : 200</li><br></ul>',NULL,NULL,'-e7j0c',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 05:58:17'),(443,'Armaf High Street For Women Deodorant Body Spray','admin',9,18,NULL,NULL,1,'863','864','youtube',NULL,'velburry','<strong>Article no: 3025</strong><br><h6 class=\"a-size-base-plus a-text-bold\">product discription:</h6><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Top Note: Fresh citrus</span></li><br> 	<li><span class=\"a-list-item\">Middle Note: Honeysuckle, Magnolia</span></li><br></ul><br><ul><br> 	<li><span class=\"a-list-item\"><span class=\"a-list-item\">Base Note: Amber, Cashmere wood, Musk</span></span></li><br></ul><br><div class=\"FqsW\"><br><div class=\"_2LOI\">200 ml</div><br></div><br><div class=\"FqsW\"><br><div class=\"w3LC\">Ideal For:   Women</div><br></div><br><div class=\"FqsW\"><br><div class=\"w3LC\">Type:    Roll On</div><br></div><br><div class=\"FqsW\"><br><div class=\"w3LC\">Expiry Date:      15/09/2023</div><br></div><br><div class=\"FqsW\"><br><div class=\"_2LOI\"></div><br></div>',599.00,599.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Armaf High Street For Women Deodorant Body Spray','<strong>Article no: 3025</strong><br><h6 class=\"a-size-base-plus a-text-bold\">product discription:</h6><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Top Note: Fresh citrus</span></li><br> 	<li><span class=\"a-list-item\">Middle Note: Honeysuckle, Magnolia</span></li><br></ul><br><ul><br> 	<li><span class=\"a-list-item\"><span class=\"a-list-item\">Base Note: Amber, Cashmere wood, Musk</span></span></li><br></ul><br><div class=\"FqsW\"><br><div class=\"_2LOI\">200 ml</div><br></div><br><div class=\"FqsW\"><br><div class=\"w3LC\">Ideal For:   Women</div><br></div><br><div class=\"FqsW\"><br><div class=\"w3LC\">Type:    Roll On</div><br></div><br><div class=\"FqsW\"><br><div class=\"w3LC\">Expiry Date:      15/09/2023</div><br></div><br><div class=\"FqsW\"><br><div class=\"_2LOI\"></div><br></div>',NULL,NULL,'-git0k',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 05:59:18'),(444,'Enchanteur Charming Perfumed Body Lotion 250ml','admin',9,24,NULL,NULL,1,'865,866','867','youtube',NULL,'velburry','<strong>Article No: 1092</strong><br><br><b>Enchanteur</b> Charming Body <b>Lotion</b> offers deep moisturisation while leaving your skin non-greasy. It has skin-friendly, healing ingredients like aloe vera and olive butter, and is crafted with the fragrance of roses, muguet and fresh citrus. Try it for huggable soft skin.',360.00,360.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Enchanteur Charming Perfumed Body Lotion 250ml','<strong>Article No: 1092</strong><br><br><b>Enchanteur</b> Charming Body <b>Lotion</b> offers deep moisturisation while leaving your skin non-greasy. It has skin-friendly, healing ingredients like aloe vera and olive butter, and is crafted with the fragrance of roses, muguet and fresh citrus. Try it for huggable soft skin.',NULL,NULL,'-nzkvt',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:03:09'),(445,'Nivea Body Lotion Light Moisturizing & Cleansing 250ml','admin',9,24,NULL,NULL,1,'868,869,870','871','youtube',NULL,'velburry','<strong>Article No: 1093</strong><br><br><b>NIVEA Lotion</b> for Normal Skin is a light effective <b>lotion</b> that has been specially formulated to help maintain your skins natural moisture level. Ideal as a cleanser or moisturizer, skin is left feeling soft, smooth and hydrated. Skin compatibility dermatologically approved.',520.00,520.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Nivea Body Lotion Light Moisturizing & Cleansing 250ml','<strong>Article No: 1093</strong><br><br><b>NIVEA Lotion</b> for Normal Skin is a light effective <b>lotion</b> that has been specially formulated to help maintain your skins natural moisture level. Ideal as a cleanser or moisturizer, skin is left feeling soft, smooth and hydrated. Skin compatibility dermatologically approved.',NULL,NULL,'-gv9fx',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:03:29'),(446,'NIVEA White Radiant & Smooth Body Lotion 250ml','admin',9,24,NULL,NULL,1,'873','872','youtube',NULL,'velburry','<strong>Article No: 1094</strong><br><br>This formula fights UV rays with UV filter plus 40X** Vitamin C that helps brighten up skin. It moisturizes for noticeably smoother skin that you can feel. With Deep <b>White</b> Essence*, concentrated whitening extract that deeply repairs and nourishes^ for fairer and radiant skin from deep within.',520.00,520.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'NIVEA White Radiant & Smooth Body Lotion 250ml','<strong>Article No: 1094</strong><br><br>This formula fights UV rays with UV filter plus 40X** Vitamin C that helps brighten up skin. It moisturizes for noticeably smoother skin that you can feel. With Deep <b>White</b> Essence*, concentrated whitening extract that deeply repairs and nourishes^ for fairer and radiant skin from deep within.',NULL,NULL,'-vnspg',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:03:41'),(447,'Armaf High Street Midnight Women Deodorant Body Spray','admin',9,18,NULL,NULL,1,'874','875','youtube',NULL,'velburry','<strong>Article no: 3026</strong><br><h6 class=\"a-size-base-plus a-text-bold\">About this item:</h6><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Net content- 200 ml</span></li><br> 	<li><span class=\"a-list-item\">It is perfect to give as a Gift</span></li><br> 	<li><span class=\"a-list-item\">It has a long-lasting fragrance</span></li><br></ul><br><b>High Street Midnight</b> by <b>Armaf</b> is a Floral Fruity body spray for women. Top notes are Blood Orange and Citruses; middle notes are Osmanthus, Honeysuckle and Magnolia; base notes are Cashmere Wood, Musk and Amber.',599.00,599.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Armaf High Street Midnight Women Deodorant Body Spray','<strong>Article no: 3026</strong><br><h6 class=\"a-size-base-plus a-text-bold\">About this item:</h6><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Net content- 200 ml</span></li><br> 	<li><span class=\"a-list-item\">It is perfect to give as a Gift</span></li><br> 	<li><span class=\"a-list-item\">It has a long-lasting fragrance</span></li><br></ul><br><b>High Street Midnight</b> by <b>Armaf</b> is a Floral Fruity body spray for women. Top notes are Blood Orange and Citruses; middle notes are Osmanthus, Honeysuckle and Magnolia; base notes are Cashmere Wood, Musk and Amber.',NULL,NULL,'-61lkk',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 06:19:46'),(448,'NIVEA blue lotion 125ml','admin',9,24,NULL,NULL,1,'876','877','youtube',NULL,'velburry','<strong>Article No: 1095</strong><br><br>The patented NIVEA formula is using the knowledge, that our skin contains sufficient moisture in its deeper layers, that assures its fresh, healthy look. Unluckily with time and exposure to outside influences our skin often looses access to this innter moisture depot. Inspired by natural skin processes NIVEA has developed an active, which reactivated the skin to use of htis source again.',380.00,380.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'NIVEA blue lotion 125ml','<strong>Article No: 1095</strong><br><br>The patented NIVEA formula is using the knowledge, that our skin contains sufficient moisture in its deeper layers, that assures its fresh, healthy look. Unluckily with time and exposure to outside influences our skin often looses access to this innter moisture depot. Inspired by natural skin processes NIVEA has developed an active, which reactivated the skin to use of htis source again.',NULL,NULL,'-oelwh',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:04:15'),(449,'NIVEA White Radiant & Smooth Body Lotion 125ml','admin',9,24,NULL,NULL,1,'879','878','youtube',NULL,'velburry','<strong>Article No: 1096</strong><br><br>This formula fights UV rays with UV filter plus 40X** Vitamin C that helps brighten up skin. It moisturizes for noticeably smoother skin that you can feel. With deep <b>white</b> essence*, concentrated whitening extract that deeply repairs and nourishes^ for fairer and radiant skin from deep within.',380.00,380.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'NIVEA White Radiant & Smooth Body Lotion 125ml','<strong>Article No: 1096</strong><br><br>This formula fights UV rays with UV filter plus 40X** Vitamin C that helps brighten up skin. It moisturizes for noticeably smoother skin that you can feel. With deep <b>white</b> essence*, concentrated whitening extract that deeply repairs and nourishes^ for fairer and radiant skin from deep within.',NULL,NULL,'-uyvk5',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:04:30'),(450,'Jaguar Body Spray Deodorant Spray - For Men','admin',9,17,NULL,NULL,1,'880,881','882','youtube',NULL,'velburry','<strong>Article no: 3027</strong><br><div class=\"_3a9CI2\"><strong>Highlights:</strong></div><br><div class=\"_2418kt\"><br><ul><br> 	<li class=\"_21Ahn-\">Quantity: 150 ml</li><br> 	<li class=\"_21Ahn-\">Fragrance: Deodorant Spray</li><br> 	<li class=\"_21Ahn-\">For Men</li><br> 	<li><span class=\"a-list-item\">Launched by the design house of Jaguar</span></li><br> 	<li><span class=\"a-list-item\">This aromatic fougere fragrance has a blend of orange, juniper berries, lavender, mandarin orange, basil, star anise, orange blossom, and white musk</span></li><br> 	<li><span class=\"a-list-item\">Long-lasting fragrance</span></li><br> 	<li><span class=\"a-list-item\">Keeps perspiration and body odor at bay</span></li><br> 	<li><span class=\"a-list-item\">Amazing fragrance that keeps you fresh and rejuvenated</span></li><br> 	<li><span class=\"a-list-item\">Size : 150 ml</span></li><br> 	<li><span class=\"a-list-item\">Suitable For : Men</span></li><br></ul><br></div>',500.00,500.00,0,'[]','[]','[]','[]',0,1,0,0,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Jaguar Body Spray Deodorant Spray - For Men','<strong>Article no: 3027</strong><br><div class=\"_3a9CI2\"><strong>Highlights:</strong></div><br><div class=\"_2418kt\"><br><ul><br> 	<li class=\"_21Ahn-\">Quantity: 150 ml</li><br> 	<li class=\"_21Ahn-\">Fragrance: Deodorant Spray</li><br> 	<li class=\"_21Ahn-\">For Men</li><br> 	<li><span class=\"a-list-item\">Launched by the design house of Jaguar</span></li><br> 	<li><span class=\"a-list-item\">This aromatic fougere fragrance has a blend of orange, juniper berries, lavender, mandarin orange, basil, star anise, orange blossom, and white musk</span></li><br> 	<li><span class=\"a-list-item\">Long-lasting fragrance</span></li><br> 	<li><span class=\"a-list-item\">Keeps perspiration and body odor at bay</span></li><br> 	<li><span class=\"a-list-item\">Amazing fragrance that keeps you fresh and rejuvenated</span></li><br> 	<li><span class=\"a-list-item\">Size : 150 ml</span></li><br> 	<li><span class=\"a-list-item\">Suitable For : Men</span></li><br></ul><br></div>',NULL,NULL,'-vhcax',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-23 07:40:52'),(451,'BEAUTY CUTE MEN Body Spray','admin',9,17,NULL,NULL,1,'883','884','youtube',NULL,'velburry','<strong>Article no: 3028</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i3.5ea2586epqKZ6H\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Material: aluminium cans</li><br> 	<li class=\"\">The fragrance can last long time.</li><br> 	<li class=\"\">Top-quality, and reasonable price</li><br> 	<li class=\"\">The perfume is, not to stimulate the skin</li><br> 	<li class=\"\"> Great idea for promotion and gift</li><br> 	<li class=\"\">Long-lasting fragrance,made of high quality perfume</li><br></ul><br></div><br></div><br></div>',599.00,599.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'BEAUTY CUTE MEN Body Spray','<strong>Article no: 3028</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i3.5ea2586epqKZ6H\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Material: aluminium cans</li><br> 	<li class=\"\">The fragrance can last long time.</li><br> 	<li class=\"\">Top-quality, and reasonable price</li><br> 	<li class=\"\">The perfume is, not to stimulate the skin</li><br> 	<li class=\"\"> Great idea for promotion and gift</li><br> 	<li class=\"\">Long-lasting fragrance,made of high quality perfume</li><br></ul><br></div><br></div><br></div>',NULL,NULL,'-jqjxi',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 06:24:56'),(452,'NIVEA Nourishing Lotion Body Milk Richly Caring For Very Dry Skin, 400ml','admin',9,24,NULL,NULL,1,'885,886','887','youtube',NULL,'velburry','<strong>Article No:1097</strong><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">The formula with Almond oil softens the skin</span></li><br> 	<li><span class=\"a-list-item\">The actual product may be different than product image</span></li><br> 	<li><span class=\"a-list-item\">Long-lasting softness and protection</span></li><br> 	<li><span class=\"a-list-item\">Give your very dry skin intensive care</span></li><br></ul>',850.00,850.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'NIVEA Nourishing Lotion Body Milk Richly Caring For Very Dry Skin, 400ml','<strong>Article No:1097</strong><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">The formula with Almond oil softens the skin</span></li><br> 	<li><span class=\"a-list-item\">The actual product may be different than product image</span></li><br> 	<li><span class=\"a-list-item\">Long-lasting softness and protection</span></li><br> 	<li><span class=\"a-list-item\">Give your very dry skin intensive care</span></li><br></ul>',NULL,NULL,'-fmmqn',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:04:49'),(453,'NIVEA Express Hydration Lotion 400ml','admin',9,24,NULL,NULL,1,'891,889,890','888','youtube',NULL,'velburry','<strong>Article No:1098</strong><br><br><b>NIVEA Express Hydration</b> Body Lotion provides your normal to dry skin with the moisture and care it needs and deserves. The formula with Sea Minerals supplies you with moisture – all day long. ... The skin is well protected from drying out, because <b>water</b> loss is reduced and the moisture level of the skin is increased.',850.00,850.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'NIVEA Express Hydration Lotion 400ml','<strong>Article No:1098</strong><br><br><b>NIVEA Express Hydration</b> Body Lotion provides your normal to dry skin with the moisture and care it needs and deserves. The formula with Sea Minerals supplies you with moisture – all day long. ... The skin is well protected from drying out, because <b>water</b> loss is reduced and the moisture level of the skin is increased.',NULL,NULL,'-5ekhc',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:09:38'),(454,'Tag Him for Men Armaf Body Spray','admin',9,17,NULL,NULL,1,'892','893','youtube',NULL,'velburry','<strong>Article no: 3029</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i0.2d0a30fcwQZl8U\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Size: 200 ml</li><br> 	<li class=\"\">Long lasting</li><br></ul><br>Sensual and bold fragranceArmaf <b>Tag Him</b> fragrance <b>body spray</b> is aromatic woody fragrance with top notes of lemon, grapefruit and lavender mingled with spicy accents of pink pepper, ginger and warm woods of cedar and vetiver and its woody and ambery. irresistible unique fragrance.<br><br></div><br></div><br></div>',599.00,599.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Tag Him for Men Armaf Body Spray','<strong>Article no: 3029</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i0.2d0a30fcwQZl8U\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">Size: 200 ml</li><br> 	<li class=\"\">Long lasting</li><br></ul><br>Sensual and bold fragranceArmaf <b>Tag Him</b> fragrance <b>body spray</b> is aromatic woody fragrance with top notes of lemon, grapefruit and lavender mingled with spicy accents of pink pepper, ginger and warm woods of cedar and vetiver and its woody and ambery. irresistible unique fragrance.<br><br></div><br></div><br></div>',NULL,NULL,'-fremz',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 06:28:41'),(455,'Johnson\'s Body Cream 24-Hour Moisture Soft','admin',9,24,NULL,NULL,1,'894,895,896,897','898','youtube',NULL,'velburry','<div class=\"d9FyLd XcVN5d\"><b>Article no: 1099</b></div><div class=\"d9FyLd XcVN5d\"><b><br></b></div><div class=\"d9FyLd XcVN5d\"><b>jOHNSONS</b>® 24-Hour Moisture&nbsp;<b>Soft Cream</b></div><br><span class=\"hgKElc\">Enriched with shea butter, this&nbsp;<b>cream</b>&nbsp;delivers 24-hour hydration to prevent dryness or dull looking skin on both your face and body. With a subtle fragrance and no greasy or oily finish, the&nbsp;<b>soft cream</b>&nbsp;is promised to give your skin a silky&nbsp;<b>smooth</b>&nbsp;touch</span>',490.00,490.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Johnson\'s Body Cream 24-Hour Moisture Soft','<div class=\"d9FyLd XcVN5d\"><b>Article no: 1099</b></div><div class=\"d9FyLd XcVN5d\"><b><br></b></div><div class=\"d9FyLd XcVN5d\"><b>jOHNSONS</b>® 24-Hour Moisture&nbsp;<b>Soft Cream</b></div><br><span class=\"hgKElc\">Enriched with shea butter, this&nbsp;<b>cream</b>&nbsp;delivers 24-hour hydration to prevent dryness or dull looking skin on both your face and body. With a subtle fragrance and no greasy or oily finish, the&nbsp;<b>soft cream</b>&nbsp;is promised to give your skin a silky&nbsp;<b>smooth</b>&nbsp;touch</span>',NULL,NULL,'-6y0nx',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:19:42'),(456,'Armaf Derby Club House Deodorant Body Spray For Men','admin',9,17,NULL,NULL,1,'899','900','youtube',NULL,'velburry','<strong>Article no: 3030</strong><br><br><strong>Description:</strong><br><br>A stunning redolence with natural notes of lavender and bergamot with a mystique heart of spices, patchouli, black woods.A stunning redolence with natural notes of lavender and bergamot with a mystique heart of spices, patchouli, black woods<br><br>• By Sterling perfumes<br><br>• Fragrance : Craze<br><br>• Gender : Men<br><br>• ML : 200',599.00,599.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Armaf Derby Club House Deodorant Body Spray For Men','<strong>Article no: 3030</strong><br><br><strong>Description:</strong><br><br>A stunning redolence with natural notes of lavender and bergamot with a mystique heart of spices, patchouli, black woods.A stunning redolence with natural notes of lavender and bergamot with a mystique heart of spices, patchouli, black woods<br><br>• By Sterling perfumes<br><br>• Fragrance : Craze<br><br>• Gender : Men<br><br>• ML : 200',NULL,NULL,'-9ne7s',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 06:31:54'),(457,'Ulric De Varens Voy For Men Deodorant Spray','admin',9,17,NULL,NULL,1,'901','902','youtube',NULL,'velburry','<strong>Article no: 3031</strong><br><div class=\"_3cFJ8l\"><strong>description:</strong></div><br><div></div><br><div class=\"_2o-xpa\"><br><div class=\"_1mXcCf RmoJUa\">Give a zesty start to your day by dabbing this fantastic perfume introduced by UDV that adds a dash of panache in a man.</div><br><div><br><ul><br> 	<li class=\"_21Ahn-\">Quantity: 150 ml</li><br> 	<li class=\"_21Ahn-\">Fragrance: Deodorant Spray</li><br> 	<li class=\"_21Ahn-\">For Men</li><br></ul><br></div><br></div>',360.00,360.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Ulric De Varens Voy For Men Deodorant Spray','<strong>Article no: 3031</strong><br><div class=\"_3cFJ8l\"><strong>description:</strong></div><br><div></div><br><div class=\"_2o-xpa\"><br><div class=\"_1mXcCf RmoJUa\">Give a zesty start to your day by dabbing this fantastic perfume introduced by UDV that adds a dash of panache in a man.</div><br><div><br><ul><br> 	<li class=\"_21Ahn-\">Quantity: 150 ml</li><br> 	<li class=\"_21Ahn-\">Fragrance: Deodorant Spray</li><br> 	<li class=\"_21Ahn-\">For Men</li><br></ul><br></div><br></div>',NULL,NULL,'-kyver',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 06:33:54'),(458,'Johnson\'s Baby Lotion 100ml','admin',9,24,NULL,NULL,1,'906,905,903,904','907','youtube',NULL,'velburry','<div><strong>Article No: 2000</strong></div><br><div></div><br><h5 class=\"d9FyLd XcVN5d\">Product <b>description</b></h5><br><span class=\"hgKElc\">Dermatologist-tested and clinically proven to be gentle and mild for your <b>babys</b> skin, the <b>lotion</b> combines <b>ingredients</b> long known to soothe and relieve your <b>babys</b> dry skin. <b>Johnsons Baby Lotion</b> is hypoallergenic and has a <b>baby</b>-fresh scent.</span>',230.00,230.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Johnson\'s Baby Lotion 100ml','<div><strong>Article No: 2000</strong></div><br><div></div><br><h5 class=\"d9FyLd XcVN5d\">Product <b>description</b></h5><br><span class=\"hgKElc\">Dermatologist-tested and clinically proven to be gentle and mild for your <b>babys</b> skin, the <b>lotion</b> combines <b>ingredients</b> long known to soothe and relieve your <b>babys</b> dry skin. <b>Johnsons Baby Lotion</b> is hypoallergenic and has a <b>baby</b>-fresh scent.</span>',NULL,NULL,'-5wdjc',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:19:58'),(459,'Johnson’s Baby Lotion 200ml','admin',9,24,NULL,NULL,1,'908','909','youtube',NULL,'velburry','<div><strong>Article No: 2001</strong></div><br><div></div><br><h5 class=\"d9FyLd XcVN5d\">Product <b>description</b></h5><br><span class=\"hgKElc\">Dermatologist-tested and clinically proven to be gentle and mild for your <b>baby’s</b> skin, the <b>lotion</b> combines <b>ingredients</b> long known to soothe and relieve your <b>baby’s</b> dry skin. <b>Johnson’s Baby Lotion</b> is hypoallergenic and has a <b>baby</b>-fresh scent.</span>',350.00,350.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Johnson’s Baby Lotion 200ml','<div><strong>Article No: 2001</strong></div><br><div></div><br><h5 class=\"d9FyLd XcVN5d\">Product <b>description</b></h5><br><span class=\"hgKElc\">Dermatologist-tested and clinically proven to be gentle and mild for your <b>baby’s</b> skin, the <b>lotion</b> combines <b>ingredients</b> long known to soothe and relieve your <b>baby’s</b> dry skin. <b>Johnson’s Baby Lotion</b> is hypoallergenic and has a <b>baby</b>-fresh scent.</span>',NULL,NULL,'-91mu7',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:20:13'),(460,'HotIce Deodorant Body Spray Passion Men','admin',9,17,NULL,NULL,1,'910','911','youtube',NULL,'velburry','<strong>Article no: 3032</strong><br><br><strong>Discreption:</strong><br><br>Hot Ice deodorant for day long freshness with a soft fragrance.<br><br>Fragrance : Attitude<br><br>Gender : Men<br><br>Hotice symbolizes the spirit of todays man: sensitive, refined, strong and romantic. This cool fragrance opens with notes of lavender, mandarin, bergamot and lemon; followed by spicy-floral tones of coriander, lily, orange blossom, juniper berries, basil, jasmine and sage. The base notes are strong dominated by sandalwood, amber, musk and rosewood.<br><br>ML : 200',460.00,460.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'HotIce Deodorant Body Spray Passion Men','<strong>Article no: 3032</strong><br><br><strong>Discreption:</strong><br><br>Hot Ice deodorant for day long freshness with a soft fragrance.<br><br>Fragrance : Attitude<br><br>Gender : Men<br><br>Hotice symbolizes the spirit of todays man: sensitive, refined, strong and romantic. This cool fragrance opens with notes of lavender, mandarin, bergamot and lemon; followed by spicy-floral tones of coriander, lily, orange blossom, juniper berries, basil, jasmine and sage. The base notes are strong dominated by sandalwood, amber, musk and rosewood.<br><br>ML : 200',NULL,NULL,'-cvoac',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 06:42:37'),(461,'Brut Original Deodorant Spray for Men','admin',9,17,NULL,NULL,1,'913','912','youtube',NULL,'velburry','<strong>Article no: 3033</strong><br><h6 class=\"a-size-base-plus a-text-bold\">product Discreption:</h6><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">The unmistakable and classic fragrance of BRUT in a Deo, for the classic BRUT proper man</span></li><br> 	<li><span class=\"a-list-item\">The Distinctive fragrance of Paris for the masculine man</span></li><br> 	<li><span class=\"a-list-item\">Brut Original is available in Eau De Toilette for men (Plexi), Eau De Toilette (Spray), After Shave (Splash-On), Cologne Splash-On, Deodorant Spray, and Roll OnBrut Deodorant Original Spray For Men, 200ml</span></li><br></ul><br><span class=\"a-list-item\">Faberge Brut Original is a refined, spicy, lavender, amber fragrance. This masculine scent possesses a blend of citrus top notes with hints of spicy woods.Long Lasting Protection. Brut’s seven unique variants provide a the long-lasting and distinctive fragrance that gives men the confidence they need throughout the whole day.</span>',499.00,499.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Brut Original Deodorant Spray for Men','<strong>Article no: 3033</strong><br><h6 class=\"a-size-base-plus a-text-bold\">product Discreption:</h6><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">The unmistakable and classic fragrance of BRUT in a Deo, for the classic BRUT proper man</span></li><br> 	<li><span class=\"a-list-item\">The Distinctive fragrance of Paris for the masculine man</span></li><br> 	<li><span class=\"a-list-item\">Brut Original is available in Eau De Toilette for men (Plexi), Eau De Toilette (Spray), After Shave (Splash-On), Cologne Splash-On, Deodorant Spray, and Roll OnBrut Deodorant Original Spray For Men, 200ml</span></li><br></ul><br><span class=\"a-list-item\">Faberge Brut Original is a refined, spicy, lavender, amber fragrance. This masculine scent possesses a blend of citrus top notes with hints of spicy woods.Long Lasting Protection. Brut’s seven unique variants provide a the long-lasting and distinctive fragrance that gives men the confidence they need throughout the whole day.</span>',NULL,NULL,'-nedt8',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 06:44:49'),(462,'Lion Star Lunch Box BC-9','admin',9,9,NULL,NULL,1,'915,916,917','914','youtube',NULL,'velburry','<strong>Article no: BC-9</strong><br><br><strong>Product description:</strong><br><br>Some different colors of lunch box BC-9 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',200.00,200.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Lunch Box BC-9','<strong>Article no: BC-9</strong><br><br><strong>Product description:</strong><br><br>Some different colors of lunch box BC-9 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-ckv1q',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 06:46:12'),(463,'Johnson’s Baby Lotion 500ml','admin',9,24,NULL,NULL,1,'918','919','youtube',NULL,'velburry','<div><strong>Article No: 2002</strong></div><br><div></div><br><h5 class=\"d9FyLd XcVN5d\">Product <b>description</b></h5><br><span class=\"hgKElc\">Dermatologist-tested and clinically proven to be gentle and mild for your <b>baby’s</b> skin, the <b>lotion</b> combines <b>ingredients</b> long known to soothe and relieve your <b>baby’s</b> dry skin. <b>Johnson’s Baby Lotion</b> is hypoallergenic and has a <b>baby</b>-fresh scent.</span>',750.00,750.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Johnson’s Baby Lotion 500ml','<div><strong>Article No: 2002</strong></div><br><div></div><br><h5 class=\"d9FyLd XcVN5d\">Product <b>description</b></h5><br><span class=\"hgKElc\">Dermatologist-tested and clinically proven to be gentle and mild for your <b>baby’s</b> skin, the <b>lotion</b> combines <b>ingredients</b> long known to soothe and relieve your <b>baby’s</b> dry skin. <b>Johnson’s Baby Lotion</b> is hypoallergenic and has a <b>baby</b>-fresh scent.</span>',NULL,NULL,'-3oh1w',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:20:36'),(464,'JOHNSON\'S baby shampoo 500ml','admin',9,19,NULL,NULL,1,'920','921','youtube',NULL,'velburry','<strong>Article No: 2003</strong><br><br><strong>Product Description:</strong><br><br><b>Johnsons</b> <sup>®</sup> <b>baby shampoo</b> gently cleanses hair &amp; scalp, but mild on eyes as pure water, tear-free and gentle to eyes. Weve taken care of babies for over 125 years. Our mild, gentle products, are great for babies and adults too',590.00,590.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'JOHNSON\'S baby shampoo 500ml','<strong>Article No: 2003</strong><br><br><strong>Product Description:</strong><br><br><b>Johnsons</b> <sup>®</sup> <b>baby shampoo</b> gently cleanses hair &amp; scalp, but mild on eyes as pure water, tear-free and gentle to eyes. Weve taken care of babies for over 125 years. Our mild, gentle products, are great for babies and adults too',NULL,NULL,'-n0va2',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:20:50'),(465,'JOHNSON\'S baby shampoo 200ml','admin',9,19,NULL,NULL,1,'923','922','youtube',NULL,'velburry','Article No: 2004<br><br><strong>Product Description:</strong><br><br><b>Johnsons</b> <sup>®</sup> <b>baby shampoo</b> gently cleanses hair &amp; scalp, but mild on eyes as pure water, tear-free and gentle to eyes. Weve taken care of babies for over 125 years. Our mild, gentle products, are great for babies and adults too.',290.00,290.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'JOHNSON\'S baby shampoo 200ml','Article No: 2004<br><br><strong>Product Description:</strong><br><br><b>Johnsons</b> <sup>®</sup> <b>baby shampoo</b> gently cleanses hair &amp; scalp, but mild on eyes as pure water, tear-free and gentle to eyes. Weve taken care of babies for over 125 years. Our mild, gentle products, are great for babies and adults too.',NULL,NULL,'-fe9xf',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:21:02'),(466,'JOHNSON\'S baby shampoo 100ml','admin',9,19,NULL,NULL,1,'925,924','926','youtube',NULL,'velburry','Article No: 2005<br><br><strong>Product Description</strong><br><br><b>Johnsons</b> <sup>®</sup> <b>baby shampoo</b> gently cleanses hair &amp; scalp, but mild on eyes as pure water, tear-free and gentle to eyes. Weve taken care of babies for over 125 years. Our mild, gentle products, are great for babies and adults too.',230.00,230.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'JOHNSON\'S baby shampoo 100ml','Article No: 2005<br><br><strong>Product Description</strong><br><br><b>Johnsons</b> <sup>®</sup> <b>baby shampoo</b> gently cleanses hair &amp; scalp, but mild on eyes as pure water, tear-free and gentle to eyes. Weve taken care of babies for over 125 years. Our mild, gentle products, are great for babies and adults too.',NULL,NULL,'-tmryw',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:21:15'),(467,'Vaseline Petroleum Jelly 100g','admin',9,24,NULL,NULL,1,'928','927','youtube',NULL,'velburry','<strong>Article No: 2006</strong><br><br><strong>Product Description</strong><br><br><b>Petroleum jelly</b> (also called <b>petrolatum</b>) is a mixture of mineral oils and waxes, which form a semisolid <b>jelly</b>-like substance. He eventually packaged this <b>jelly</b> as <b>Vaseline</b>. <b>Petroleum jellys</b> benefits come from its main ingredient <b>petroleum</b>, which helps seal your skin with a water-protective barrier.',220.00,220.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Vaseline Petroleum Jelly 100g','<strong>Article No: 2006</strong><br><br><strong>Product Description</strong><br><br><b>Petroleum jelly</b> (also called <b>petrolatum</b>) is a mixture of mineral oils and waxes, which form a semisolid <b>jelly</b>-like substance. He eventually packaged this <b>jelly</b> as <b>Vaseline</b>. <b>Petroleum jellys</b> benefits come from its main ingredient <b>petroleum</b>, which helps seal your skin with a water-protective barrier.',NULL,NULL,'-uowuo',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-11 07:18:31'),(468,'Vaseline Petroleum Jelly 50g','admin',9,24,NULL,NULL,1,'931,929,930','932','youtube',NULL,'velburry','<strong>Article No: 2007</strong><br><br><strong>Product Description:</strong><br><br><b>Vaseline</b> is the name of a popular brand of <b>petroleum jelly</b>. Its a mixture of minerals and waxes that are easily spreadable. <b>Vaseline</b> has been used for more than 140 years as a healing balm and ointment for wounds, burns, and chafed skin. <b>Petroleum</b> is the main ingredient of <b>Vaseline</b>.',150.00,150.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Vaseline Petroleum Jelly 50g','<strong>Article No: 2007</strong><br><br><strong>Product Description:</strong><br><br><b>Vaseline</b> is the name of a popular brand of <b>petroleum jelly</b>. Its a mixture of minerals and waxes that are easily spreadable. <b>Vaseline</b> has been used for more than 140 years as a healing balm and ointment for wounds, burns, and chafed skin. <b>Petroleum</b> is the main ingredient of <b>Vaseline</b>.',NULL,NULL,'-0op4z',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:26:48'),(469,'Fa Fresh Roll On Deodorant Antiperspirant','admin',9,24,NULL,NULL,1,'934','933','youtube',NULL,'velburry','<strong>Article No: 2008</strong><br><br><strong>Product Description</strong><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Skin Friendly, Quick Dry and Dermatologically Proven</span></li><br> 	<li><span class=\"a-list-item\">Modern, Unique Design in High Quality Glass Bottle</span></li><br> 	<li><span class=\"a-list-item\">Continuous and Effective 24 hour Protection</span></li><br></ul>',220.00,220.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Fa Fresh Roll On Deodorant Antiperspirant','<strong>Article No: 2008</strong><br><br><strong>Product Description</strong><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Skin Friendly, Quick Dry and Dermatologically Proven</span></li><br> 	<li><span class=\"a-list-item\">Modern, Unique Design in High Quality Glass Bottle</span></li><br> 	<li><span class=\"a-list-item\">Continuous and Effective 24 hour Protection</span></li><br></ul>',NULL,NULL,'-90nrm',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:30:58'),(470,'Gillette Shaving Foam 200ml','admin',9,19,NULL,NULL,1,NULL,'935','youtube',NULL,'velburry','<strong>Article No: 2009</strong><br><br><strong>Product Description</strong><br><br><b>Gillette Foamy</b> Sensitive Skin is lightly fragranced and provides a rich, creamy lather that spreads easily and rinses clean for that <b>Foamy</b> shave men have enjoyed for generations.',370.00,370.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Gillette Shaving Foam 200ml','<strong>Article No: 2009</strong><br><br><strong>Product Description</strong><br><br><b>Gillette Foamy</b> Sensitive Skin is lightly fragranced and provides a rich, creamy lather that spreads easily and rinses clean for that <b>Foamy</b> shave men have enjoyed for generations.',NULL,NULL,'-8pam4',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:32:15'),(471,'DENIM Original Aftershave','admin',9,24,NULL,NULL,1,'941,942,940,939','936','youtube',NULL,'velburry','<div><strong>Article No: 2010</strong></div><br><div></div><br><div class=\"d9FyLd XcVN5d\"><strong>Product Description</strong></div><br><span class=\"hgKElc\">Original <b>denim aftershave</b> is a retro classic scent that characterizes the masculine character of a man. Original <b>denim aftershave</b> is very wearable and can be worn everyday. The subtle yet strong dry down <b>fragrance</b> will last all day without irritation.</span>',450.00,450.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'DENIM Original Aftershave','<div><strong>Article No: 2010</strong></div><br><div></div><br><div class=\"d9FyLd XcVN5d\"><strong>Product Description</strong></div><br><span class=\"hgKElc\">Original <b>denim aftershave</b> is a retro classic scent that characterizes the masculine character of a man. Original <b>denim aftershave</b> is very wearable and can be worn everyday. The subtle yet strong dry down <b>fragrance</b> will last all day without irritation.</span>',NULL,NULL,'-vqurf',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:33:38'),(472,'Brylcreem Red+Green','admin',9,19,NULL,NULL,1,'945,946,943,944','948','youtube',NULL,'velburry','<strong>Article No: 2011</strong><br><br><strong>Product Description:</strong><br><br><b>Brylcreem</b>. For nearly 90 years, <b>Brylcreem</b> has been a staple in mens medicine cabinets. Its mineral oil/beeswax base provides maximum sheen and all-day hold, while keeping your hair soft and pliable. Plus, it leaves your hair smelling delightfully clean and manly.',290.00,290.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Brylcreem Red+Green','<strong>Article No: 2011</strong><br><br><strong>Product Description:</strong><br><br><b>Brylcreem</b>. For nearly 90 years, <b>Brylcreem</b> has been a staple in mens medicine cabinets. Its mineral oil/beeswax base provides maximum sheen and all-day hold, while keeping your hair soft and pliable. Plus, it leaves your hair smelling delightfully clean and manly.',NULL,NULL,'-ypp0x',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:34:13'),(473,'Gatsby Moist Treatment Hair Cream 125gm','admin',9,19,NULL,NULL,1,'950','949','youtube',NULL,'velburry','<strong>Article No: 2012</strong><br><br><b>Product Description</b><br><br><b>Gatsby</b> Moist Treatment Hair <b>Cream</b> with effective penetration and high styling ability. It helps firmly organize the hair and create long-lasting non-sticky hairstyles. Spreads well in hair keeping it soft and smooth, for easy styling.',410.00,340.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,70.00,'amount',0.00,'amount','flat_rate',0.00,0,'Gatsby Moist Treatment Hair Cream','<strong>Article No: 2012</strong><br><br><b>Product Description</b><br><br><b>Gatsby</b> Moist Treatment Hair <b>Cream</b> with effective penetration and high styling ability. It helps firmly organize the hair and create long-lasting non-sticky hairstyles. Spreads well in hair keeping it soft and smooth, for easy styling.',NULL,NULL,'-f4szr',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-21 11:00:48'),(474,'Fair & Lovely Advanced Multi Vitamin Face Cream 80g','admin',9,24,NULL,NULL,1,'952,953,954','955','youtube',NULL,'velburry','<div><strong>Article No: 2014</strong></div><br><div></div><br><div class=\"d9FyLd XcVN5d\"><strong>Product description</strong></div><br><span class=\"hgKElc\"><b>Fair</b> &amp; <b>Lovely Advanced</b> Multivitamin is a face cream with the hero ingredient of multivitamins, which are understood to work from within to give skin a blemish-free glow along with a smooth and soft texture.</span>',450.00,450.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Fair & Lovely Advanced Multi Vitamin Face Cream 80g','<div><strong>Article No: 2014</strong></div><br><div></div><br><div class=\"d9FyLd XcVN5d\"><strong>Product description</strong></div><br><span class=\"hgKElc\"><b>Fair</b> &amp; <b>Lovely Advanced</b> Multivitamin is a face cream with the hero ingredient of multivitamins, which are understood to work from within to give skin a blemish-free glow along with a smooth and soft texture.</span>',NULL,NULL,'-6fcmy',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:39:13'),(475,'Fair & Lovely Advanced Multi Vitamin Face Cream, 50g','admin',9,24,NULL,NULL,1,'956,957','958','youtube',NULL,'velburry','<div><strong>Article No: 2013</strong></div><br><div></div><br><div class=\"d9FyLd XcVN5d\"><strong>Product description</strong></div><br><span class=\"hgKElc\"><b>Fair</b> &amp; <b>Lovely Advanced</b> Multivitamin is a face cream with the hero ingredient of multivitamins, which are understood to work from within to give skin a blemish-free glow along with a smooth and soft texture.</span>',350.00,350.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Fair & Lovely Advanced Multi Vitamin Face Cream, 50g','<div><strong>Article No: 2013</strong></div><br><div></div><br><div class=\"d9FyLd XcVN5d\"><strong>Product description</strong></div><br><span class=\"hgKElc\"><b>Fair</b> &amp; <b>Lovely Advanced</b> Multivitamin is a face cream with the hero ingredient of multivitamins, which are understood to work from within to give skin a blemish-free glow along with a smooth and soft texture.</span>',NULL,NULL,'-otftx',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:39:52'),(476,'Fair & Lovely Ayurvedic Care Face Cream 50g','admin',9,24,NULL,NULL,1,'961,962','959','youtube',NULL,'velburry','<div><strong>Article No: 2015</strong></div><br><div></div><br><div class=\"d9FyLd XcVN5d\"><strong>Product description</strong></div><br><span class=\"hgKElc\">Ingredients like Lodhra, Khas &amp; Neelotpal calms &amp; soothes the skin ; 2. Manjishtha, Kesar &amp; Padmak clears marks on the skin &amp; improves complexion ; 3. Milk, Bargad &amp; wheat germ oil clears uneven skin tone. <b>Fair</b> &amp; <b>Lovely Ayurvedic</b> care <b>cream</b> is not just a <b>cream</b>, its a Golden Glow treatment.</span>',330.00,330.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Fair & Lovely Ayurvedic Care Face Cream 50g','<div><strong>Article No: 2015</strong></div><br><div></div><br><div class=\"d9FyLd XcVN5d\"><strong>Product description</strong></div><br><span class=\"hgKElc\">Ingredients like Lodhra, Khas &amp; Neelotpal calms &amp; soothes the skin ; 2. Manjishtha, Kesar &amp; Padmak clears marks on the skin &amp; improves complexion ; 3. Milk, Bargad &amp; wheat germ oil clears uneven skin tone. <b>Fair</b> &amp; <b>Lovely Ayurvedic</b> care <b>cream</b> is not just a <b>cream</b>, its a Golden Glow treatment.</span>',NULL,NULL,'-mhrsg',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:40:08'),(477,'Fair & Lovely Fairness Face Wash Fairness','admin',9,24,NULL,NULL,1,'963,964,965','966','youtube',NULL,'velburry','<div><strong>Article No: 2016</strong></div><br><div></div><br><div class=\"d9FyLd XcVN5d\"><strong>Product description</strong></div><br><span class=\"hgKElc\"><b>Fair and lovely fairness face wash</b> gives you the 3 step expert action, which cleanses, exfoliates and massages with multi vitamin formula. Removes dirt and pollution from deep within your skin with every <b>wash</b>. Exfoliates to remove dead skin cells with every <b>wash</b>. Gives you a fairer look instantly.</span>',250.00,250.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Fair & Lovely Fairness Face Wash Fairness','<div><strong>Article No: 2016</strong></div><br><div></div><br><div class=\"d9FyLd XcVN5d\"><strong>Product description</strong></div><br><span class=\"hgKElc\"><b>Fair and lovely fairness face wash</b> gives you the 3 step expert action, which cleanses, exfoliates and massages with multi vitamin formula. Removes dirt and pollution from deep within your skin with every <b>wash</b>. Exfoliates to remove dead skin cells with every <b>wash</b>. Gives you a fairer look instantly.</span>',NULL,NULL,'-rba6p',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:40:36'),(478,'Clean & Clear Essentials Foaming Facial Wash 50ml','admin',9,24,NULL,NULL,1,'968,969,970','971','youtube',NULL,'velburry','<strong>Article No: 2017</strong><br><br><strong>Product Description</strong><br><br><b>CLEAN</b> &amp; <b>CLEAR</b>® ESSENTIALS Foaming Facial <b>Cleanser</b> cleans skin and washes away problem-causing dirt, oil, and make-up to help skin stay <b>clean</b> and healthy. The rich lather is oil-free and gently removes dirt and oil without over-drying and leaves skin <b>clean</b> and refreshed.',230.00,230.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Clean & Clear Essentials Foaming Facial Wash 50ml','<strong>Article No: 2017</strong><br><br><strong>Product Description</strong><br><br><b>CLEAN</b> &amp; <b>CLEAR</b>® ESSENTIALS Foaming Facial <b>Cleanser</b> cleans skin and washes away problem-causing dirt, oil, and make-up to help skin stay <b>clean</b> and healthy. The rich lather is oil-free and gently removes dirt and oil without over-drying and leaves skin <b>clean</b> and refreshed.',NULL,NULL,'-yk2fu',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:41:40'),(479,'Clean & Clear Essentials Foaming Facial wash 100ml','admin',9,24,NULL,NULL,1,'973,974','972','youtube',NULL,'velburry','<strong>Article No: 2018</strong><br><br><b>Product Description</b><br><br><b>CLEAN</b> &amp; <b>CLEAR</b>® ESSENTIALS Foaming Facial <b>Cleanser</b> cleans skin and washes away problem-causing dirt, oil, and make-up to help skin stay <b>clean</b> and healthy. The rich lather is oil-free and gently removes dirt and oil without over-drying and leaves skin <b>clean</b> and refreshed.',330.00,330.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Clean & Clear Essentials Foaming Facial wash 100ml','<strong>Article No: 2018</strong><br><br><b>Product Description</b><br><br><b>CLEAN</b> &amp; <b>CLEAR</b>® ESSENTIALS Foaming Facial <b>Cleanser</b> cleans skin and washes away problem-causing dirt, oil, and make-up to help skin stay <b>clean</b> and healthy. The rich lather is oil-free and gently removes dirt and oil without over-drying and leaves skin <b>clean</b> and refreshed.',NULL,NULL,'-41vv4',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:41:57'),(480,'NIVEA Sparkling White Facial Form','admin',9,24,NULL,NULL,1,'976,975','977','youtube',NULL,'velburry','<div><strong>Article No: 2019</strong></div><br><div></div><br><div class=\"d9FyLd XcVN5d\"><strong>Product description</strong></div><br><span class=\"hgKElc\"><b>Nivea</b> 10x <b>Sparkling White Whitening Facial</b> Foam cleanses and brighten the <b>face</b> so that the skin looks beautiful glow. <b>Face</b> 10X brighter and black stains camouflaged in 7 days.</span>',430.00,430.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'NIVEA Sparkling White Facial Form','<div><strong>Article No: 2019</strong></div><br><div></div><br><div class=\"d9FyLd XcVN5d\"><strong>Product description</strong></div><br><span class=\"hgKElc\"><b>Nivea</b> 10x <b>Sparkling White Whitening Facial</b> Foam cleanses and brighten the <b>face</b> so that the skin looks beautiful glow. <b>Face</b> 10X brighter and black stains camouflaged in 7 days.</span>',NULL,NULL,'-gmnsc',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:42:16'),(481,'Fair & Lovely Fairness Face Wash 100g','admin',9,24,NULL,NULL,1,'982,983,981','978','youtube',NULL,'velburry','<strong>Article No: 2020</strong><br><br><b>Product Description</b><br><br><b>Fair and lovely fairness face wash</b> gives you the 3 step expert action, which cleanses, exfoliates and massages with multi vitamin formula. Removes dirt and pollution from deep within your skin with every <b>wash</b>. Exfoliates to remove dead skin cells with every <b>wash</b>. It also vitalizes the skin pores and smoothens its tone.',450.00,450.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Fair & Lovely Fairness Face Wash 100g','<strong>Article No: 2020</strong><br><br><b>Product Description</b><br><br><b>Fair and lovely fairness face wash</b> gives you the 3 step expert action, which cleanses, exfoliates and massages with multi vitamin formula. Removes dirt and pollution from deep within your skin with every <b>wash</b>. Exfoliates to remove dead skin cells with every <b>wash</b>. It also vitalizes the skin pores and smoothens its tone.',NULL,NULL,'-rpbnx',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:48:30'),(482,'Fair And Lovely BB Cream Jar','admin',9,24,NULL,NULL,1,'986,984,985','987','youtube',NULL,'velburry','<strong>Article No: 2021</strong><br><br><strong>Product Description</strong><br><br>The <b>Fair and Lovely BB</b> Cream is a <b>fairness</b> cream with a make-up finish. This expert product brings together the benefits of foundation and advanced multivitamin <b>fairness</b> cream. Its suitable for all Indian skin tones. Use it daily to hide dark spots and blemishes, and achieve a bright and fresh look every day.',450.00,450.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Fair And Lovely BB Cream Jar','<strong>Article No: 2021</strong><br><br><strong>Product Description</strong><br><br>The <b>Fair and Lovely BB</b> Cream is a <b>fairness</b> cream with a make-up finish. This expert product brings together the benefits of foundation and advanced multivitamin <b>fairness</b> cream. Its suitable for all Indian skin tones. Use it daily to hide dark spots and blemishes, and achieve a bright and fresh look every day.',NULL,NULL,'-drhu8',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:49:48'),(483,'Parachute Coconut Oil 200 ml','admin',9,19,NULL,NULL,1,'991,989,990','988','youtube',NULL,'velburry','<div><strong>Article No: 2022</strong></div><br><div></div><br><div class=\"d9FyLd XcVN5d\"><strong>Product description</strong></div><br><span class=\"hgKElc\">Let the 100% pure <b>Parachute Coconut Hair Oil</b> give you shiny, smooth, and lovely <b>hair</b> to make heads turn. This <b>hair oil</b> features Pure <b>Coconut Oil</b>, a 5-stage Purification Process, and a consistent composition to give you healthy and beautiful long locks.</span>',320.00,320.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Parachute Coconut Oil 200 ml','<div><strong>Article No: 2022</strong></div><br><div></div><br><div class=\"d9FyLd XcVN5d\"><strong>Product description</strong></div><br><span class=\"hgKElc\">Let the 100% pure <b>Parachute Coconut Hair Oil</b> give you shiny, smooth, and lovely <b>hair</b> to make heads turn. This <b>hair oil</b> features Pure <b>Coconut Oil</b>, a 5-stage Purification Process, and a consistent composition to give you healthy and beautiful long locks.</span>',NULL,NULL,'-daazz',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:53:22'),(484,'Parachute Coconut Oil 100 ml','admin',9,19,NULL,NULL,1,'994,993','992','youtube',NULL,'velburry','<div><strong>Article No: 2023</strong></div><br><div></div><br><div class=\"d9FyLd XcVN5d\"><strong>Product description</strong></div><br><span class=\"hgKElc\">Let the 100% pure <b>Parachute Coconut Hair Oil</b> give you shiny, smooth, and lovely <b>hair</b> to make heads turn. This <b>hair oil</b> features Pure <b>Coconut Oil</b>, a 5-stage Purification Process, and a consistent composition to give you healthy and beautiful long locks.</span>',250.00,250.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Parachute Coconut Oil 100 ml','<div><strong>Article No: 2023</strong></div><br><div></div><br><div class=\"d9FyLd XcVN5d\"><strong>Product description</strong></div><br><span class=\"hgKElc\">Let the 100% pure <b>Parachute Coconut Hair Oil</b> give you shiny, smooth, and lovely <b>hair</b> to make heads turn. This <b>hair oil</b> features Pure <b>Coconut Oil</b>, a 5-stage Purification Process, and a consistent composition to give you healthy and beautiful long locks.</span>',NULL,NULL,'-vydsc',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:53:35'),(485,'Parachute Coconut Oil 500 ml','admin',9,19,NULL,NULL,1,'995,996','997','youtube',NULL,'velburry','<div>Article No: 2024</div><br><div></div><br><div class=\"d9FyLd XcVN5d\"><strong>Product description</strong></div><br><span class=\"hgKElc\">Let the 100% pure <b>Parachute Coconut Hair Oil</b> give you shiny, smooth, and lovely <b>hair</b> to make heads turn. This <b>hair oil</b> features Pure <b>Coconut Oil</b>, a 5-stage Purification Process, and a consistent composition to give you healthy and beautiful long locks.</span>',600.00,600.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Parachute Coconut Oil 500 ml','<div>Article No: 2024</div><br><div></div><br><div class=\"d9FyLd XcVN5d\"><strong>Product description</strong></div><br><span class=\"hgKElc\">Let the 100% pure <b>Parachute Coconut Hair Oil</b> give you shiny, smooth, and lovely <b>hair</b> to make heads turn. This <b>hair oil</b> features Pure <b>Coconut Oil</b>, a 5-stage Purification Process, and a consistent composition to give you healthy and beautiful long locks.</span>',NULL,NULL,'-wzmme',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 06:53:51'),(486,'Closeup Diamond Attraction Toothpaste','admin',9,24,NULL,NULL,1,'1000,998,999','1001','youtube',NULL,'velburry','<strong>Article No: 2025</strong><br><br><strong>Product Description</strong><br><br><b>Closeup</b> White <b>Attraction Diamond</b> gel toothpaste is co-created with cosmetic dentists to give you the power of <b>attraction</b> just when you need it. With its revolutionary Blue Light Technology, it makes your teeth visibly whiter* in one brush.',300.00,300.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Closeup Diamond Attraction Toothpaste','<strong>Article No: 2025</strong><br><br><strong>Product Description</strong><br><br><b>Closeup</b> White <b>Attraction Diamond</b> gel toothpaste is co-created with cosmetic dentists to give you the power of <b>attraction</b> just when you need it. With its revolutionary Blue Light Technology, it makes your teeth visibly whiter* in one brush.',NULL,NULL,'-zhv4g',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 07:04:54'),(487,'Subaru Black Hair Shampoo 200ml','admin',9,19,NULL,NULL,1,'1003,1004,1005','1002','youtube',NULL,'velburry','<strong>Article No: 2026</strong><br><br><strong>Product description</strong><br><br><b>Subaru</b> Black Hair <b>Shampoo</b> is a kind of <b>shampoo</b> which can dye your hair into black in 5 mins and specially designed to make your hair black shinning just through the ordinary process of washing hair at bathroom. Black Hair <b>Shampoo</b> in non-toxic with high technology. It is also nourishes, protects and repairs scalp.',360.00,360.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Subaru Black Hair Shampoo 200ml','<strong>Article No: 2026</strong><br><br><strong>Product description</strong><br><br><b>Subaru</b> Black Hair <b>Shampoo</b> is a kind of <b>shampoo</b> which can dye your hair into black in 5 mins and specially designed to make your hair black shinning just through the ordinary process of washing hair at bathroom. Black Hair <b>Shampoo</b> in non-toxic with high technology. It is also nourishes, protects and repairs scalp.',NULL,NULL,'-qfvtv',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 07:00:39'),(488,'Subaru Black Hair Shampoo 400ml','admin',9,19,NULL,NULL,1,'1007,1008,1006','1009','youtube',NULL,'velburry','<strong>Article No: 2027</strong><br><br><strong>Product Description</strong><br><br><b>Subaru</b> Black Hair <b>Shampoo</b> is a kind of <b>shampoo</b> which can dye your hair into black in 5 mins and specially designed to make your hair black shinning just through the ordinary process of washing hair at bathroom. Black Hair <b>Shampoo</b> in non-toxic with high technology. It is also nourishes, protects and repairs scalp.',450.00,450.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Subaru Black Hair Shampoo 400ml','<strong>Article No: 2027</strong><br><br><strong>Product Description</strong><br><br><b>Subaru</b> Black Hair <b>Shampoo</b> is a kind of <b>shampoo</b> which can dye your hair into black in 5 mins and specially designed to make your hair black shinning just through the ordinary process of washing hair at bathroom. Black Hair <b>Shampoo</b> in non-toxic with high technology. It is also nourishes, protects and repairs scalp.',NULL,NULL,'-3kta0',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 07:00:55'),(489,'NIVEA SOFT MOISTURIZING CREAM 100 ml','admin',9,24,NULL,NULL,1,'1013,1011,1012','1010','youtube',NULL,'velburry','<strong>Article No: 2028</strong><br><br><strong>Product Description</strong><br><br><b>Nivea Soft</b> Mix it <b>100ml</b> moisturizing <b>cream</b>, suitable for all skin types, face and body, moisturizing. Thanks to its formula enriched with Jojoba Oil and Vitamin E. Take the exuberant scent of exotic fruits, make life sparkling! Light, it is absorbed immediately and gives an immediate sensation of freshness.',370.00,370.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'NIVEA SOFT MOISTURIZING CREAM 100 ml','<strong>Article No: 2028</strong><br><br><strong>Product Description</strong><br><br><b>Nivea Soft</b> Mix it <b>100ml</b> moisturizing <b>cream</b>, suitable for all skin types, face and body, moisturizing. Thanks to its formula enriched with Jojoba Oil and Vitamin E. Take the exuberant scent of exotic fruits, make life sparkling! Light, it is absorbed immediately and gives an immediate sensation of freshness.',NULL,NULL,'-wq56v',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:15','2021-01-13 07:01:14'),(490,'Nivea Soft Cream 200ml','admin',9,24,NULL,NULL,1,'267,266,265','264','youtube',NULL,'velburry','<strong>Article No: 2029</strong><br><br><strong>Product Description</strong><br><br>Enriched with Jojoba oil and Vitamin E, <b>NIVEA Soft</b> is an invigorating and fast absorbing moisture <b>cream</b> that refreshes your skin, leaving a unique fragrance and making it smooth, <b>soft</b>, supple and healthy. <b>Use</b> it on your dry hands and chapped feet during the chilled winter days to obtain great results.',499.00,499.00,0,'[]','[]','[]','[]',0,1,1,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Nivea Soft Cream 200ml','<strong>Article No: 2029</strong><br><br><strong>Product Description</strong><br><br>Enriched with Jojoba oil and Vitamin E, <b>NIVEA Soft</b> is an invigorating and fast absorbing moisture <b>cream</b> that refreshes your skin, leaving a unique fragrance and making it smooth, <b>soft</b>, supple and healthy. <b>Use</b> it on your dry hands and chapped feet during the chilled winter days to obtain great results.',NULL,NULL,'-q9rqs',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:38:06'),(493,'Lion Star Lunch Box BC-17','admin',9,49,NULL,NULL,1,'276,275,274','273','youtube',NULL,'velburry','<strong>Article no: BC-17</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box BC-17 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',490.00,490.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Lunch Box BC-17','<strong>Article no: BC-17</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box BC-17 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-9oudv',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:23:15'),(494,'Lion Star Lunch Box FB-1','admin',9,49,NULL,NULL,1,'279,278,277','280','youtube',NULL,'velburry','<strong>Article no: FB-1</strong><br><br><strong>Product description:</strong><br><br>Some different colors of lunch box FB-1 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',270.00,270.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Lunch Box FB-1','<strong>Article no: FB-1</strong><br><br><strong>Product description:</strong><br><br>Some different colors of lunch box FB-1 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-j7rlr',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:23:23'),(495,'Lion Star Lunch Box KB-1','admin',9,49,NULL,NULL,1,'283,282,281','284','youtube',NULL,'velburry','<strong>Article no: KB-1</strong><br><br>Some different colors of lunch box KB-1 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',200.00,200.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Lunch Box KB-1','<strong>Article no: KB-1</strong><br><br>Some different colors of lunch box KB-1 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-j2vd0',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:23:31'),(496,'Lion Star Lunch Box MC-4','admin',9,49,NULL,NULL,1,'288,287,286','285','youtube',NULL,'velburry','<strong>Article no: MC-4</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box MC-4 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',200.00,200.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Lunch Box MC-4','<strong>Article no: MC-4</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box MC-4 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-koykv',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:23:38'),(497,'Lion Star Lunch Box MC-6','admin',9,49,NULL,NULL,1,'293,292,291','290','youtube',NULL,'velburry','<strong>Article no: MC-6</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box MC-6 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',190.00,190.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Lunch Box MC-6','<strong>Article no: MC-6</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box MC-6 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-qy9ro',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:23:45'),(498,'Lion Star Lunch Box MC-8','admin',9,49,NULL,NULL,1,'297,296,295','294','youtube',NULL,'velburry','<strong>Article no: MC-8</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box MC-8 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',170.00,170.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Lunch Box MC-8','<strong>Article no: MC-8</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box MC-8 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-y3hwk',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:23:56'),(499,'Lion Star Lunch Box MC-9','admin',9,49,NULL,NULL,1,'302,301,300','299','youtube',NULL,'velburry','<strong>Article no: MC-9</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box MC-9 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',190.00,190.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Lunch Box MC-9','<strong>Article no: MC-9</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box MC-9 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-2enuu',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:24:03'),(500,'Lion Star Lunch Box MC-24','admin',9,49,NULL,NULL,1,'306,305,304','303','youtube',NULL,'velburry','<strong>Article no: MC-24</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box MC-24 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',250.00,250.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Lunch Box MC-24','<strong>Article no: MC-24</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box MC-24 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-4ayis',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:24:10'),(501,'Lion Star Lunch Box MC-26','admin',9,49,NULL,NULL,1,'310,309,308','307','youtube',NULL,'velburry','<strong>Article no: MC-26</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box MC-26 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',250.00,250.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Lunch Box MC-26','<strong>Article no: MC-26</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box MC-26 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-ofoir',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:24:20'),(502,'Lion Star Lunch Box MC-32','admin',9,49,NULL,NULL,1,'314,313,312','311','youtube',NULL,'velburry','<strong>Article no: MC-32</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box MC-32 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',190.00,190.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Lunch Box MC-32','<strong>Article no: MC-32</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box MC-32 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-patkq',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:24:29'),(503,'Lion Star Lunch Box MC-33','admin',9,49,NULL,NULL,1,'318,317,316','315','youtube',NULL,'velburry','<strong>Article no: MC-33</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box MC-33 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',260.00,260.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Lunch Box MC-33','<strong>Article no: MC-33</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box MC-33 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-g92nh',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:24:36'),(504,'Lion Star Lunch Box MC-36','admin',9,49,NULL,NULL,1,'322,321,320','319','youtube',NULL,'velburry','<strong>Article no: MC-36</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box MC-36 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',210.00,210.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Lunch Box MC-36','<strong>Article no: MC-36</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box MC-36 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-rpvfa',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:24:46'),(505,'Lion Star Lunch Box SB-13','admin',9,49,NULL,NULL,1,'323,324,325','330','youtube',NULL,'velburry','<strong>Article no: SB-13</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box SB-13 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',300.00,300.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Lunch Box SB-13','<strong>Article no: SB-13</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box SB-13 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-ne2m0',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:27:18'),(506,'Lion Star Lunch Box SB-14','admin',9,49,NULL,NULL,1,'329,328,327','326','youtube',NULL,'velburry','<strong>Article no: SB-14</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box SB-14 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',200.00,200.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Lunch Box SB-14','<strong>Article no: SB-14</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box SB-14 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-5vyzv',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:27:27'),(507,'Lion Star Lunch Box SB-32','admin',9,49,NULL,NULL,1,'336,335,334','333','youtube',NULL,'velburry','<strong>Article no: SB-32</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box SB-32 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',260.00,260.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Lunch Box SB-32','<strong>Article no: SB-32</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box SB-32 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-malpa',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:27:37'),(508,'Lion Star Lunch Box SB-33','admin',9,49,NULL,NULL,1,'337,338,339','340','youtube',NULL,'velburry','<strong>Article no: SB-33</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box SB-33 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',290.00,290.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Lunch Box SB-33','<strong>Article no: SB-33</strong><br><br><strong>Product Description:</strong><br><br>Some different colors of lunch box SB-33 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-l5fyk',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:27:44'),(509,'Lion Star Water Bottle HU-1','admin',9,48,NULL,NULL,1,'342','343','youtube',NULL,'velburry','<strong>Article no: HU-1</strong><br><br><strong>Product Description:</strong><br><br>Two gorgeous and attractive colors of water bottle HU-1 are available here:<br><ul><br> 	<li>Green</li><br> 	<li>Orange</li><br></ul>',840.00,840.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Water Bottle HU-1','<strong>Article no: HU-1</strong><br><br><strong>Product Description:</strong><br><br>Two gorgeous and attractive colors of water bottle HU-1 are available here:<br><ul><br> 	<li>Green</li><br> 	<li>Orange</li><br></ul>',NULL,NULL,'-mwjha',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:27:53'),(510,'Lion Star Water Bottle HU-2','admin',9,48,NULL,NULL,1,'344','345','youtube',NULL,'velburry','<strong>Article no: HU-2</strong><br><br><strong>Product Description:</strong><br><br>Two gorgeous and attractive colors of water bottle HU-2 are available here:<br><ul><br> 	<li>Green</li><br> 	<li>Orange</li><br></ul>',1000.00,1000.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Water Bottle HU-2','<strong>Article no: HU-2</strong><br><br><strong>Product Description:</strong><br><br>Two gorgeous and attractive colors of water bottle HU-2 are available here:<br><ul><br> 	<li>Green</li><br> 	<li>Orange</li><br></ul>',NULL,NULL,'-ngtin',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:28:02'),(511,'Lion Star Water Bottle HU-3','admin',9,48,NULL,NULL,1,'346','347','youtube',NULL,'velburry','<strong>Article no: HU-3</strong><br><br><strong>Product Description:</strong><br><br>Two gorgeous and attractive colors of water bottle HU-3 are available here:<br><ul><br> 	<li>Green</li><br> 	<li>Orange</li><br></ul>',910.00,910.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Water Bottle HU-3','<strong>Article no: HU-3</strong><br><br><strong>Product Description:</strong><br><br>Two gorgeous and attractive colors of water bottle HU-3 are available here:<br><ul><br> 	<li>Green</li><br> 	<li>Orange</li><br></ul>',NULL,NULL,'-qzvyo',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:28:10'),(512,'Lion Star Water Bottle HU-4','admin',9,48,NULL,NULL,1,'3,4','3','youtube',NULL,'velburry','<strong>Article no: HU-4</strong><br><br><strong>Product Description:</strong><br><br>Two gorgeous and attractive colors of water bottle HU-4 are available here:<br><ul><br> 	<li>Green</li><br> 	<li>Orange</li><br></ul>',1140.00,1140.00,0,'[]','[]','[]','[]',0,1,0,0,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,1,'Lion Star Water Bottle HU-4','<strong>Article no: HU-4</strong><br><br><strong>Product Description:</strong><br><br>Two gorgeous and attractive colors of water bottle HU-4 are available here:<br><ul><br> 	<li>Green</li><br> 	<li>Orange</li><br></ul>',NULL,NULL,'-bwq24',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-21 09:47:07'),(513,'Lion Star Water Bottle HU-5','admin',9,48,NULL,NULL,1,'7,8','5','youtube',NULL,'velburry','<strong>Article no: HU-5</strong><br><br><strong>Product Description:</strong><br><br>Two gorgeous and attractive colors of water bottle HU-5 are available here:<br><ul><br> 	<li>Green</li><br> 	<li>Orange</li><br></ul>',720.00,720.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Water Bottle HU-5','<strong>Article no: HU-5</strong><br><br><strong>Product Description:</strong><br><br>Two gorgeous and attractive colors of water bottle HU-5 are available here:<br><ul><br> 	<li>Green</li><br> 	<li>Orange</li><br></ul>',NULL,NULL,'-e09f0',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:15:49'),(514,'Lion Star Water Bottle HU-8','admin',9,48,NULL,NULL,1,'10,9','10','youtube',NULL,'velburry','<strong>Article no: HU-8</strong><br><br><strong>Product Description:</strong><br><br>Two gorgeous and attractive colors of water bottle HU-8 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Red</li><br></ul>',660.00,660.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Water Bottle HU-8','<strong>Article no: HU-8</strong><br><br><strong>Product Description:</strong><br><br>Two gorgeous and attractive colors of water bottle HU-8 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Red</li><br></ul>',NULL,NULL,'-hrlf8',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:16:00'),(515,'Lion Star Water Bottle HU-9','admin',9,48,NULL,NULL,1,'12,11','11','youtube',NULL,'velburry','<strong>Article no: HU-9</strong><br><br><strong>Product Description:</strong><br><br>Two gorgeous and attractive colors of water bottle HU-9 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Red</li><br></ul>',850.00,850.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Water Bottle HU-9','<strong>Article no: HU-9</strong><br><br><strong>Product Description:</strong><br><br>Two gorgeous and attractive colors of water bottle HU-9 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Red</li><br></ul>',NULL,NULL,'-tva6n',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:16:11'),(516,'Lion Star Water Bottle HU-13','admin',9,48,NULL,NULL,1,'15,14,13','15','youtube',NULL,'velburry','<strong>Article no: HU-13</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-13 are available here:<br><ul><br> 	<li>Pink</li><br> 	<li>Purple</li><br> 	<li>Red</li><br></ul>',640.00,640.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Water Bottle HU-13','<strong>Article no: HU-13</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-13 are available here:<br><ul><br> 	<li>Pink</li><br> 	<li>Purple</li><br> 	<li>Red</li><br></ul>',NULL,NULL,'-iiwju',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:16:26'),(517,'Lion Star Water Bottle HU-14','admin',9,48,NULL,NULL,1,'18,19,17,16','19','youtube',NULL,'velburry','<strong>Article no: HU-14</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-14 are available here:<br><ul><br> 	<li>Green</li><br> 	<li>Blue</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',670.00,670.00,0,'[]','[]','[]','[]',0,1,0,0,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,1,'Lion Star Water Bottle HU-14','<strong>Article no: HU-14</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-14 are available here:<br><ul><br> 	<li>Green</li><br> 	<li>Blue</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-ou33w',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:16:38'),(518,'Lion Star Water Bottle HU-15','admin',9,48,NULL,NULL,1,'22,23,20,21','22','youtube',NULL,'velburry','<strong>Article no: HU-15</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-15 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',710.00,710.00,0,'[]','[]','[]','[]',0,1,1,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Water Bottle HU-15','<strong>Article no: HU-15</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-15 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-qsngg',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:16:47'),(519,'Lion Star Water Bottle HU-16','admin',9,48,NULL,NULL,1,'26,27,25,24','26','youtube',NULL,'velburry','<strong>Article no: HU-16</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-16 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',740.00,740.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Water Bottle HU-16','<strong>Article no: HU-16</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-16 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-ab9ul',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:19:11'),(520,'Lion Star Water Bottle HU-17','admin',9,48,NULL,NULL,1,'29,30,28,31','31','youtube',NULL,'velburry','<strong>Article no: HU-17</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-17 are available here:<br><ul><br> 	<li>Red</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',570.00,570.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Water Bottle HU-17','<strong>Article no: HU-17</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-17 are available here:<br><ul><br> 	<li>Red</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-subnz',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:19:18'),(521,'Lion Star Water Bottle HU-18','admin',9,48,NULL,NULL,1,'35,33,34,32','35','youtube',NULL,'velburry','<strong>Article no: HU-18</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-18 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',620.00,620.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Water Bottle HU-18','<strong>Article no: HU-18</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-18 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-jc28k',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:19:28'),(522,'Lion Star Water Bottle HU-20','admin',9,48,NULL,NULL,1,'39,36,37,38','39','youtube',NULL,'velburry','<strong>Article no: HU-20</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-20 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',530.00,530.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Water Bottle HU-20','<strong>Article no: HU-20</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-20 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-s28eq',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:19:37'),(523,'Lion Star Water Bottle HU-21','admin',9,48,NULL,NULL,1,'41,40,42','42','youtube',NULL,'velburry','<strong>Article no: HU-21</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-21 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Red</li><br></ul>',870.00,870.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Water Bottle HU-21','<strong>Article no: HU-21</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-21 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Red</li><br></ul>',NULL,NULL,'-i4yb7',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:19:45'),(524,'Lion Star Water Bottle HU-22','admin',9,48,NULL,NULL,1,'45,44,43','44','youtube',NULL,'velburry','<strong>Article no: HU-22</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-22 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Red</li><br></ul>',1000.00,1000.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Water Bottle HU-22','<strong>Article no: HU-22</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-22 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Red</li><br></ul>',NULL,NULL,'-4imcc',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:19:51'),(525,'Lion Star Water Bottle HU-24','admin',9,48,NULL,NULL,1,'49,46,47,48','49','youtube',NULL,'velburry','<strong>Article no: HU-24</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-24 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',550.00,550.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Water Bottle HU-24','<strong>Article no: HU-24</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-24 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-qeyqk',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:20:01'),(526,'Lion Star Water Bottle HU-25','admin',9,48,NULL,NULL,1,'53,52,50,51','52','youtube',NULL,'velburry','<strong>Article no: HU-25</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-25 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',570.00,570.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Water Bottle HU-25','<strong>Article no: HU-25</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-25 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-d4pcf',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:20:13'),(527,'Lion Star Water Bottle HU-27','admin',9,48,NULL,NULL,1,'54,55,56,57','54','youtube',NULL,'velburry','<strong>Article no: HU-27</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-27 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',500.00,500.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Water Bottle HU-27','<strong>Article no: HU-27</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-27 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-vdvot',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:20:25'),(528,'Lion Star Water Bottle HU-28','admin',9,48,NULL,NULL,1,'58,60,62,61','61','youtube',NULL,'velburry','<strong>Article no: HU-28</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-28 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',640.00,640.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Water Bottle HU-28','<strong>Article no: HU-28</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-28 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-qitd8',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:20:33'),(529,'Lion Star Water Bottle HU-29','admin',9,48,NULL,NULL,1,'63,66,65,64','64','youtube',NULL,'velburry','<strong>Article no: HU-29</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-29 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',660.00,660.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Water Bottle HU-29','<strong>Article no: HU-29</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-29 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-mo1zh',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:20:42'),(530,'Lion Star Water Bottle HU-36','admin',9,48,NULL,NULL,1,'69,70,67,68','69','youtube',NULL,'velburry','<strong>Article no: HU-36</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-36 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',580.00,580.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Water Bottle HU-36','<strong>Article no: HU-36</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle HU-36 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-ek0ep',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:20:49'),(531,'Pair Of Lion Star Water Bottle & Lunch Box SB-4','admin',9,50,NULL,NULL,1,'71,72,73,74','71','youtube',NULL,'velburry','<strong>Article no: SB-4</strong><br><br><strong>Product Description:</strong><br><br>Vel burry Offers you a pair of Lion star water bottle &amp; lunch box at a reasonable price.<br><br>Some gorgeous and attractive colors of water bottle &amp; Lunch Box SB-4 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',1030.00,1030.00,0,'[]','[]','[]','[]',0,1,1,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Pair Of Lion Star Water Bottle & Lunch Box SB-4','<strong>Article no: SB-4</strong><br><br><strong>Product Description:</strong><br><br>Vel burry Offers you a pair of Lion star water bottle &amp; lunch box at a reasonable price.<br><br>Some gorgeous and attractive colors of water bottle &amp; Lunch Box SB-4 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-s2dqm',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:21:15'),(532,'Lion Star Water Bottle SB-12','admin',9,50,NULL,NULL,1,'1014,1015,1016','1017','youtube',NULL,'velburry','<strong>Article no: SB-12</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle SB-12 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',550.00,550.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lion Star Water Bottle SB-12','<strong>Article no: SB-12</strong><br><br><strong>Product Description:</strong><br><br>Some gorgeous and attractive colors of water bottle SB-12 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-gbla4',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:21:23'),(533,'Pair Of Lion Star Water Bottle & Lunch Box SB-5','admin',9,50,NULL,NULL,1,'80,81,79','80','youtube',NULL,'velburry','<strong>Article no: SB-5</strong><br><br><strong>Product Description:</strong><br><br>Vel burry Offers you a pair of Lion star water bottle &amp; lunch box at a reasonable price.<br><br>Some gorgeous and attractive colors of water bottle &amp; Lunch Box SB-5 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br></ul>',770.00,770.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Pair Of Lion Star Water Bottle & Lunch Box SB-5','<strong>Article no: SB-5</strong><br><br><strong>Product Description:</strong><br><br>Vel burry Offers you a pair of Lion star water bottle &amp; lunch box at a reasonable price.<br><br>Some gorgeous and attractive colors of water bottle &amp; Lunch Box SB-5 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br></ul>',NULL,NULL,'-umxb1',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:21:29'),(534,'Pair Of Lion Star Water Bottle & Lunch Box SB-21','admin',9,50,NULL,NULL,1,'82,83,85,84','82','youtube',NULL,'velburry','<strong>Article no: SB-21</strong><br><br><strong>Product Description:</strong><br><br>Vel burry Offers you a pair of Lion star water bottle &amp; lunch box at a reasonable price.<br><br>Some gorgeous and attractive colors of water bottle &amp; Lunch Box SB-21 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',700.00,700.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Pair Of Lion Star Water Bottle & Lunch Box SB-21','<strong>Article no: SB-11</strong><br><br><strong>Product Description:</strong><br><br>Vel burry Offers you a pair of Lion star water bottle &amp; lunch box at a reasonable price.<br><br>Some gorgeous and attractive colors of water bottle &amp; Lunch Box SB-11 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-i4cau',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:22:51'),(535,'Pair Of Lion Star Water Bottle & Lunch Box SB-11','admin',9,50,NULL,NULL,1,'86,87,88,89','86','youtube',NULL,'velburry','<strong>Article no: SB-11</strong><br><br><strong>Product Description:</strong><br><br>Vel burry Offers you a pair of Lion star water bottle &amp; lunch box at a reasonable price.<br><br>Some gorgeous and attractive colors of water bottle &amp; Lunch Box SB-11 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',700.00,700.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Pair Of Lion Star Water Bottle & Lunch Box SB-11','<strong>Article no: SB-11</strong><br><br><strong>Product Description:</strong><br><br>Vel burry Offers you a pair of Lion star water bottle &amp; lunch box at a reasonable price.<br><br>Some gorgeous and attractive colors of water bottle &amp; Lunch Box SB-11 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-i76qu',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:22:58'),(536,'Pair Of Lion Star Water Bottle & Lunch Box SB-22','admin',9,50,NULL,NULL,1,'90,91,92,93','90','youtube',NULL,'velburry','<strong>Article no: SB-22</strong><br><br><strong>Product Description:</strong><br><br>Vel burry Offers you a pair of Lion star water bottle &amp; lunch box at a reasonable price.<br><br>Some gorgeous and attractive colors of water bottle &amp; Lunch Box SB-22 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',700.00,700.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Pair Of Lion Star Water Bottle & Lunch Box SB-22','<strong>Article no: SB-22</strong><br><br><strong>Product Description:</strong><br><br>Vel burry Offers you a pair of Lion star water bottle &amp; lunch box at a reasonable price.<br><br>Some gorgeous and attractive colors of water bottle &amp; Lunch Box SB-22 are available here:<br><ul><br> 	<li>Blue</li><br> 	<li>Green</li><br> 	<li>Pink</li><br> 	<li>Purple</li><br></ul>',NULL,NULL,'-cjdxs',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 07:23:06'),(537,'Nivea Cold Cream 60ml','admin',9,24,NULL,NULL,1,'94,97,95,96','94','youtube',NULL,'velburry','<strong>Article no: 2030</strong><br><br><strong>Product description:</strong><br><br><b>Nivea Cold Cream</b> contains skin-related Eucerin a unique moisturizing ingredient. The best part is that it is soft and a creamy multipurpose <b>cream</b>. As a result, it can be used as a moisturizer during all seasons. After using it, the skin soothes up and gets moisturized which lasts for long time.<br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Nivea creme, all season multipurpose cream, 60ml</span></li><br> 	<li><span class=\"a-list-item\">Pamper your skin withthe formula of Nivea creme which not only cares but also protects your skin leaving it healthy and moisturized</span></li><br> 	<li><span class=\"a-list-item\">Skin compatibility dermatologically approved</span></li><br></ul>',290.00,290.00,0,'[]','[]','[]','[]',0,1,1,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Nivea Cold Cream 60ml','<strong>Article no: 2030</strong><br><br><strong>Product description:</strong><br><br><b>Nivea Cold Cream</b> contains skin-related Eucerin a unique moisturizing ingredient. The best part is that it is soft and a creamy multipurpose <b>cream</b>. As a result, it can be used as a moisturizer during all seasons. After using it, the skin soothes up and gets moisturized which lasts for long time.<br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Nivea creme, all season multipurpose cream, 60ml</span></li><br> 	<li><span class=\"a-list-item\">Pamper your skin withthe formula of Nivea creme which not only cares but also protects your skin leaving it healthy and moisturized</span></li><br> 	<li><span class=\"a-list-item\">Skin compatibility dermatologically approved</span></li><br></ul>',NULL,NULL,'-13pgt',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 04:53:58'),(538,'Nivea Cold Cream 150ml','admin',9,24,NULL,NULL,1,'100','100','youtube',NULL,'velburry','<strong>Article No: 2031</strong><br><br><strong>Product Description</strong><br><br><b>Nivea Cold Cream</b> contains skin-related Eucerin a unique moisturising ingredient. The best part is that it is soft and a creamy multipurpose <b>cream</b>. As a result, it can be used as a moisturizer during all seasons. After using it, the skin soothes up and gets moisturized which lasts for long time',370.00,370.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Nivea Cold Cream 150ml','<strong>Article No: 2031</strong><br><br><strong>Product Description</strong><br><br><b>Nivea Cold Cream</b> contains skin-related Eucerin a unique moisturising ingredient. The best part is that it is soft and a creamy multipurpose <b>cream</b>. As a result, it can be used as a moisturizer during all seasons. After using it, the skin soothes up and gets moisturized which lasts for long time',NULL,NULL,'-on6fm',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:04:12'),(539,'Pond’s White Beauty BB+ Fairness Cream','admin',9,24,NULL,NULL,1,'104,103,102,105','101','youtube',NULL,'velburry','<strong>Article no: 2044</strong><br><br><strong>Product description:</strong><br><br>This <b>BB</b> + <b>Cream</b> is a fairness <b>cream</b> and a foundation, all-in-one. It protects against UVA and UVB rays while working from inside to lighten dark spots and circles. The secret to spotless pinkish <b>white</b> skin lies in its Pro-Vitamin B3.<br><br><strong>• Instant natural coverage<span id=\"more-150402\"></span><br>• Non-pores clogging<br>• Light, non-oily texture<br>• Lightens from within epidermis level<br>• Reduces dark spots<br>• Evens skin tone<br>• SPF 30 PA++ protects from UVA, UVB, and visible light</strong>',450.00,450.00,0,'[]','[]','[]','[]',0,1,1,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Pond’s White Beauty BB+ Fairness Cream','<strong>Article no: 2044</strong><br><br><strong>Product description:</strong><br><br>This <b>BB</b> + <b>Cream</b> is a fairness <b>cream</b> and a foundation, all-in-one. It protects against UVA and UVB rays while working from inside to lighten dark spots and circles. The secret to spotless pinkish <b>white</b> skin lies in its Pro-Vitamin B3.<br><br><strong>• Instant natural coverage<span id=\"more-150402\"></span><br>• Non-pores clogging<br>• Light, non-oily texture<br>• Lightens from within epidermis level<br>• Reduces dark spots<br>• Evens skin tone<br>• SPF 30 PA++ protects from UVA, UVB, and visible light</strong>',NULL,NULL,'-kgzgf',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:04:30'),(540,'Dove Beauty Cream 75ml','admin',9,24,NULL,NULL,1,'107,108,109','106','youtube',NULL,'velburry','<strong>Article No: 2032</strong><br><br><strong>Product Description</strong><br><br>With a rich moisturising formula, Dove Beauty Cream nourishes <b>skin</b> to leave it looking and feeling beautiful. Rich doesnt mean heavy though – this lightweight moisturising cream leaves no greasiness or oily residue behind – so its perfect for all <b>skin</b> types, including oily <b>skin</b>.',270.00,270.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Dove Beauty Cream 75ml','<strong>Article No: 2032</strong><br><br><strong>Product Description</strong><br><br>With a rich moisturising formula, Dove Beauty Cream nourishes <b>skin</b> to leave it looking and feeling beautiful. Rich doesnt mean heavy though – this lightweight moisturising cream leaves no greasiness or oily residue behind – so its perfect for all <b>skin</b> types, including oily <b>skin</b>.',NULL,NULL,'-sg77k',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:04:50'),(541,'Dove Silky Nourishment Body Cream 300ml','admin',9,24,NULL,NULL,1,'113,112,111','110','youtube',NULL,'velburry','<strong>Article No: 2033</strong><br><br><strong>Product Description</strong><br><br><b>Dove Body Lotion</b> Moisturising <b>Cream Silk</b>. <b>Dove Body Silk Body Cream</b> is a moisturising <b>cream</b> for dry skin. It leaves you with nourished and <b>silky</b> skin, and contains <b>Doves</b> unique DeepCare Complex, a combination of skin natural nutrients and rich essential oils, to help gradually improve skin, starting deep down',490.00,490.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Dove Silky Nourishment Body Cream 300ml','<strong>Article No: 2033</strong><br><br><strong>Product Description</strong><br><br><b>Dove Body Lotion</b> Moisturising <b>Cream Silk</b>. <b>Dove Body Silk Body Cream</b> is a moisturising <b>cream</b> for dry skin. It leaves you with nourished and <b>silky</b> skin, and contains <b>Doves</b> unique DeepCare Complex, a combination of skin natural nutrients and rich essential oils, to help gradually improve skin, starting deep down',NULL,NULL,'-kwj6v',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:05:05'),(542,'Garnier SkinActive BB Cream Anti-Aging Face Moisturizer','admin',9,24,NULL,NULL,1,'115,116,117','114','youtube',NULL,'velburry','<strong>Article no: 2045</strong><br><h6>Product Description:</h6><br>This moisturizing anti-aging BB Cream with Pro-xylane Antioxidant Apricot and tinted mineral pigments is the 5-in-1 tinted moisturizer that simplifies your skincare routine. This anti-aging face moisturizer reduces the look of wrinkles, firms skin, evens skin tone, deeply hydrates and helps prevent sunburn with Broad Spectrum SPF 15. Get a youthful-looking, more even skin tone with just one product. Suitable for all skin types.<br><br>This Anti-Aging BB Cream has a moisturizing formula made with antioxidant Apricot, Pro-Xylane, tinted mineral pigments and broad spectrum SPF 15<br>This tinted face moisturizer reduces wrinkles, firms skin, evens skin tone, deeply hydrates and helps prevent sunburn<br>Simplify your daily routine with this 5-in-1, anti-aging tinted moisturizer that will give you more radiant, youthful-looking skin<br>Use this tinted moisturizer for a more even complexion and healthier glowand in 4 weeks, skin will be significantly firmer with visibly less wrinkles<br>In just one step, combat the signs of aging, get 24-hour hydration and natural-looking radiance with this lightweight BB cream face moisturizer that primes, corrects and hydrates skin.',550.00,550.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Garnier SkinActive BB Cream Anti-Aging Face Moisturizer','<strong>Article no: 2045</strong><br><h6>Product Description:</h6><br>This moisturizing anti-aging BB Cream with Pro-xylane Antioxidant Apricot and tinted mineral pigments is the 5-in-1 tinted moisturizer that simplifies your skincare routine. This anti-aging face moisturizer reduces the look of wrinkles, firms skin, evens skin tone, deeply hydrates and helps prevent sunburn with Broad Spectrum SPF 15. Get a youthful-looking, more even skin tone with just one product. Suitable for all skin types.<br><br>This Anti-Aging BB Cream has a moisturizing formula made with antioxidant Apricot, Pro-Xylane, tinted mineral pigments and broad spectrum SPF 15<br>This tinted face moisturizer reduces wrinkles, firms skin, evens skin tone, deeply hydrates and helps prevent sunburn<br>Simplify your daily routine with this 5-in-1, anti-aging tinted moisturizer that will give you more radiant, youthful-looking skin<br>Use this tinted moisturizer for a more even complexion and healthier glowand in 4 weeks, skin will be significantly firmer with visibly less wrinkles<br>In just one step, combat the signs of aging, get 24-hour hydration and natural-looking radiance with this lightweight BB cream face moisturizer that primes, corrects and hydrates skin.',NULL,NULL,'-e8zj2',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:05:39'),(543,'Dabur Amla Hair - Oil Natural care','admin',9,19,NULL,NULL,1,'121,120,122','118','youtube',NULL,'velburry','<strong>Article No: 2034</strong><br><br><strong>Product Description</strong><br><br>Original Indian <b>hair oil</b> Alma is a product labelled as a cosmetic that should be applied to dark <b>hair</b> only. It seems rational because <b>Amla</b> works similarly to castor plant. In spite of its astonishing <b>hair</b> growth accelerating features, both <b>oils</b> are able to <b>darker hair</b>.',300.00,300.00,0,'[]','[]','[]','[]',0,1,1,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Dabur Amla Hair - Oil Natural care','<strong>Article No: 2034</strong><br><br><strong>Product Description</strong><br><br>Original Indian <b>hair oil</b> Alma is a product labelled as a cosmetic that should be applied to dark <b>hair</b> only. It seems rational because <b>Amla</b> works similarly to castor plant. In spite of its astonishing <b>hair</b> growth accelerating features, both <b>oils</b> are able to <b>darker hair</b>.',NULL,NULL,'-zee2f',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:06:02'),(544,'L\'Oreal Paris Youth Code BB Cream Illuminator 75ml','admin',9,24,NULL,NULL,1,'127,126,125','123','youtube',NULL,'velburry','<strong>Article no: 2046</strong><br><h6 class=\"default\">Product description:</h6><br><b>Youth code BB cream</b> illuminator instantly evens, illuminates, perfects, moisturizes, and protects skin. In one week, tone and texture are improved and skin is healthier looking. Contains broad spectrum SPF 15.<br><ul><br> 	<li><strong>Complexion appears more Luminous with an even finish </strong></li><br> 	<li><strong>Skin appears smoothers, Soften  </strong></li><br> 	<li><strong>Helps to prevent Sunburn. Decrease the risk of Skin Cancer and Early Skin ageing caused by the Sun</strong></li><br> 	<li><strong>Imperfection appear diminished  even without makeup </strong></li><br> 	<li><strong>Skin’s texture is Refined  </strong></li><br> 	<li><strong>Non-greasy</strong></li><br> 	<li><strong>Dermatologist tested for gentleness </strong></li><br> 	<li><strong>Non-comedogenic</strong></li><br></ul>',550.00,550.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'L\'Oreal Paris Youth Code BB Cream Illuminator 75ml','<strong>Article no: 2046</strong><br><h6 class=\"default\">Product description:</h6><br><b>Youth code BB cream</b> illuminator instantly evens, illuminates, perfects, moisturizes, and protects skin. In one week, tone and texture are improved and skin is healthier looking. Contains broad spectrum SPF 15.<br><ul><br> 	<li><strong>Complexion appears more Luminous with an even finish </strong></li><br> 	<li><strong>Skin appears smoothers, Soften  </strong></li><br> 	<li><strong>Helps to prevent Sunburn. Decrease the risk of Skin Cancer and Early Skin ageing caused by the Sun</strong></li><br> 	<li><strong>Imperfection appear diminished  even without makeup </strong></li><br> 	<li><strong>Skin’s texture is Refined  </strong></li><br> 	<li><strong>Non-greasy</strong></li><br> 	<li><strong>Dermatologist tested for gentleness </strong></li><br> 	<li><strong>Non-comedogenic</strong></li><br></ul>',NULL,NULL,'-dtats',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:06:15'),(545,'Lakme 9 to 5 Complexion Care Face Cream','admin',9,24,NULL,NULL,1,'129,130','128','youtube',NULL,'velburry','<strong>Article no: 2047</strong><br><br><strong>Product description:</strong><br><br>Product details of <b>Lakme 9 to 5 BB cream</b> (bright benefit <b>cream</b>) The <b>cream</b> is available in skin tones that work perfectly well for all WORLD skin tones. ... <b>LAKMÉ BB Cream</b> Combines the goodness of your daily skin <b>cream</b> with just the right touch of make-up to give you that perfect look in just a few minutes.<br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Provides UV Protection</span></li><br> 	<li><span class=\"a-list-item\">Moisturizes</span></li><br> 	<li><span class=\"a-list-item\">Conceals</span></li><br> 	<li><span class=\"a-list-item\">Gives Smooth Coverage</span></li><br> 	<li><span class=\"a-list-item\">Lightens Skin</span></li><br> 	<li><span class=\"a-list-item\">Evens skin tone</span></li><br></ul>',490.00,490.00,0,'[]','[]','[]','[]',0,1,1,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lakme 9 to 5 Complexion Care Face Cream','<strong>Article no: 2047</strong><br><br><strong>Product description:</strong><br><br>Product details of <b>Lakme 9 to 5 BB cream</b> (bright benefit <b>cream</b>) The <b>cream</b> is available in skin tones that work perfectly well for all WORLD skin tones. ... <b>LAKMÉ BB Cream</b> Combines the goodness of your daily skin <b>cream</b> with just the right touch of make-up to give you that perfect look in just a few minutes.<br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Provides UV Protection</span></li><br> 	<li><span class=\"a-list-item\">Moisturizes</span></li><br> 	<li><span class=\"a-list-item\">Conceals</span></li><br> 	<li><span class=\"a-list-item\">Gives Smooth Coverage</span></li><br> 	<li><span class=\"a-list-item\">Lightens Skin</span></li><br> 	<li><span class=\"a-list-item\">Evens skin tone</span></li><br></ul>',NULL,NULL,'-kxey9',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:06:30'),(546,'Dabur Amla Hair oil 200ml','admin',9,19,NULL,NULL,1,'133,132,134','131','youtube',NULL,'velburry','<strong>Article No: 2035</strong><br><br><strong>Product Description</strong><br><br>It is so rich in Vitamin C and anti-oxidant properties that not only does it prevents <b>hair</b> from premature graying but also <b>make</b> them healthy and shining. - <b>Take</b> a small quantity of coconut oil. Put some dry <b>Amla</b> pieces or dry <b>Amla powder</b> in it. Let it <b>turn black</b>',390.00,390.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Dabur Amla Hair oil 200ml','<strong>Article No: 2035</strong><br><br><strong>Product Description</strong><br><br>It is so rich in Vitamin C and anti-oxidant properties that not only does it prevents <b>hair</b> from premature graying but also <b>make</b> them healthy and shining. - <b>Take</b> a small quantity of coconut oil. Put some dry <b>Amla</b> pieces or dry <b>Amla powder</b> in it. Let it <b>turn black</b>',NULL,NULL,'-rqevg',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:06:46'),(547,'Gatsby Hair Gel 150gm','admin',9,19,NULL,NULL,1,'136,138,137','135','youtube',NULL,'velburry','<strong>Article no: 2048</strong><br><h6>product Description:</h6><br>Styling ingredient binds hair closely together, so hairstyle is held for several hours. Spreads and blends well with no stickiness. Gives a natural shine to hair. Easy to wash off.<br><br>Helps create extreme style of your desire. Wet-look shine and supple flow plus compact shape with no hard setting. Create Natural Hairstyles.<br><br>All flavours of Gatsby hair gel Are available here:<br><ul><br> 	<li>soft</li><br> 	<li>Hyper solid</li><br> 	<li>Hard</li><br> 	<li>Super Hard</li><br></ul>',290.00,290.00,0,'[]','[]','[]','[]',0,1,1,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Gatsby Hair Gel','<strong>Article no: 2048</strong><br><h6>product Description:</h6><br>Styling ingredient binds hair closely together, so hairstyle is held for several hours. Spreads and blends well with no stickiness. Gives a natural shine to hair. Easy to wash off.<br><br>Helps create extreme style of your desire. Wet-look shine and supple flow plus compact shape with no hard setting. Create Natural Hairstyles.<br><br>All flavours of Gatsby hair gel Are available here:<br><ul><br> 	<li>soft</li><br> 	<li>Hyper solid</li><br> 	<li>Hard</li><br> 	<li>Super Hard</li><br></ul>',NULL,NULL,'-2abbl',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-21 10:59:30'),(548,'KEUNE | Style Defrizz Serum N°17','admin',9,24,NULL,NULL,1,'141,142,143,144','140','youtube',NULL,'velburry','<strong>Article no: 2049</strong><br><h6 class=\"block-title \">PRODUCT DESCRIPTION:</h6><br>A luxurious <b>serum</b> that smooths frizz and leaves hair polished and shiny, without being greasy or weighed down. Used as a finishing touch when styling, this <b>serum</b> leaves hair healthy, glossy and smooth, with wonderful factor 7 shine. ...<br><ul><br> 	<li>Frizz-free hair that shines.</li><br> 	<li>Hold factor    : 1</li><br> 	<li>Shine factor  : 7 q</li><br></ul><br>Get ready for some smooth moves with N°17 Defrizz Serum – as you calm the frizz down. Used as a finishing touch when styling, this serum leaves hair healthy, glossy and smooth, with wonderful factor 7 shine. Out salon tip? Mix N°17 Defrizz Serum with N°62 Matte Cream to add texture and shine to short or medium length hair.',2300.00,2300.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'KEUNE | Style Defrizz Serum N°17','<strong>Article no: 2049</strong><br><h6 class=\"block-title \">PRODUCT DESCRIPTION:</h6><br>A luxurious <b>serum</b> that smooths frizz and leaves hair polished and shiny, without being greasy or weighed down. Used as a finishing touch when styling, this <b>serum</b> leaves hair healthy, glossy and smooth, with wonderful factor 7 shine. ...<br><ul><br> 	<li>Frizz-free hair that shines.</li><br> 	<li>Hold factor    : 1</li><br> 	<li>Shine factor  : 7 q</li><br></ul><br>Get ready for some smooth moves with N°17 Defrizz Serum – as you calm the frizz down. Used as a finishing touch when styling, this serum leaves hair healthy, glossy and smooth, with wonderful factor 7 shine. Out salon tip? Mix N°17 Defrizz Serum with N°62 Matte Cream to add texture and shine to short or medium length hair.',NULL,NULL,'-vabc2',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:07:35'),(549,'Keune Sleek & Shine Rebonding Conditioner','admin',9,19,NULL,NULL,1,'146,147,148','145','youtube',NULL,'velburry','<strong>Article no: 2050</strong><br><br><strong>Product Description:</strong><br><br>Keune Sleek &amp; Shine Rebonding Conditioner is a repairing formula for hair to make them healthy and strong. It provides damage therapy to the chemically treated hair. The intense formula gives quick repairing treatment to fix the straightened, curled or rebonded hair by deeply conditioning them. It can be used before or after chemical treatment or heat styling of hair. Just in 3 minutes of application time, it strengthens hair, turns them shiny and detangles knots. The light weight conditioner does not leave residue or build-up behind.<br><ul class=\"list__product--listings\"><br> 	<li>Provides deep nourishment and conditioning to rebonded or straightened hair</li><br> 	<li>Repairs damaged and untreated hair structure</li><br> 	<li>Light in weight - does not feel heavy on hair</li><br> 	<li>Leaves no residue behind</li><br> 	<li class=\"\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.74a5606dCixPtE\">Nourish hair</li><br> 	<li class=\"\">With damage thrapy</li><br> 	<li class=\"\">Lightweight, clear formula</li><br> 	<li class=\"\">Works to build strength, detangle, revitalize</li><br></ul>',1350.00,1350.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Keune Sleek & Shine Rebonding Conditioner','<strong>Article no: 2050</strong><br><br><strong>Product Description:</strong><br><br>Keune Sleek &amp; Shine Rebonding Conditioner is a repairing formula for hair to make them healthy and strong. It provides damage therapy to the chemically treated hair. The intense formula gives quick repairing treatment to fix the straightened, curled or rebonded hair by deeply conditioning them. It can be used before or after chemical treatment or heat styling of hair. Just in 3 minutes of application time, it strengthens hair, turns them shiny and detangles knots. The light weight conditioner does not leave residue or build-up behind.<br><ul class=\"list__product--listings\"><br> 	<li>Provides deep nourishment and conditioning to rebonded or straightened hair</li><br> 	<li>Repairs damaged and untreated hair structure</li><br> 	<li>Light in weight - does not feel heavy on hair</li><br> 	<li>Leaves no residue behind</li><br> 	<li class=\"\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.74a5606dCixPtE\">Nourish hair</li><br> 	<li class=\"\">With damage thrapy</li><br> 	<li class=\"\">Lightweight, clear formula</li><br> 	<li class=\"\">Works to build strength, detangle, revitalize</li><br></ul>',NULL,NULL,'-gdtmi',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:09:50'),(550,'Lofty Multivitamin Cream 500ml','admin',9,24,NULL,NULL,1,'150','149','youtube',NULL,'velburry','<strong>Article no: 2051</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.60285a35xGxWZB\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">With Sun Block Spf -15</li><br> 	<li class=\"\">500 ml</li><br> 	<li class=\"\">Vitamin C E &amp; A</li><br> 	<li class=\"\">Repairing formula for dead skin</li><br> 	<li class=\"\">Oil free</li><br> 	<li class=\"\">Leave the skin soft and smooth</li><br></ul><br></div><br><div class=\"html-content detail-content\"><br><br>Lofty gives me unmatched fairness. For me it’s my most trusted skin expert, I get perfect glow and perfect even tone.<br><br></div><br></div><br></div>',390.00,390.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Lofty Multivitamin Cream 500ml','<strong>Article no: 2051</strong><br><h6 class=\"pdp-mod-section-title outer-title\" data-spm-anchor-id=\"a2a0e.pdp.0.i1.60285a35xGxWZB\">Product details:</h6><br><div class=\"pdp-product-detail\" data-spm=\"product_detail\"><br><div class=\"pdp-product-desc \"><br><div class=\"html-content pdp-product-highlights\"><br><ul class=\"\"><br> 	<li class=\"\">With Sun Block Spf -15</li><br> 	<li class=\"\">500 ml</li><br> 	<li class=\"\">Vitamin C E &amp; A</li><br> 	<li class=\"\">Repairing formula for dead skin</li><br> 	<li class=\"\">Oil free</li><br> 	<li class=\"\">Leave the skin soft and smooth</li><br></ul><br></div><br><div class=\"html-content detail-content\"><br><br>Lofty gives me unmatched fairness. For me it’s my most trusted skin expert, I get perfect glow and perfect even tone.<br><br></div><br></div><br></div>',NULL,NULL,'-i0ncf',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:10:05'),(551,'Original Lofty Vitamin E Moisturizer Cream 250 ML','admin',9,24,NULL,NULL,1,'153,152','151','youtube',NULL,'velburry','<strong>Article no: 2052</strong><br><br><strong>Product Description:</strong><br><br><b>Lofty Vitamin</b>-<b>E cream</b> ia a general revitalizing <b>cream</b>. Its increases elasticity of skin, repair damaged tissue and removes fine lines. <b>Vitamin E</b> neutralizes free radicals &amp; prevents premature aging. Its regular use keeps skin soft, suppl and wrinkle free.<br><ul class=\"\"><br> 	<li class=\"\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.496e1fc0324Zuo\">Prevents Premature Aging</li><br> 	<li class=\"\">With Sunblock SPF 15</li><br> 	<li class=\"\">For Daily Use</li><br></ul>',390.00,390.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Original Lofty Vitamin E Moisturizer Cream 250 ML','<strong>Article no: 2052</strong><br><br><strong>Product Description:</strong><br><br><b>Lofty Vitamin</b>-<b>E cream</b> ia a general revitalizing <b>cream</b>. Its increases elasticity of skin, repair damaged tissue and removes fine lines. <b>Vitamin E</b> neutralizes free radicals &amp; prevents premature aging. Its regular use keeps skin soft, suppl and wrinkle free.<br><ul class=\"\"><br> 	<li class=\"\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.496e1fc0324Zuo\">Prevents Premature Aging</li><br> 	<li class=\"\">With Sunblock SPF 15</li><br> 	<li class=\"\">For Daily Use</li><br></ul>',NULL,NULL,'-xkgeo',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:10:17'),(552,'Nair Rose Hair Removal Spray','admin',9,19,NULL,NULL,1,'156,157','154','youtube',NULL,'velburry','<div class=\"mod\" lang=\"en-PK\" data-md=\"61\"><br><div><strong>Article No: 2036</strong></div><br><div></div><br><div class=\"LGOjhe\" role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CA4QAA\"><br><div class=\"d9FyLd XcVN5d\"><strong>Product description</strong></div><br><div></div><br><span class=\"ILfuVd\"><span class=\"hgKElc\"><b>Nair</b> has launched <b>hair removal sprays</b> which is in the form of a <b>spray</b> and can help in <b>removing hair</b> from difficult or large areas. With baby oil it is meant for all <b>hair</b> types and will offer a radiant, silky-smooth skin.</span></span><br><br></div><br></div><br><div class=\"g\"><br><div class=\"rc\" data-hveid=\"CAgQAA\" data-ved=\"2ahUKEwidpKCgjv3tAhW_QUEAHVxiAcMQFSgAMAJ6BAgIEAA\"></div><br></div>',460.00,460.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Nair Rose Hair Removal Spray','<div class=\"mod\" lang=\"en-PK\" data-md=\"61\"><br><div><strong>Article No: 2036</strong></div><br><div></div><br><div class=\"LGOjhe\" role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CA4QAA\"><br><div class=\"d9FyLd XcVN5d\"><strong>Product description</strong></div><br><div></div><br><span class=\"ILfuVd\"><span class=\"hgKElc\"><b>Nair</b> has launched <b>hair removal sprays</b> which is in the form of a <b>spray</b> and can help in <b>removing hair</b> from difficult or large areas. With baby oil it is meant for all <b>hair</b> types and will offer a radiant, silky-smooth skin.</span></span><br><br></div><br></div><br><div class=\"g\"><br><div class=\"rc\" data-hveid=\"CAgQAA\" data-ved=\"2ahUKEwidpKCgjv3tAhW_QUEAHVxiAcMQFSgAMAJ6BAgIEAA\"></div><br></div>',NULL,NULL,'-k9c2i',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:15:21'),(553,'Heaven Dove Whitening Cream Professional','admin',9,24,NULL,NULL,1,'159,160,161','158','youtube',NULL,'velburry','<strong>Article no: 2053</strong><br><br><strong>product description:</strong><br><br>Gives a shining, Instant white and moisturized skin, <b>Cream</b> helps protect skin from sun damage with SPF 50, It can totally treat all skin types for a fascinating aura of bright skin and skin smoothness.<br><br>• Gender: Female<br>• Item Type: Cream<br>• Model Number: Shea Butter Moist Body Lotion<br>• Ingredient: BUTYROSPERMUM PARKII (SHEA BUTTER), HYDROGENATED OLIVE OIL<br>• Country/Region of Manufacture: China<br>• Use: Body<br>• NET WT: 250g<br>• Feature: Moisturizing',380.00,380.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Heaven Dove Whitening Cream Professional','<strong>Article no: 2053</strong><br><br><strong>product description:</strong><br><br>Gives a shining, Instant white and moisturized skin, <b>Cream</b> helps protect skin from sun damage with SPF 50, It can totally treat all skin types for a fascinating aura of bright skin and skin smoothness.<br><br>• Gender: Female<br>• Item Type: Cream<br>• Model Number: Shea Butter Moist Body Lotion<br>• Ingredient: BUTYROSPERMUM PARKII (SHEA BUTTER), HYDROGENATED OLIVE OIL<br>• Country/Region of Manufacture: China<br>• Use: Body<br>• NET WT: 250g<br>• Feature: Moisturizing',NULL,NULL,'-59prp',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:12:01'),(554,'Nair Sensitive Hair Removal Cream','admin',9,19,NULL,NULL,1,'163,164,166,165','162','youtube',NULL,'velburry','<strong>Article No: 2037</strong><br><br><strong>Product Description</strong><br><br><b>Nair</b> Sensitive <b>Hair Removal Cream</b> with moisturising Sweet Almond Oil is specially formulated for sensitive skin and is gentle enough to use anywhere on the body – legs, bikini area, underarms and face. ... Perfect for sensitive skin, <b>Nair</b> Sensitive <b>Hair Removal Cream</b> will moisturise your skin leaving it soft and smooth.',390.00,390.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Nair Sensitive Hair Removal Cream','<strong>Article No: 2037</strong><br><br><strong>Product Description</strong><br><br><b>Nair</b> Sensitive <b>Hair Removal Cream</b> with moisturising Sweet Almond Oil is specially formulated for sensitive skin and is gentle enough to use anywhere on the body – legs, bikini area, underarms and face. ... Perfect for sensitive skin, <b>Nair</b> Sensitive <b>Hair Removal Cream</b> will moisturise your skin leaving it soft and smooth.',NULL,NULL,'-iaiot',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:16:05'),(555,'Nair Hair Remover Lotion','admin',9,19,NULL,NULL,1,'168,170,169','167','youtube',NULL,'velburry','<strong>Article No: 2038</strong><br><br><strong>Product Description</strong><br><br>Get ready to bare more and wear less, <b>Nair Lotion</b> with Cocoa Butter will beautify your skin. With a seductive scent and skin-nourishing <b>ingredients</b>, this <b>hair removal lotion</b> lasts days longer than shaving and is infused with natural cocoa butter. ... Within minutes youll have smooth, clean skin without nicks or bumps.',470.00,470.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Nair Hair Remover Lotion','<strong>Article No: 2038</strong><br><br><strong>Product Description</strong><br><br>Get ready to bare more and wear less, <b>Nair Lotion</b> with Cocoa Butter will beautify your skin. With a seductive scent and skin-nourishing <b>ingredients</b>, this <b>hair removal lotion</b> lasts days longer than shaving and is infused with natural cocoa butter. ... Within minutes youll have smooth, clean skin without nicks or bumps.',NULL,NULL,'-ciwso',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:16:27'),(556,'Fair & Lovely with Vitamins And Lotus Extracts Cream','admin',9,24,NULL,NULL,1,'172,173','171','youtube',NULL,'velburry','<strong>Article no: 2054</strong><br><h6 class=\"default\">Product description:</h6><br>Fair &amp; Lovely is a face cream with the hero ingredient of multivitamins, which are understood to work from within to give skin a blemish-free glow along with a smooth and soft texture. Women today want more skin quality led benefits like a radiant glow, skin that is free from blemishes and imperfections. While this new aspiration of skin, has visible radiance, it is also strongly associated with the quality of skin itself. Fair &amp; Lovely offers its consumer a high definition glow - which comprises skin clarity, more radiance and skin that is free from imperfections. Infused with Multivitamins - Vitamin B3, C, E and B6 and Niacinamide, it brightens your skin, reduces inflammation and hyperpigmentation and smoothens overall skin texture.<br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Skin Clarity: Reduce dark marks</span></li><br> 	<li><span class=\"a-list-item\">Brightness: Brighten skin</span></li><br> 	<li><span class=\"a-list-item\">Radiance: Illuminate skin inside out</span></li><br> 	<li><span class=\"a-list-item\">Even tone: Even skin tone. HD Glow: High Definition Glow</span></li><br> 	<li><span class=\"a-list-item\">Ingredients: Aqua, Palmitic Acid and Stearic Acid, Niacinamide, Glycerine, Dimethicone, EthylhexylMethoxycinnamate, Butyl Methoxydibenzoylmethane, Tianium Dioxide, Sodium Ascorbyl Phosphate, Isopropyl Myristate, Tocopheryl Acetate, Allantoin, Pyridoxine Hydrochloride, Cetyl Alcohol, Titanium Dioxide and Aluminum Hydroxide and Stearic Acid, Phenoxyethanol, Methyl Paraben, Propyl Paraben, Potassium Hydroxide, Disodium EDTA, Perfume</span></li><br></ul>',350.00,350.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Fair & Lovely with Vitamins And Lotus Extracts Cream','<strong>Article no: 2054</strong><br><h6 class=\"default\">Product description:</h6><br>Fair &amp; Lovely is a face cream with the hero ingredient of multivitamins, which are understood to work from within to give skin a blemish-free glow along with a smooth and soft texture. Women today want more skin quality led benefits like a radiant glow, skin that is free from blemishes and imperfections. While this new aspiration of skin, has visible radiance, it is also strongly associated with the quality of skin itself. Fair &amp; Lovely offers its consumer a high definition glow - which comprises skin clarity, more radiance and skin that is free from imperfections. Infused with Multivitamins - Vitamin B3, C, E and B6 and Niacinamide, it brightens your skin, reduces inflammation and hyperpigmentation and smoothens overall skin texture.<br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Skin Clarity: Reduce dark marks</span></li><br> 	<li><span class=\"a-list-item\">Brightness: Brighten skin</span></li><br> 	<li><span class=\"a-list-item\">Radiance: Illuminate skin inside out</span></li><br> 	<li><span class=\"a-list-item\">Even tone: Even skin tone. HD Glow: High Definition Glow</span></li><br> 	<li><span class=\"a-list-item\">Ingredients: Aqua, Palmitic Acid and Stearic Acid, Niacinamide, Glycerine, Dimethicone, EthylhexylMethoxycinnamate, Butyl Methoxydibenzoylmethane, Tianium Dioxide, Sodium Ascorbyl Phosphate, Isopropyl Myristate, Tocopheryl Acetate, Allantoin, Pyridoxine Hydrochloride, Cetyl Alcohol, Titanium Dioxide and Aluminum Hydroxide and Stearic Acid, Phenoxyethanol, Methyl Paraben, Propyl Paraben, Potassium Hydroxide, Disodium EDTA, Perfume</span></li><br></ul>',NULL,NULL,'-5qmuv',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:16:39'),(557,'Coswin Aloe Vera Gel 260ml','admin',9,24,NULL,NULL,1,'176,175,178,177','174','youtube',NULL,'velburry','<strong>Article No: 2039</strong><br><br><strong>Product Description:</strong><br><br><b>Coswin Aloe Vera Gel</b> Uses Pure Bioactive Organic <b>Aloe Vera</b>. This Ensures That The Plants Beneficial Polysaccharide Levels Are Captured &amp; Maximised To Help Soothe, Moisturise &amp; Restore Dry &amp; Sun Exposed Skin.',350.00,350.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Coswin Aloe Vera Gel','<strong>Article No: 2039</strong><br><br><strong>Product Description:</strong><br><br><b>Coswin Aloe Vera Gel</b> Uses Pure Bioactive Organic <b>Aloe Vera</b>. This Ensures That The Plants Beneficial Polysaccharide Levels Are Captured &amp; Maximised To Help Soothe, Moisturise &amp; Restore Dry &amp; Sun Exposed Skin.',NULL,NULL,'-zfua0',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-21 11:01:10'),(558,'Livon Hair Serum 50ml','admin',9,19,NULL,NULL,1,'180,183,181,182','179','youtube',NULL,'velburry','<div role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CA0QAA\"><strong>Article No: 2040</strong></div><br><div role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CA0QAA\"></div><br><div class=\"mod\" lang=\"en-PK\" data-md=\"61\"><br><div role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CA0QAA\"><strong>Product Description</strong></div><br><div role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CA0QAA\"></div><br><div class=\"LGOjhe\" role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CA0QAA\"><span class=\"ILfuVd\"><span class=\"hgKElc\"><b>Livon</b> Hair <b>Serum</b> is a lightweight, non-greasy solution that reduces breakage and gives you soft and silky hair. It also reduces frizz and leaves behind a light floral fragrance. It works well as a heat protectant.</span></span></div><br></div><br><div class=\"g\"><br><div class=\"rc\" data-hveid=\"CAgQAA\" data-ved=\"2ahUKEwjOtPmQkf3tAhWknVwKHVbGACwQFSgAMAJ6BAgIEAA\"></div><br></div>',530.00,530.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Livon Hair Serum 50ml','<div role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CA0QAA\"><strong>Article No: 2040</strong></div><br><div role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CA0QAA\"></div><br><div class=\"mod\" lang=\"en-PK\" data-md=\"61\"><br><div role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CA0QAA\"><strong>Product Description</strong></div><br><div role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CA0QAA\"></div><br><div class=\"LGOjhe\" role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CA0QAA\"><span class=\"ILfuVd\"><span class=\"hgKElc\"><b>Livon</b> Hair <b>Serum</b> is a lightweight, non-greasy solution that reduces breakage and gives you soft and silky hair. It also reduces frizz and leaves behind a light floral fragrance. It works well as a heat protectant.</span></span></div><br></div><br><div class=\"g\"><br><div class=\"rc\" data-hveid=\"CAgQAA\" data-ved=\"2ahUKEwjOtPmQkf3tAhWknVwKHVbGACwQFSgAMAJ6BAgIEAA\"></div><br></div>',NULL,NULL,'-bbr6p',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:17:44'),(559,'Jolen creme bleach pot 30ml','admin',9,24,NULL,NULL,1,'186,185','184','youtube',NULL,'velburry','<strong>Article no: 2055</strong><br><br><b>Product Description:</b><br><br>Go confidently with <b>Jolen Creme Bleach</b> Original Formula! Its the simplest and safest way to lighten unwanted <b>hair</b> so that it blends beautifully with your natural skin tone, making it virtually invisible! And its perfect to lighten your eyebrows to match your <b>hair</b> color!<br><ul class=\"list__product--listings\"><br> 	<li>Exclusive no-drip formula</li><br> 	<li>Fast action bleach</li><br> 	<li>Mixing cup included</li><br> 	<li>Suitable for face and body</li><br></ul>',550.00,550.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Jolen creme bleach pot 30ml','<strong>Article no: 2055</strong><br><br><b>Product Description:</b><br><br>Go confidently with <b>Jolen Creme Bleach</b> Original Formula! Its the simplest and safest way to lighten unwanted <b>hair</b> so that it blends beautifully with your natural skin tone, making it virtually invisible! And its perfect to lighten your eyebrows to match your <b>hair</b> color!<br><ul class=\"list__product--listings\"><br> 	<li>Exclusive no-drip formula</li><br> 	<li>Fast action bleach</li><br> 	<li>Mixing cup included</li><br> 	<li>Suitable for face and body</li><br></ul>',NULL,NULL,'-wtzzw',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:18:44'),(560,'Livon Hair Serum Reviews 100ml','admin',9,19,NULL,NULL,1,'183,187','211','youtube',NULL,'velburry','<div role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CA0QAA\"><strong>Article No: 2041</strong></div><br><div role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CA0QAA\"></div><br><div role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CA0QAA\"><strong>Product Description</strong></div><br><div role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CA0QAA\"></div><br><div class=\"mod\" lang=\"en-PK\" data-md=\"61\"><br><div class=\"LGOjhe\" role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CA0QAA\"><span class=\"ILfuVd\"><span class=\"hgKElc\"><b>Livon</b> Hair <b>Serum</b> is a lightweight, non-greasy solution that reduces breakage and gives you soft and silky hair. It also reduces frizz and leaves behind a light floral fragrance. It works well as a heat protectant.</span></span></div><br></div><br><div class=\"g\"><br><div class=\"rc\" data-hveid=\"CAgQAA\" data-ved=\"2ahUKEwjOtPmQkf3tAhWknVwKHVbGACwQFSgAMAJ6BAgIEAA\"></div><br></div>',780.00,780.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Livon Hair Serum Reviews 100ml','<div role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CA0QAA\"><strong>Article No: 2041</strong></div><br><div role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CA0QAA\"></div><br><div role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CA0QAA\"><strong>Product Description</strong></div><br><div role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CA0QAA\"></div><br><div class=\"mod\" lang=\"en-PK\" data-md=\"61\"><br><div class=\"LGOjhe\" role=\"heading\" data-attrid=\"wa:/description\" aria-level=\"3\" data-hveid=\"CA0QAA\"><span class=\"ILfuVd\"><span class=\"hgKElc\"><b>Livon</b> Hair <b>Serum</b> is a lightweight, non-greasy solution that reduces breakage and gives you soft and silky hair. It also reduces frizz and leaves behind a light floral fragrance. It works well as a heat protectant.</span></span></div><br></div><br><div class=\"g\"><br><div class=\"rc\" data-hveid=\"CAgQAA\" data-ved=\"2ahUKEwjOtPmQkf3tAhWknVwKHVbGACwQFSgAMAJ6BAgIEAA\"></div><br></div>',NULL,NULL,'-s7l35',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:19:08'),(561,'Olay Active Hydrating Beauty Fluid Lotion','admin',9,24,NULL,NULL,1,'189,190,191','188','youtube',NULL,'velburry','<strong>Article No: 2042</strong><br><br><strong>Product Description</strong><br><br>Replenish skin with 48 hours of moisture with the original <b>Pink</b> Beauty Fluid, <b>Olays</b> Active Hydrating Moisturizing <b>Lotion</b>. This hydrating and non-greasy face <b>lotion</b> restores skins moisture to reduce the appearance of fine lines and wrinkles without clogging pores.',550.00,550.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Olay Active Hydrating Beauty Fluid Lotion','<strong>Article No: 2042</strong><br><br><strong>Product Description</strong><br><br>Replenish skin with 48 hours of moisture with the original <b>Pink</b> Beauty Fluid, <b>Olays</b> Active Hydrating Moisturizing <b>Lotion</b>. This hydrating and non-greasy face <b>lotion</b> restores skins moisture to reduce the appearance of fine lines and wrinkles without clogging pores.',NULL,NULL,'-jlsmp',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:20:29'),(562,'Eveline White Prestige 4D Whitening Day Cream','admin',9,24,NULL,NULL,1,'194,193','192','youtube',NULL,'velburry','<strong>Article no: 2056</strong><br><br><strong>Product description:</strong><br><br>Hyaluronic Acid &amp; Lumiskin™ 4D White Complex.<br>UVA / UVB Filters.<br>Re-lighting &amp; moisturising 48h.<br>Nn-greasy &amp; light formula.<br>For oily and combination skin.<br><br>48-h Professional Whitening Program – day by day skin becomes lighter and more radiant!<br>White Prestige 4D cosmetics series is the innovative treatment, acting in four dimensions: lightens complexion, evens out its tone and counteracts excessive pigmentation for up to 48h after application.',1490.00,1490.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Eveline White Prestige 4D Whitening Day Cream','<strong>Article no: 2056</strong><br><br><strong>Product description:</strong><br><br>Hyaluronic Acid &amp; Lumiskin™ 4D White Complex.<br>UVA / UVB Filters.<br>Re-lighting &amp; moisturising 48h.<br>Nn-greasy &amp; light formula.<br>For oily and combination skin.<br><br>48-h Professional Whitening Program – day by day skin becomes lighter and more radiant!<br>White Prestige 4D cosmetics series is the innovative treatment, acting in four dimensions: lightens complexion, evens out its tone and counteracts excessive pigmentation for up to 48h after application.',NULL,NULL,'-0pwih',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:20:43'),(563,'Olay Day Cream Natural White','admin',9,24,NULL,NULL,1,'196,197,198','195','youtube',NULL,'velburry','<strong>Article No: 2043</strong><br><br><strong>Product Description</strong><br><br>Your skin is vulnerable to the suns UV rays and signs of skin darkening during the <b>day</b>, <b>Olay</b> Glowing Fairness <b>cream</b> helps prevent skin tanning and gives you soft, glowing and brighter looking skin .It is powered with a tri vitamin boost of B3, pro B5 and E and SPF 24/PA++',690.00,690.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Olay Day Cream Natural White','<strong>Article No: 2043</strong><br><br><strong>Product Description</strong><br><br>Your skin is vulnerable to the suns UV rays and signs of skin darkening during the <b>day</b>, <b>Olay</b> Glowing Fairness <b>cream</b> helps prevent skin tanning and gives you soft, glowing and brighter looking skin .It is powered with a tri vitamin boost of B3, pro B5 and E and SPF 24/PA++',NULL,NULL,'-onvd8',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:21:04'),(564,'Eveline White Prestige 4D Intensive Whitening Night Cream','admin',9,24,NULL,NULL,1,'200,201,202','199','youtube',NULL,'velburry','<strong>Article no: 2057</strong><br><br><strong>Product description:</strong><br><br>White Prestige 4D Hyaluronic Acid &amp; Lumiskin™ 4D White Complex.<br><br>Re-lighting &amp; regeneration.<br>Non-greasy light formula.<br>For oily and combination skin.<br><br>48-h Professional Whitening Program – day by day skin becomes lighter and more radiant!<br><br>White Prestige 4D cosmetics series is the innovative treatment, acting in four dimensions: lightens complexion, evens out its tone and counteracts excessive pigmentation for up to 48h after application.',1490.00,1490.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Eveline White Prestige 4D Intensive Whitening Night Cream','<strong>Article no: 2057</strong><br><br><strong>Product description:</strong><br><br>White Prestige 4D Hyaluronic Acid &amp; Lumiskin™ 4D White Complex.<br><br>Re-lighting &amp; regeneration.<br>Non-greasy light formula.<br>For oily and combination skin.<br><br>48-h Professional Whitening Program – day by day skin becomes lighter and more radiant!<br><br>White Prestige 4D cosmetics series is the innovative treatment, acting in four dimensions: lightens complexion, evens out its tone and counteracts excessive pigmentation for up to 48h after application.',NULL,NULL,'-p3l2m',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:21:59'),(565,'Eveline White Prestige 4D Whitening Facial Wash Gel','admin',9,24,NULL,NULL,1,'205,204','203','youtube',NULL,'velburry','<strong>Article no: 2058</strong><br><h6 class=\"subtitle\">PRODUCT DESCRIPTION:</h6><br><ul><br> 	<li>White Prestige 4D Advanced Technology</li><br> 	<li>Lumiskin 4D White Complex</li><br> 	<li>Re-lights, perfectly cleanses and refreshes effectively reduces hyperpigmented areas for oily and combination skin</li><br></ul><br>Gel Blanchissant NettoyantWhite Prestige 4D cosmetics series is the innovative treatment, acting in four dimensions: lightens complexion, evens out its tone and counteracts excessive pigmentation for up to 48h after application.',790.00,790.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Eveline White Prestige 4D Whitening Facial Wash Gel','<strong>Article no: 2058</strong><br><h6 class=\"subtitle\">PRODUCT DESCRIPTION:</h6><br><ul><br> 	<li>White Prestige 4D Advanced Technology</li><br> 	<li>Lumiskin 4D White Complex</li><br> 	<li>Re-lights, perfectly cleanses and refreshes effectively reduces hyperpigmented areas for oily and combination skin</li><br></ul><br>Gel Blanchissant NettoyantWhite Prestige 4D cosmetics series is the innovative treatment, acting in four dimensions: lightens complexion, evens out its tone and counteracts excessive pigmentation for up to 48h after application.',NULL,NULL,'-eeqvk',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:22:35'),(566,'EVELINE white prestige 4d Multifunction BB Cream','admin',9,24,NULL,NULL,1,'207,208,209','206','youtube',NULL,'velburry','<strong>Article no: 2059</strong><br><h6 class=\"widget-title\">Product description:</h6><br>HYALURONIC ACID &amp; Lumiskin™4D White Complex All in one Lighter skin Perfect coverage Advanced skincare BABY FACE™ eﬀect SPF 15 For all skin types INTENSIVE HYDRATION 48h Flawless skin in just one step! WHITENS &amp; LIGHTENS: Whitening Multifunction BB Cream (Blemish Base) based on unique whitening complex Lumiskin™ 4D White Complex instantly lightens, moisturizes, smoothens, and perfectly blends with complexion, ensuring immediate BABY FACE™ eﬀect of ideally smooth skin. Innovative active ingredients reﬂect light and neutralize grey tone thus skin becomes radiant. Velvety texture spreads quickly, eﬀectively conceals imperfections making skin look relaxed and regain natural glow and energy.<br><ul class=\"\"><br> 	<li class=\"\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.61493228PKFwEF\">Multi-function BB Cream 50ml</li><br></ul>',1290.00,1290.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'EVELINE white prestige 4d Multifunction BB Cream','<strong>Article no: 2059</strong><br><h6 class=\"widget-title\">Product description:</h6><br>HYALURONIC ACID &amp; Lumiskin™4D White Complex All in one Lighter skin Perfect coverage Advanced skincare BABY FACE™ eﬀect SPF 15 For all skin types INTENSIVE HYDRATION 48h Flawless skin in just one step! WHITENS &amp; LIGHTENS: Whitening Multifunction BB Cream (Blemish Base) based on unique whitening complex Lumiskin™ 4D White Complex instantly lightens, moisturizes, smoothens, and perfectly blends with complexion, ensuring immediate BABY FACE™ eﬀect of ideally smooth skin. Innovative active ingredients reﬂect light and neutralize grey tone thus skin becomes radiant. Velvety texture spreads quickly, eﬀectively conceals imperfections making skin look relaxed and regain natural glow and energy.<br><ul class=\"\"><br> 	<li class=\"\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.61493228PKFwEF\">Multi-function BB Cream 50ml</li><br></ul>',NULL,NULL,'-u9n85',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:23:15'),(567,'Heaven Dove Anti-Acne Cream','admin',9,24,NULL,NULL,1,'212,213,214,215','210','youtube',NULL,'velburry','<strong>Article no: 2060</strong><br><br><strong>Product description:</strong><br><br>Heaven Dove Anti Acne Clean Pox Smooth Cleanser 120gm.<br><ul><br> 	<li>Applied For Face.</li><br> 	<li>Used For Cleansing.</li><br> 	<li>For All Skin Types.</li><br> 	<li>Suitable For Women.</li><br> 	<li>Lotion Form.</li><br></ul>',400.00,400.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Heaven Dove Anti-Acne Cream','<strong>Article no: 2060</strong><br><br><strong>Product description:</strong><br><br>Heaven Dove Anti Acne Clean Pox Smooth Cleanser 120gm.<br><ul><br> 	<li>Applied For Face.</li><br> 	<li>Used For Cleansing.</li><br> 	<li>For All Skin Types.</li><br> 	<li>Suitable For Women.</li><br> 	<li>Lotion Form.</li><br></ul>',NULL,NULL,'-lpxcj',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:27:10'),(568,'Mistine Acne Clear Facial Foam','admin',9,24,NULL,NULL,1,'216,217,218,219','220','youtube',NULL,'velburry','<strong>Article no: 2061</strong><br><h6 class=\"subtitle\">PRODUCT DESCRIPTION:</h6><br><div class=\"ProductDescriptionContainer prodAccordionContent\"><br><br>Facial Cleansing Foam Effectively clean your face with 5 valuable ingredients. Your face will noticeably cleaner and visibly clearer from acne.<br><ul><br> 	<li>Comedolytic against impurities</li><br> 	<li>Oil control formula</li><br> 	<li>Highly moisturizing effect</li><br> 	<li>Suitable for acne scar</li><br> 	<li>Special formula for acne skin</li><br></ul><br></div>',350.00,350.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Mistine Acne Clear Facial Foam','<strong>Article no: 2061</strong><br><h6 class=\"subtitle\">PRODUCT DESCRIPTION:</h6><br><div class=\"ProductDescriptionContainer prodAccordionContent\"><br><br>Facial Cleansing Foam Effectively clean your face with 5 valuable ingredients. Your face will noticeably cleaner and visibly clearer from acne.<br><ul><br> 	<li>Comedolytic against impurities</li><br> 	<li>Oil control formula</li><br> 	<li>Highly moisturizing effect</li><br> 	<li>Suitable for acne scar</li><br> 	<li>Special formula for acne skin</li><br></ul><br></div>',NULL,NULL,'-qyyai',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:27:48'),(569,'Silky Cool Aloe Vera Gel For Face','admin',9,24,NULL,NULL,1,'224,222,223','221','youtube',NULL,'velburry','<strong>Article no: 2062</strong><br><br><strong>Product description:</strong><br><br><strong>Silky Cool Aloe Vera Gel For Face 350ml</strong><br><ul><br> 	<li><br><ul><br> 	<li>For All Skin Type</li><br> 	<li>Sooting</li><br> 	<li>moisturizing</li><br> 	<li>After-sun care</li><br> 	<li>Skin oil control</li><br> 	<li>Made in UAE</li><br></ul><br></li><br></ul>',1000.00,1000.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Silky Cool Aloe Vera Gel For Face','<strong>Article no: 2062</strong><br><br><strong>Product description:</strong><br><br><strong>Silky Cool Aloe Vera Gel For Face 350ml</strong><br><ul><br> 	<li><br><ul><br> 	<li>For All Skin Type</li><br> 	<li>Sooting</li><br> 	<li>moisturizing</li><br> 	<li>After-sun care</li><br> 	<li>Skin oil control</li><br> 	<li>Made in UAE</li><br></ul><br></li><br></ul>',NULL,NULL,'-ahpms',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:29:02'),(570,'Dove White Beauty Bar Gentle Cleanser','admin',9,24,NULL,NULL,1,'228,226,227,225','229','youtube',NULL,'velburry','<strong>Article no: 2063</strong><br><br><strong>Product Description:</strong><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">LOCK-IN MOISTURE: The classic Dove White Beauty Bar nourishes and pampers skin to give you softer, smoother, more radiant-looking skin than ordinary bar soap.</span></li><br> 	<li><span class=\"a-list-item\">RICH HYDRATION: Help maintain your skin’s natural moisture barrier and hydration with this beauty bar ideal to use as a facial cleanser and body wash for sensitive skin.</span></li><br></ul><br>Thats because <b>Dove</b> isnt a <b>soap bar</b>, its a <b>Beauty Bar</b>. While ordinary <b>soaps</b> can strip skin of essential nutrients, <b>Dove Beauty Bar</b> has mild cleansers to care for skin as it cleans. With our ¼ moisturizing cream, <b>Dove Beauty Bar</b> leaves your face and body feeling soft, smooth, and more radiant than ordinary <b>soap</b>.<br><br>&nbsp;',190.00,190.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Dove White Beauty Bar Gentle Cleanser','<strong>Article no: 2063</strong><br><br><strong>Product Description:</strong><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">LOCK-IN MOISTURE: The classic Dove White Beauty Bar nourishes and pampers skin to give you softer, smoother, more radiant-looking skin than ordinary bar soap.</span></li><br> 	<li><span class=\"a-list-item\">RICH HYDRATION: Help maintain your skin’s natural moisture barrier and hydration with this beauty bar ideal to use as a facial cleanser and body wash for sensitive skin.</span></li><br></ul><br>Thats because <b>Dove</b> isnt a <b>soap bar</b>, its a <b>Beauty Bar</b>. While ordinary <b>soaps</b> can strip skin of essential nutrients, <b>Dove Beauty Bar</b> has mild cleansers to care for skin as it cleans. With our ¼ moisturizing cream, <b>Dove Beauty Bar</b> leaves your face and body feeling soft, smooth, and more radiant than ordinary <b>soap</b>.<br><br>&nbsp;',NULL,NULL,'-bh51b',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:29:52'),(571,'Dove Pink Beauty Bar Gentle Cleanser','admin',9,24,NULL,NULL,1,'234,232,233,231','230','youtube',NULL,'velburry','<strong>Article no: 2064</strong><br><br><strong>Product description:</strong><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">LOCK-IN MOISTURE: The classic Dove Beauty Bar, with a delicate blush of color, nourishes and pampers skin to give you softer, smoother, more radiant-looking skin than ordinary bar soap.</span></li><br> 	<li><span class=\"a-list-item\">RICH HYDRATION: Help maintain your skin’s natural moisture barrier and hydration with this beauty bar ideal to use as a facial cleanser and body soap.</span></li><br> 	<li><span class=\"a-list-item\">#1 DERMATOLOGIST RECOMMENDED: Formulated with mild cleansers and ¼ moisturizing cream, Dove moisturizing beauty bar leaves skin instantly soft and smooth with lasting nourishment.</span></li><br> 	<li><span class=\"a-list-item\">GENTLE CLEANSING The luxurious lather of this Dove Beauty Bar won’t dry skin like ordinary bar soap. Dove Beauty Bar is also effective at cleansing hands.</span></li><br> 	<li><span class=\"a-list-item\">THOUGHTFULLY MADE: This beauty bar is PETA-certified cruelty-free so you can feel good about switching from ordinary soap to Dove Beauty Bar.</span></li><br> 	<li><span class=\"a-list-item\">CARE AS YOU CLEAN: The cleansing efficacy and skincare you need, all in one product.</span></li><br></ul>',190.00,190.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Dove Pink Beauty Bar Gentle Cleanser','<strong>Article no: 2064</strong><br><br><strong>Product description:</strong><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">LOCK-IN MOISTURE: The classic Dove Beauty Bar, with a delicate blush of color, nourishes and pampers skin to give you softer, smoother, more radiant-looking skin than ordinary bar soap.</span></li><br> 	<li><span class=\"a-list-item\">RICH HYDRATION: Help maintain your skin’s natural moisture barrier and hydration with this beauty bar ideal to use as a facial cleanser and body soap.</span></li><br> 	<li><span class=\"a-list-item\">#1 DERMATOLOGIST RECOMMENDED: Formulated with mild cleansers and ¼ moisturizing cream, Dove moisturizing beauty bar leaves skin instantly soft and smooth with lasting nourishment.</span></li><br> 	<li><span class=\"a-list-item\">GENTLE CLEANSING The luxurious lather of this Dove Beauty Bar won’t dry skin like ordinary bar soap. Dove Beauty Bar is also effective at cleansing hands.</span></li><br> 	<li><span class=\"a-list-item\">THOUGHTFULLY MADE: This beauty bar is PETA-certified cruelty-free so you can feel good about switching from ordinary soap to Dove Beauty Bar.</span></li><br> 	<li><span class=\"a-list-item\">CARE AS YOU CLEAN: The cleansing efficacy and skincare you need, all in one product.</span></li><br></ul>',NULL,NULL,'-f07dk',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:30:15'),(572,'Pears Yellow Natural Glycerine Transparent Soap','admin',9,24,NULL,NULL,1,'237,235,236','238','youtube',NULL,'velburry','<strong>Article no: 2065</strong><br><br><strong>Product description:</strong><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Gentle Care Transparent Bar by Pears for Unisex - 4.4 oz Soap</span></li><br> 	<li><span class=\"a-list-item\">Gentle Care Transparent Bar by Pears for Unisex</span></li><br> 	<li><span class=\"a-list-item\">A gentle soap based on glycerine and other natural products</span></li><br> 	<li class=\"\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.71e64a29CVzOWs\">Brand: Pears</li><br> 	<li class=\"\">Pears Natural Glycerin Transparent Soap is a natural way to attain clean, healthy-looking skin</li><br> 	<li class=\"\">It is hypoallergenic and Non-Comedogenic</li><br> 	<li class=\"\">It contains high-quality skincare ingredients like glycerin and natural oils</li><br> 	<li class=\"\">Pears Soap is specially made to take care of even sensitive and delicate skin</li><br> 	<li class=\"\">Size: 125 G</li><br></ul>',210.00,210.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Pears Yellow Natural Glycerine Transparent Soap','<strong>Article no: 2065</strong><br><br><strong>Product description:</strong><br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Gentle Care Transparent Bar by Pears for Unisex - 4.4 oz Soap</span></li><br> 	<li><span class=\"a-list-item\">Gentle Care Transparent Bar by Pears for Unisex</span></li><br> 	<li><span class=\"a-list-item\">A gentle soap based on glycerine and other natural products</span></li><br> 	<li class=\"\" data-spm-anchor-id=\"a2a0e.pdp.product_detail.i0.71e64a29CVzOWs\">Brand: Pears</li><br> 	<li class=\"\">Pears Natural Glycerin Transparent Soap is a natural way to attain clean, healthy-looking skin</li><br> 	<li class=\"\">It is hypoallergenic and Non-Comedogenic</li><br> 	<li class=\"\">It contains high-quality skincare ingredients like glycerin and natural oils</li><br> 	<li class=\"\">Pears Soap is specially made to take care of even sensitive and delicate skin</li><br> 	<li class=\"\">Size: 125 G</li><br></ul>',NULL,NULL,'-y5mtk',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:31:27'),(573,'Pears Oil Clear Green Hypoallergenic Soap','admin',9,24,NULL,NULL,1,'242,240,241','239','youtube',NULL,'velburry','<strong>Article no: 2066</strong><br><br><strong>Product description:</strong><br><div class=\"overall-review\"><br><div class=\"pros_cons\"><br><div class=\"pros-bar\"><br><ul><br> 	<li>Oil-clear formula</li><br> 	<li>Imparts natural glow</li><br> 	<li>Controls sebum production</li><br> 	<li>Affordable</li><br></ul><br></div><br></div><br></div><br><div><br><div class=\"show-read-more\"><br><p class=\"more\">Pears oil control soap is a green-colored transparent soap. It is known to treat and control oil production and excess sebum. Oil control also helps to control pimples and acne. It has a mild fragrance and is affordable. It can be used to fight excess sebum Production and also acne.</p><br><br></div><br></div>',210.00,210.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Pears Oil Clear Green Hypoallergenic Soap','<strong>Article no: 2066</strong><br><br><strong>Product description:</strong><br><div class=\"overall-review\"><br><div class=\"pros_cons\"><br><div class=\"pros-bar\"><br><ul><br> 	<li>Oil-clear formula</li><br> 	<li>Imparts natural glow</li><br> 	<li>Controls sebum production</li><br> 	<li>Affordable</li><br></ul><br></div><br></div><br></div><br><div><br><div class=\"show-read-more\"><br><p class=\"more\">Pears oil control soap is a green-colored transparent soap. It is known to treat and control oil production and excess sebum. Oil control also helps to control pimples and acne. It has a mild fragrance and is affordable. It can be used to fight excess sebum Production and also acne.</p><br><br></div><br></div>',NULL,NULL,'-c3n2s',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:31:57'),(574,'Pears Blue Soap with Mint Extract Soap','admin',9,24,NULL,NULL,1,'243,244,245','246','youtube',NULL,'velburry','<strong>Article no: 2067</strong><br><br><strong>Product Description:</strong><br><br><b>Pears</b> Transparent <b>Soap Blue</b> pamper your skin with this Pure and Gentle <b>soap</b> bar from <b>Pears</b>. Made with the goodness of natural oils and pure glycerin, this <b>soap</b> bar moisturizes your skin and gives it a soft and supple feel. ... This <b>soap</b> also retains the natural oil of your skin to not leave it dry after a bath.<br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Mint Extracts Keep Your Skin Soft &amp; Fresh During Summers</span></li><br> 	<li><span class=\"a-list-item\">Pure Glycerin In Pears Preserves Your SkinS Natural Moisture To Keep It, Young</span></li><br> 	<li><span class=\"a-list-item\">Keeps Your Skin Young</span></li><br> 	<li><span class=\"a-list-item\">Keeps Your Skin Moisturised</span></li><br> 	<li><span class=\"a-list-item\">Locks In The Natural Moisture Of Your Skin Original Glycerine Bar</span></li><br></ul>',210.00,210.00,0,'[]','[]','[]','[]',0,1,0,1,'pc',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Pears Blue Soap with Mint Extract Soap','<strong>Article no: 2067</strong><br><br><strong>Product Description:</strong><br><br><b>Pears</b> Transparent <b>Soap Blue</b> pamper your skin with this Pure and Gentle <b>soap</b> bar from <b>Pears</b>. Made with the goodness of natural oils and pure glycerin, this <b>soap</b> bar moisturizes your skin and gives it a soft and supple feel. ... This <b>soap</b> also retains the natural oil of your skin to not leave it dry after a bath.<br><ul class=\"a-unordered-list a-vertical a-spacing-mini\"><br> 	<li><span class=\"a-list-item\">Mint Extracts Keep Your Skin Soft &amp; Fresh During Summers</span></li><br> 	<li><span class=\"a-list-item\">Pure Glycerin In Pears Preserves Your SkinS Natural Moisture To Keep It, Young</span></li><br> 	<li><span class=\"a-list-item\">Keeps Your Skin Young</span></li><br> 	<li><span class=\"a-list-item\">Keeps Your Skin Moisturised</span></li><br> 	<li><span class=\"a-list-item\">Locks In The Natural Moisture Of Your Skin Original Glycerine Bar</span></li><br></ul>',NULL,NULL,'-imzkv',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-13 05:32:16'),(575,'Molfix No. 1 Newborn, 2-5 KG, 84-Pack','admin',9,30,NULL,NULL,1,'248','247','youtube',NULL,'velburry','<strong>Article no: 5001</strong><br><br><strong>Product Description:</strong><br><br><b>Molfix</b> baby diapers are produced with the utmost care, they are extremely gentle on your babys sensitive skin, and their green absorbent layer provides perfect dryness while the outer surface of the <b>diaper</b> protects the skin.<br><ul><br> 	<li>Newborn 2-5KG / 84 pcs</li><br> 	<li>Comfortable and Flexible Central Elastic System</li><br></ul><br><strong>•</strong> 3D Technology preventing sagging; More Elastic Side Bands<br><strong>•</strong> Hypoallergenic Latex Paraben and BPA Free.<br><strong>•</strong> Packing May be Changed Available in Market.<br><br><strong>•</strong> Double Anti Leakage Elastic Barriers<br><strong>•</strong> Aloe Vera and Chamomile Extracts that prevents rashes<br><strong>•</strong> Air Soft Technology to keep it breathable<br><strong>•</strong> Anti-Leakage Elastic Barriers<br><strong>•</strong> No Sagging<br><strong>•</strong> Skin Friendly Approved.<br><br>&nbsp;',1720.00,1620.00,0,'[]','[]','[]','[]',0,1,1,10,'pc',1,100.00,'amount',0.00,'amount','flat_rate',0.00,0,'Molfix No. 1 Newborn, 2-5 KG, 84-Pack','<strong>Article no: 5001</strong><br><br><strong>Product Description:</strong><br><br><b>Molfix</b> baby diapers are produced with the utmost care, they are extremely gentle on your babys sensitive skin, and their green absorbent layer provides perfect dryness while the outer surface of the <b>diaper</b> protects the skin.<br><ul><br> 	<li>Newborn 2-5KG / 84 pcs</li><br> 	<li>Comfortable and Flexible Central Elastic System</li><br></ul><br><strong>•</strong> 3D Technology preventing sagging; More Elastic Side Bands<br><strong>•</strong> Hypoallergenic Latex Paraben and BPA Free.<br><strong>•</strong> Packing May be Changed Available in Market.<br><br><strong>•</strong> Double Anti Leakage Elastic Barriers<br><strong>•</strong> Aloe Vera and Chamomile Extracts that prevents rashes<br><strong>•</strong> Air Soft Technology to keep it breathable<br><strong>•</strong> Anti-Leakage Elastic Barriers<br><strong>•</strong> No Sagging<br><strong>•</strong> Skin Friendly Approved.<br><br>&nbsp;',NULL,NULL,'-lqqbx',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-23 07:50:59'),(576,'Molfix No. 2 Mini, 3-6 KG, 80-Pack','admin',9,30,NULL,NULL,1,'251,250','249','youtube',NULL,'velburry','<strong>Article no: 5002</strong><br><br><strong>Product Description:</strong><br><br><b>Molfix</b> baby diapers are produced with the utmost care, they are extremely gentle on your baby’s sensitive skin, and their green absorbent layer provides perfect dryness while the outer surface of the <b>diaper</b> protects the skin.<br><ul><br> 	<li>Mini 3-6 KG / 80 pcs</li><br> 	<li>Comfortable and Flexible Central Elastic System</li><br></ul><br><strong>•</strong> 3D Technology preventing sagging; More Elastic Side Bands<br><strong>•</strong> Hypoallergenic Latex Paraben and BPA Free.<br><strong>•</strong> Packing May be Changed Available in Market.<br><br><strong>•</strong> Double Anti Leakage Elastic Barriers<br><strong>•</strong> Aloe Vera and Chamomile Extracts that prevents rashes<br><strong>•</strong> Air Soft Technology to keep it breathable<br><strong>•</strong> Anti-Leakage Elastic Barriers<br><strong>•</strong> No Sagging<br><strong>•</strong> Skin Friendly Approved.',1720.00,1620.00,0,'[]','[]','[]','[]',0,1,0,10,'pc',1,100.00,'amount',0.00,'amount','flat_rate',0.00,0,'Molfix No. 2 Mini, 3-6 KG, 80-Pack','<strong>Article no: 5002</strong><br><br><strong>Product Description:</strong><br><br><b>Molfix</b> baby diapers are produced with the utmost care, they are extremely gentle on your baby’s sensitive skin, and their green absorbent layer provides perfect dryness while the outer surface of the <b>diaper</b> protects the skin.<br><ul><br> 	<li>Mini 3-6 KG / 80 pcs</li><br> 	<li>Comfortable and Flexible Central Elastic System</li><br></ul><br><strong>•</strong> 3D Technology preventing sagging; More Elastic Side Bands<br><strong>•</strong> Hypoallergenic Latex Paraben and BPA Free.<br><strong>•</strong> Packing May be Changed Available in Market.<br><br><strong>•</strong> Double Anti Leakage Elastic Barriers<br><strong>•</strong> Aloe Vera and Chamomile Extracts that prevents rashes<br><strong>•</strong> Air Soft Technology to keep it breathable<br><strong>•</strong> Anti-Leakage Elastic Barriers<br><strong>•</strong> No Sagging<br><strong>•</strong> Skin Friendly Approved.',NULL,NULL,'-tohcd',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-23 07:51:09'),(577,'Molfix No. 3 Midi, 4-9 KG, 64-Pack','admin',9,30,NULL,NULL,1,'254,252','253','youtube',NULL,'velburry','<strong>Article no: 5003</strong><br><br><strong>Product Description:</strong><br><br><b>Molfix</b> baby diapers are produced with the utmost care, they are extremely gentle on your baby’s sensitive skin, and their green absorbent layer provides perfect dryness while the outer surface of the <b>diaper</b> protects the skin.<br><ul><br> 	<li>Midi 4-9KG / 64 pcs</li><br> 	<li>Comfortable and Flexible Central Elastic System</li><br></ul><br><strong>•</strong> 3D Technology preventing sagging; More Elastic Side Bands<br><strong>•</strong> Hypoallergenic Latex Paraben and BPA Free.<br><strong>•</strong> Packing May be Changed Available in Market.<br><br><strong>•</strong> Double Anti Leakage Elastic Barriers<br><strong>•</strong> Aloe Vera and Chamomile Extracts that prevents rashes<br><strong>•</strong> Air Soft Technology to keep it breathable<br><strong>•</strong> Anti-Leakage Elastic Barriers<br><strong>•</strong> No Sagging<br><strong>•</strong> Skin Friendly Approved.',1720.00,1620.00,0,'[]','[]','[]','[]',0,1,0,10,'pc',1,100.00,'amount',0.00,'amount','flat_rate',0.00,0,'Molfix No. 3 Midi, 4-9 KG, 64-Pack','<strong>Article no: 5003</strong><br><br><strong>Product Description:</strong><br><br><b>Molfix</b> baby diapers are produced with the utmost care, they are extremely gentle on your baby’s sensitive skin, and their green absorbent layer provides perfect dryness while the outer surface of the <b>diaper</b> protects the skin.<br><ul><br> 	<li>Midi 4-9KG / 64 pcs</li><br> 	<li>Comfortable and Flexible Central Elastic System</li><br></ul><br><strong>•</strong> 3D Technology preventing sagging; More Elastic Side Bands<br><strong>•</strong> Hypoallergenic Latex Paraben and BPA Free.<br><strong>•</strong> Packing May be Changed Available in Market.<br><br><strong>•</strong> Double Anti Leakage Elastic Barriers<br><strong>•</strong> Aloe Vera and Chamomile Extracts that prevents rashes<br><strong>•</strong> Air Soft Technology to keep it breathable<br><strong>•</strong> Anti-Leakage Elastic Barriers<br><strong>•</strong> No Sagging<br><strong>•</strong> Skin Friendly Approved.',NULL,NULL,'-rqmgq',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-23 07:51:16'),(578,'Molfix No. 4 maxi, 7-14 KG, 58-Pack','admin',9,30,NULL,NULL,1,'257,256','255','youtube',NULL,'velburry','<strong>Article no: 5004</strong><br><br><strong>Product Description:</strong><br><br><b>Molfix</b> baby diapers are produced with the utmost care, they are extremely gentle on your baby’s sensitive skin, and their green absorbent layer provides perfect dryness while the outer surface of the <b>diaper</b> protects the skin.<br><ul><br> 	<li>Maxi 7-14KG / 58 pcs</li><br> 	<li>Comfortable and Flexible Central Elastic System</li><br></ul><br><strong>•</strong> 3D Technology preventing sagging; More Elastic Side Bands<br><strong>•</strong> Hypoallergenic Latex Paraben and BPA Free.<br><strong>•</strong> Packing May be Changed Available in Market.<br><br><strong>•</strong> Double Anti Leakage Elastic Barriers<br><strong>•</strong> Aloe Vera and Chamomile Extracts that prevents rashes<br><strong>•</strong> Air Soft Technology to keep it breathable<br><strong>•</strong> Anti-Leakage Elastic Barriers<br><strong>•</strong> No Sagging<br><strong>•</strong> Skin Friendly Approved.',1720.00,1620.00,0,'[]','[]','[]','[]',0,1,0,10,'pc',1,100.00,'amount',0.00,'amount','flat_rate',0.00,0,'Molfix No. 4 maxi, 7-14 KG, 58-Pack','<strong>Article no: 5004</strong><br><br><strong>Product Description:</strong><br><br><b>Molfix</b> baby diapers are produced with the utmost care, they are extremely gentle on your baby’s sensitive skin, and their green absorbent layer provides perfect dryness while the outer surface of the <b>diaper</b> protects the skin.<br><ul><br> 	<li>Maxi 7-14KG / 58 pcs</li><br> 	<li>Comfortable and Flexible Central Elastic System</li><br></ul><br><strong>•</strong> 3D Technology preventing sagging; More Elastic Side Bands<br><strong>•</strong> Hypoallergenic Latex Paraben and BPA Free.<br><strong>•</strong> Packing May be Changed Available in Market.<br><br><strong>•</strong> Double Anti Leakage Elastic Barriers<br><strong>•</strong> Aloe Vera and Chamomile Extracts that prevents rashes<br><strong>•</strong> Air Soft Technology to keep it breathable<br><strong>•</strong> Anti-Leakage Elastic Barriers<br><strong>•</strong> No Sagging<br><strong>•</strong> Skin Friendly Approved.',NULL,NULL,'-7wwbe',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-23 07:51:26'),(579,'Molfix No. 5 junior, 11-18 KG, 52-Pack','admin',9,30,NULL,NULL,1,'260,259','258','youtube',NULL,'velburry','<strong>Article no: 5005</strong><br><br><strong>Product Description:</strong><br><br><b>Molfix</b> baby diapers are produced with the utmost care, they are extremely gentle on your baby’s sensitive skin, and their green absorbent layer provides perfect dryness while the outer surface of the <b>diaper</b> protects the skin.<br><ul><br> 	<li>junior 11-18KG / 52 pcs</li><br> 	<li>Comfortable and Flexible Central Elastic System</li><br></ul><br><strong>•</strong> 3D Technology preventing sagging; More Elastic Side Bands<br><strong>•</strong> Hypoallergenic Latex Paraben and BPA Free.<br><strong>•</strong> Packing May be Changed Available in Market.<br><br><strong>•</strong> Double Anti Leakage Elastic Barriers<br><strong>•</strong> Aloe Vera and Chamomile Extracts that prevents rashes<br><strong>•</strong> Air Soft Technology to keep it breathable<br><strong>•</strong> Anti-Leakage Elastic Barriers<br><strong>•</strong> No Sagging<br><strong>•</strong> Skin Friendly Approved.',1720.00,1620.00,0,'[]','[]','[]','[]',0,1,0,10,'pc',1,100.00,'amount',0.00,'amount','flat_rate',0.00,0,'Molfix No. 5 junior, 11-18 KG, 52-Pack','<strong>Article no: 5005</strong><br><br><strong>Product Description:</strong><br><br><b>Molfix</b> baby diapers are produced with the utmost care, they are extremely gentle on your baby’s sensitive skin, and their green absorbent layer provides perfect dryness while the outer surface of the <b>diaper</b> protects the skin.<br><ul><br> 	<li>junior 11-18KG / 52 pcs</li><br> 	<li>Comfortable and Flexible Central Elastic System</li><br></ul><br><strong>•</strong> 3D Technology preventing sagging; More Elastic Side Bands<br><strong>•</strong> Hypoallergenic Latex Paraben and BPA Free.<br><strong>•</strong> Packing May be Changed Available in Market.<br><br><strong>•</strong> Double Anti Leakage Elastic Barriers<br><strong>•</strong> Aloe Vera and Chamomile Extracts that prevents rashes<br><strong>•</strong> Air Soft Technology to keep it breathable<br><strong>•</strong> Anti-Leakage Elastic Barriers<br><strong>•</strong> No Sagging<br><strong>•</strong> Skin Friendly Approved.',NULL,NULL,'-flnyk',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-23 07:51:33'),(580,'Molfix No. 6 Extra large, 15+ KG, 46-Pack','admin',9,30,NULL,NULL,1,'263,262','261','youtube',NULL,'velburry','<strong>Article no: 5006</strong><br><br><strong>Product Description:</strong><br><br><b>Molfix</b> baby diapers are produced with the utmost care, they are extremely gentle on your baby’s sensitive skin, and their green absorbent layer provides perfect dryness while the outer surface of the <b>diaper</b> protects the skin.<br><ul><br> 	<li>Extra large  15+KG / 46 pcs</li><br> 	<li>Comfortable and Flexible Central Elastic System</li><br></ul><br><strong>•</strong> 3D Technology preventing sagging; More Elastic Side Bands<br><strong>•</strong> Hypoallergenic Latex Paraben and BPA Free.<br><strong>•</strong> Packing May be Changed Available in Market.<br><br><strong>•</strong> Double Anti Leakage Elastic Barriers<br><strong>•</strong> Aloe Vera and Chamomile Extracts that prevents rashes<br><strong>•</strong> Air Soft Technology to keep it breathable<br><strong>•</strong> Anti-Leakage Elastic Barriers<br><strong>•</strong> No Sagging<br><strong>•</strong> Skin Friendly Approved.',1720.00,1620.00,0,'[]','[]','[]','[]',0,1,0,10,'pc',1,100.00,'amount',0.00,'amount','flat_rate',0.00,0,'Molfix No. 6 Extra large, 15+ KG, 46-Pack','<strong>Article no: 5006</strong><br><br><strong>Product Description:</strong><br><br><b>Molfix</b> baby diapers are produced with the utmost care, they are extremely gentle on your baby’s sensitive skin, and their green absorbent layer provides perfect dryness while the outer surface of the <b>diaper</b> protects the skin.<br><ul><br> 	<li>Extra large  15+KG / 46 pcs</li><br> 	<li>Comfortable and Flexible Central Elastic System</li><br></ul><br><strong>•</strong> 3D Technology preventing sagging; More Elastic Side Bands<br><strong>•</strong> Hypoallergenic Latex Paraben and BPA Free.<br><strong>•</strong> Packing May be Changed Available in Market.<br><br><strong>•</strong> Double Anti Leakage Elastic Barriers<br><strong>•</strong> Aloe Vera and Chamomile Extracts that prevents rashes<br><strong>•</strong> Air Soft Technology to keep it breathable<br><strong>•</strong> Anti-Leakage Elastic Barriers<br><strong>•</strong> No Sagging<br><strong>•</strong> Skin Friendly Approved.',NULL,NULL,'-w9bev',0.00,NULL,0,NULL,NULL,'2021-01-08 00:07:16','2021-01-23 07:51:48'),(581,'Pampers New Born, No. 2 Mini, 3-6 KG 80-Pack','admin',9,29,NULL,NULL,NULL,'1029,1030,1028','1029','youtube',NULL,'velburry','<p><b>Article no: 1211</b></p><div class=\"d9FyLd XcVN5d\" style=\"padding: 0px 0px 10px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"><b>Pampers</b>&nbsp;Are Designed With Babies in Mind</div><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Like most modern disposable&nbsp;<b>diapers</b>,&nbsp;<b>Pampers</b>&nbsp;have a layered construction, which allows the transfer and distribution of liquid away from the baby to an absorbent core, where the liquid is locked away to help keep your baby comfortable and dry.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><ul><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">The lining in the diaper contains baby lotion, which prevents irritation</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Stretchy sides provide a comfortable fit</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Magic gel inside the lining allows the diaper to remain dry for 12 hours</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Wetness indicator: when the magic gel turns blue, it indicates that the baby has wet the diaper</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Prevents sagging and bulking with even wetness distribution</li><li><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"></span><b><br></b></li></ul>',3300.00,3200.00,0,'[]','[]','[]',NULL,0,1,0,10,'1',1,100.00,'amount',0.00,'amount','flat_rate',0.00,0,'Pampers New Born, No. 2 Mini, 3-6 KG 80-Pack','<p><b>Article no: 1211</b></p><div class=\"d9FyLd XcVN5d\" style=\"padding: 0px 0px 10px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"><b>Pampers</b>&nbsp;Are Designed With Babies in Mind</div><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Like most modern disposable&nbsp;<b>diapers</b>,&nbsp;<b>Pampers</b>&nbsp;have a layered construction, which allows the transfer and distribution of liquid away from the baby to an absorbent core, where the liquid is locked away to help keep your baby comfortable and dry.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><ul><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">The lining in the diaper contains baby lotion, which prevents irritation</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Stretchy sides provide a comfortable fit</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Magic gel inside the lining allows the diaper to remain dry for 12 hours</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Wetness indicator: when the magic gel turns blue, it indicates that the baby has wet the diaper</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Prevents sagging and bulking with even wetness distribution</li><li><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"></span><b><br></b></li></ul>',NULL,NULL,'pampers-new-born-no-2-mini-3-6-kg-80-pack-vpsnx',0.00,NULL,0,NULL,NULL,'2021-01-13 02:16:55','2021-01-21 09:35:28'),(582,'Pampers Baby-Dry, No. 4 Maxi, 9-18 KG 64-Pack','admin',9,29,NULL,NULL,NULL,'1032,1033,1031','1032','youtube',NULL,'velburry','<p><b>Article no: 1212</b></p><div class=\"d9FyLd XcVN5d\" style=\"padding: 0px 0px 10px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"><b>Pampers</b>&nbsp;Are Designed With Babies in Mind</div><ul><li><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Like most modern disposable&nbsp;<b>diapers</b>,&nbsp;<b>Pampers</b>&nbsp;have a layered construction, which allows the transfer and distribution of liquid away from the baby to an absorbent core, where the liquid is locked away to help keep your baby comfortable and dry.</span></li></ul><p><b><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3></b></p><p><b><ul class=\"list__product--listings\" style=\"margin-bottom: 10px; padding: 0px 0px 0px 1.5em; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;; font-weight: 400;\"></ul></b></p><ul><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Designed to offer better comfort and protection</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Flexible design makes it easy to move around in</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Soft waist band and leg cuffs keeps the pamper secure</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Does not contain any parabens or harmful chemicals that cause irritation</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Micro Pearls technology is able to absorb 30 times more moisture</li></ul>',3300.00,3200.00,0,'[]','[]','[]',NULL,0,1,0,10,'1',1,100.00,'amount',0.00,'amount','flat_rate',0.00,0,'Pampers New Born, No. 2 Mini, 3-6 KG 80-Pack','<p><b>Article no: 1211</b></p><div class=\"d9FyLd XcVN5d\" style=\"padding: 0px 0px 10px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"><b>Pampers</b>&nbsp;Are Designed With Babies in Mind</div><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Like most modern disposable&nbsp;<b>diapers</b>,&nbsp;<b>Pampers</b>&nbsp;have a layered construction, which allows the transfer and distribution of liquid away from the baby to an absorbent core, where the liquid is locked away to help keep your baby comfortable and dry.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><ul><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">The lining in the diaper contains baby lotion, which prevents irritation</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Stretchy sides provide a comfortable fit</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Magic gel inside the lining allows the diaper to remain dry for 12 hours</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Wetness indicator: when the magic gel turns blue, it indicates that the baby has wet the diaper</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Prevents sagging and bulking with even wetness distribution</li><li><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"></span><b><br></b></li></ul>',NULL,NULL,'pampers-new-born-no-2-mini-3-6-kg-80-pack-iqdo4',0.00,NULL,0,NULL,NULL,'2021-01-13 02:17:14','2021-01-21 09:35:41'),(583,'Pampers Baby-Dry, No. 5 Junior, 11-25KG 60-Pack','admin',9,29,NULL,NULL,NULL,'1034,1035,1036,1031','1034','youtube',NULL,'velburry','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 1213</span></p><div class=\"d9FyLd XcVN5d\" style=\"padding: 0px 0px 10px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"><span style=\"font-weight: bolder;\">Pampers</span>&nbsp;Are Designed With Babies in Mind</div><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Like most modern disposable&nbsp;<span style=\"font-weight: bolder;\">diapers</span>,&nbsp;<span style=\"font-weight: bolder;\">Pampers</span>&nbsp;has a layered construction, which allows the transfer and distribution of liquid away from the baby to an absorbent core, where the liquid is locked away to help keep your baby comfortable and dry.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"></span></p><ul><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Increased Comfort and Luxury with silky soft materials</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Breathable fabric allows air circulation to keep your child fresh</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Super Absorbent technology keeps baby dry for 12 hours</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Ultra Care is ensured with chamomile baby lotion</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">3 Way Fit secures diaper and allows free movement</li><li><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"></span></li></ul>',3300.00,3200.00,0,'[]','[]','[]',NULL,0,1,0,10,'1',1,100.00,'amount',0.00,'amount','flat_rate',0.00,0,'Pampers Baby-Dry, No. 5 Junior, 11-25KG 60-Pack','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 1213</span></p><div class=\"d9FyLd XcVN5d\" style=\"padding: 0px 0px 10px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"><span style=\"font-weight: bolder;\">Pampers</span>&nbsp;Are Designed With Babies in Mind</div><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Like most modern disposable&nbsp;<span style=\"font-weight: bolder;\">diapers</span>,&nbsp;<span style=\"font-weight: bolder;\">Pampers</span>&nbsp;has a layered construction, which allows the transfer and distribution of liquid away from the baby to an absorbent core, where the liquid is locked away to help keep your baby comfortable and dry.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"></span></p><ul><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Increased Comfort and Luxury with silky soft materials</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Breathable fabric allows air circulation to keep your child fresh</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Super Absorbent technology keeps baby dry for 12 hours</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Ultra Care is ensured with chamomile baby lotion</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">3 Way Fit secures diaper and allows free movement</li><li><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"></span></li></ul>',NULL,NULL,'pampers-baby-dry-no-5-junior-11-25kg-60-pack-sfrmg',0.00,NULL,0,NULL,NULL,'2021-01-13 02:29:17','2021-01-21 09:36:02'),(584,'Pampers Baby-Dry, No. 6 XL, 15+ KG 48-Pack','admin',9,29,NULL,NULL,NULL,'1037,1038,1031','1037','youtube',NULL,'velburry','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 1214</span></p><div class=\"d9FyLd XcVN5d\" style=\"padding: 0px 0px 10px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"><span style=\"font-weight: bolder;\">Pampers</span>&nbsp;Are Designed With Babies in Mind</div><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Like most modern disposable&nbsp;<span style=\"font-weight: bolder;\">diapers</span>,&nbsp;<span style=\"font-weight: bolder;\">Pampers</span>&nbsp;has a layered construction, which allows the transfer and distribution of liquid away from the baby to an absorbent core, where the liquid is locked away to help keep your baby comfortable and dry.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"></span></p><ul><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Revolutionary three absorb channels which prevent leakage</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Breathable and soft leg cuffs and belt that circulates air and keeps the baby\'s skin fresh</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Flexible waist band that easily adopts the baby\'s movement and keeps him/her comfortable</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Prevents sagging and bulking due to wetness for at least 12 hours</li></ul>',3300.00,3200.00,0,'[]','[]','[]',NULL,0,1,0,10,'1',1,100.00,'amount',0.00,'amount','flat_rate',0.00,0,'Pampers Baby-Dry, No. 6 XL, 15+ KG 48-Pack','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 1214</span></p><div class=\"d9FyLd XcVN5d\" style=\"padding: 0px 0px 10px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"><span style=\"font-weight: bolder;\">Pampers</span>&nbsp;Are Designed With Babies in Mind</div><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Like most modern disposable&nbsp;<span style=\"font-weight: bolder;\">diapers</span>,&nbsp;<span style=\"font-weight: bolder;\">Pampers</span>&nbsp;has a layered construction, which allows the transfer and distribution of liquid away from the baby to an absorbent core, where the liquid is locked away to help keep your baby comfortable and dry.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"></span></p><ul><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Revolutionary three absorb channels which prevent leakage</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Breathable and soft leg cuffs and belt that circulates air and keeps the baby\'s skin fresh</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Flexible waist band that easily adopts the baby\'s movement and keeps him/her comfortable</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Prevents sagging and bulking due to wetness for at least 12 hours</li></ul>',NULL,NULL,'pampers-baby-dry-no-6-xl-15-kg-48-pack-trkpu',0.00,NULL,0,NULL,NULL,'2021-01-13 02:35:53','2021-01-21 09:36:36'),(585,'Pampers Baby-Dry, No. 3 Midi, 6-10 KG 72-Pack','admin',9,29,NULL,NULL,NULL,'1040,1039,1031','1040','youtube',NULL,'velburry','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 1215</span></p><div class=\"d9FyLd XcVN5d\" style=\"padding: 0px 0px 10px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"><span style=\"font-weight: bolder;\">Pampers</span>&nbsp;Are Designed With Babies in Mind</div><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Like most modern disposable&nbsp;<span style=\"font-weight: bolder;\">diapers</span>,&nbsp;<span style=\"font-weight: bolder;\">Pampers</span>&nbsp;has a layered construction, which allows the transfer and distribution of liquid away from the baby to an absorbent core, where the liquid is locked away to help keep your baby comfortable and dry.</span></p><h3 class=\"list__product--title\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-weight: 600; line-height: 1.35; font-size: 15px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\"><span style=\"font-weight: bolder;\">Product Highlights:</span></h3><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\"></span></p><ul class=\"list__product--listings\" style=\"margin-bottom: 10px; padding: 0px 0px 0px 1.5em; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"></ul><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"></span></p><ul style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Designed to offer better comfort and protection</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Flexible design makes it easy to move around in</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Soft waist band and leg cuffs keeps the pamper secure</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Does not contain any parabens or harmful chemicals that cause irritation</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Micro Pearls technology is able to absorb 30 times more moisture</li></ul>',3300.00,3200.00,0,'[]','[]','[]',NULL,0,1,0,0,'1',1,100.00,'amount',0.00,'amount','flat_rate',0.00,0,'Pampers Baby-Dry, No. 3 Midi, 6-10 KG 72-Pack','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 1215</span></p><div class=\"d9FyLd XcVN5d\" style=\"padding: 0px 0px 10px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"><span style=\"font-weight: bolder;\">Pampers</span>&nbsp;Are Designed With Babies in Mind</div><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Like most modern disposable&nbsp;<span style=\"font-weight: bolder;\">diapers</span>,&nbsp;<span style=\"font-weight: bolder;\">Pampers</span>&nbsp;has a layered construction, which allows the transfer and distribution of liquid away from the baby to an absorbent core, where the liquid is locked away to help keep your baby comfortable and dry.</span></p><h3 class=\"list__product--title\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-weight: 600; line-height: 1.35; font-size: 15px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\"><span style=\"font-weight: bolder;\">Product Highlights:</span></h3><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\"></span></p><ul class=\"list__product--listings\" style=\"margin-bottom: 10px; padding: 0px 0px 0px 1.5em; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"></ul><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"></span></p><ul style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Designed to offer better comfort and protection</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Flexible design makes it easy to move around in</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Soft waist band and leg cuffs keeps the pamper secure</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Does not contain any parabens or harmful chemicals that cause irritation</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Micro Pearls technology is able to absorb 30 times more moisture</li></ul>',NULL,NULL,'pampers-baby-dry-no-3-midi-6-10-kg-72-pack-kl8ls',0.00,NULL,0,NULL,NULL,'2021-01-13 02:41:00','2021-01-21 09:36:49'),(586,'Pampers No. 1, New Born Dry 2-5 KG 21-Pack','admin',9,29,NULL,NULL,NULL,'1043,1042,1041','1043','youtube',NULL,'velburry','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 1216</span></p><div class=\"d9FyLd XcVN5d\" style=\"padding: 0px 0px 10px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"><span style=\"font-weight: bolder;\">Pampers</span>&nbsp;Are Designed With Babies in Mind</div><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Like most modern disposable&nbsp;<span style=\"font-weight: bolder;\">diapers</span>,&nbsp;<span style=\"font-weight: bolder;\">Pampers</span>&nbsp;have a layered construction, which allows the transfer and distribution of liquid away from the baby to an absorbent core, where the liquid is locked away to help keep your baby comfortable and dry.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"></span></p><ul><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Contain aloe leaf extracts, which prevents rashes and keeps the baby\'s skin smooth</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Has three absorb channels, which distributes the wetness evenly and prevents sagging</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">The naval-friendly shape of the nappy fits comfortably around the newborn\'s belly</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Contains a premium protection indicator, which will tell you through color change that the baby needs changing</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Stretchy sides provide a comfortable fit</li></ul>',1750.00,1650.00,0,'[]','[]','[]',NULL,0,1,0,10,'1',1,100.00,'amount',0.00,'amount','flat_rate',0.00,0,'Pampers No. 1, New Born Dry 2-5 KG 21-Pack','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 1216</span></p><div class=\"d9FyLd XcVN5d\" style=\"padding: 0px 0px 10px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"><span style=\"font-weight: bolder;\">Pampers</span>&nbsp;Are Designed With Babies in Mind</div><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Like most modern disposable&nbsp;<span style=\"font-weight: bolder;\">diapers</span>,&nbsp;<span style=\"font-weight: bolder;\">Pampers</span>&nbsp;have a layered construction, which allows the transfer and distribution of liquid away from the baby to an absorbent core, where the liquid is locked away to help keep your baby comfortable and dry.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"></span></p><ul><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Contain aloe leaf extracts, which prevents rashes and keeps the baby\'s skin smooth</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Has three absorb channels, which distributes the wetness evenly and prevents sagging</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">The naval-friendly shape of the nappy fits comfortably around the newborn\'s belly</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Contains a premium protection indicator, which will tell you through color change that the baby needs changing</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Stretchy sides provide a comfortable fit</li></ul>',NULL,NULL,'pampers-no-1-new-born-dry-2-5-kg-21-pack-fvcbn',0.00,NULL,0,NULL,NULL,'2021-01-13 02:44:04','2021-01-21 09:37:28'),(587,'Pampers Baby-Dry, No. 3 Midi, 6-10 KG 18-Pack','admin',9,29,NULL,NULL,NULL,'1044,1033,1042','1044','youtube',NULL,'velburry','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 1217</span></p><div class=\"d9FyLd XcVN5d\" style=\"padding: 0px 0px 10px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"><span style=\"font-weight: bolder;\">Pampers</span>&nbsp;Are Designed With Babies in Mind</div><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Like most modern disposable&nbsp;<span style=\"font-weight: bolder;\">diapers</span>,&nbsp;<span style=\"font-weight: bolder;\">Pampers</span>&nbsp;has a layered construction, which allows the transfer and distribution of liquid away from the baby to an absorbent core, where the liquid is locked away to help keep your baby comfortable and dry.</span></p><h3 class=\"list__product--title\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-weight: 600; line-height: 1.35; font-size: 15px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\"><span style=\"font-weight: bolder;\">Product Highlights:</span></h3><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\"></span></p><ul class=\"list__product--listings\" style=\"margin-bottom: 10px; padding: 0px 0px 0px 1.5em; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"></ul><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"></span></p><ul style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Designed to offer better comfort and protection</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Flexible design makes it easy to move around in</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Soft waist band and leg cuffs keeps the pamper secure</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Does not contain any parabens or harmful chemicals that cause irritation</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Micro Pearls technology is able to absorb 30 times more moisture</li></ul>',1750.00,1650.00,0,'[]','[]','[]',NULL,0,1,0,10,'1',1,100.00,'amount',0.00,'amount','flat_rate',0.00,0,'Pampers Baby-Dry, No. 3 Midi, 6-10 KG 18-Pack','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 1217</span></p><div class=\"d9FyLd XcVN5d\" style=\"padding: 0px 0px 10px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"><span style=\"font-weight: bolder;\">Pampers</span>&nbsp;Are Designed With Babies in Mind</div><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Like most modern disposable&nbsp;<span style=\"font-weight: bolder;\">diapers</span>,&nbsp;<span style=\"font-weight: bolder;\">Pampers</span>&nbsp;has a layered construction, which allows the transfer and distribution of liquid away from the baby to an absorbent core, where the liquid is locked away to help keep your baby comfortable and dry.</span></p><h3 class=\"list__product--title\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-weight: 600; line-height: 1.35; font-size: 15px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\"><span style=\"font-weight: bolder;\">Product Highlights:</span></h3><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\"></span></p><ul class=\"list__product--listings\" style=\"margin-bottom: 10px; padding: 0px 0px 0px 1.5em; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"></ul><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"></span></p><ul style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Designed to offer better comfort and protection</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Flexible design makes it easy to move around in</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Soft waist band and leg cuffs keeps the pamper secure</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Does not contain any parabens or harmful chemicals that cause irritation</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Micro Pearls technology is able to absorb 30 times more moisture</li></ul>',NULL,NULL,'pampers-baby-dry-no-3-midi-6-10-kg-18-pack-a3b1y',0.00,NULL,0,NULL,NULL,'2021-01-13 02:47:33','2021-01-21 09:37:39'),(588,'Pampers Baby-Dry, No. 4 Maxi, 9-18 KG 16-Pack','admin',9,29,NULL,NULL,NULL,'1045,1042,1041','1045','youtube',NULL,'velburry','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 1218</span></p><div class=\"d9FyLd XcVN5d\" style=\"padding: 0px 0px 10px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"><span style=\"font-weight: bolder;\">Pampers</span>&nbsp;Are Designed With Babies in Mind</div><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Like most modern disposable&nbsp;<span style=\"font-weight: bolder;\">diapers</span>,&nbsp;<span style=\"font-weight: bolder;\">Pampers</span>&nbsp;has a layered construction, which allows the transfer and distribution of liquid away from the baby to an absorbent core, where the liquid is locked away to help keep your baby comfortable and dry.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"></span></p><ul><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Designed to offer better comfort and protection</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Flexible design makes it easy to move around in</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Soft waistband and leg cuffs keeps the pamper secure</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Does not contain any parabens or harmful chemicals that cause irritation</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Micro Pearls technology is able to absorb 30 times more moisture</li></ul>',1750.00,1650.00,0,'[]','[]','[]',NULL,0,1,0,0,'1',1,100.00,'amount',0.00,'amount','flat_rate',0.00,0,'Pampers Baby-Dry, No. 4 Maxi, 9-18 KG 16-Pack','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 1218</span></p><div class=\"d9FyLd XcVN5d\" style=\"padding: 0px 0px 10px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"><span style=\"font-weight: bolder;\">Pampers</span>&nbsp;Are Designed With Babies in Mind</div><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Like most modern disposable&nbsp;<span style=\"font-weight: bolder;\">diapers</span>,&nbsp;<span style=\"font-weight: bolder;\">Pampers</span>&nbsp;has a layered construction, which allows the transfer and distribution of liquid away from the baby to an absorbent core, where the liquid is locked away to help keep your baby comfortable and dry.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"></span></p><ul><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Designed to offer better comfort and protection</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Flexible design makes it easy to move around in</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Soft waistband and leg cuffs keeps the pamper secure</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Does not contain any parabens or harmful chemicals that cause irritation</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Micro Pearls technology is able to absorb 30 times more moisture</li></ul>',NULL,NULL,'pampers-baby-dry-no-4-maxi-9-18-kg-16-pack-zgfoz',0.00,NULL,0,NULL,NULL,'2021-01-13 02:51:38','2021-01-21 09:37:56'),(589,'Pampers Baby-Dry, No. 5 Junior, 11-25KG 15-Pack','admin',9,29,NULL,NULL,NULL,'1047,1039,1042','1047','youtube',NULL,'velburry','<div class=\"bg-white mb-3 shadow-sm rounded\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><div class=\"tab-content pt-0\"><div class=\"tab-pane fade active show\" id=\"tab_default_1\"><div class=\"p-4\"><div class=\"mw-100 overflow-hidden text-left\"><p><span style=\"font-weight: bolder;\">Article no: 1219</span></p><div class=\"d9FyLd XcVN5d\" style=\"padding: 0px 0px 10px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"><span style=\"font-weight: bolder;\">Pampers</span>&nbsp;Are Designed With Babies in Mind</div><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Like most modern disposable&nbsp;<span style=\"font-weight: bolder;\">diapers</span>,&nbsp;<span style=\"font-weight: bolder;\">Pampers</span>&nbsp;has a layered construction, which allows the transfer and distribution of liquid away from the baby to an absorbent core, where the liquid is locked away to help keep your baby comfortable and dry.</span></p><h3 class=\"list__product--title\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-weight: 600; line-height: 1.35; font-size: 15px; color: rgb(34, 34, 34);\">Product Highlights:</h3><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"></span></p><ul><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Increased Comfort and Luxury with silky soft materials</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Breathable fabric allows air circulation to keep your child fresh</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Super Absorbent technology keeps baby dry for 12 hours</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Ultra Care is ensured with chamomile baby lotion</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">3 Way Fit secures diaper and allows free movement</li><li><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"></span></li></ul></div></div></div></div></div><div class=\"bg-white rounded shadow-sm\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><div class=\"border-bottom p-3\"></div></div>',1750.00,1650.00,0,'[]','[]','[]',NULL,0,1,1,1,'1',1,100.00,'amount',0.00,'amount','flat_rate',0.00,0,'Pampers Baby-Dry, No. 5 Junior, 11-25KG 15-Pack','<div class=\"bg-white mb-3 shadow-sm rounded\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><div class=\"tab-content pt-0\"><div class=\"tab-pane fade active show\" id=\"tab_default_1\"><div class=\"p-4\"><div class=\"mw-100 overflow-hidden text-left\"><p><span style=\"font-weight: bolder;\">Article no: 1219</span></p><div class=\"d9FyLd XcVN5d\" style=\"padding: 0px 0px 10px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"><span style=\"font-weight: bolder;\">Pampers</span>&nbsp;Are Designed With Babies in Mind</div><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Like most modern disposable&nbsp;<span style=\"font-weight: bolder;\">diapers</span>,&nbsp;<span style=\"font-weight: bolder;\">Pampers</span>&nbsp;has a layered construction, which allows the transfer and distribution of liquid away from the baby to an absorbent core, where the liquid is locked away to help keep your baby comfortable and dry.</span></p><h3 class=\"list__product--title\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-weight: 600; line-height: 1.35; font-size: 15px; color: rgb(34, 34, 34);\">Product Highlights:</h3><p><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"></span></p><ul><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Increased Comfort and Luxury with silky soft materials</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Breathable fabric allows air circulation to keep your child fresh</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Super Absorbent technology keeps baby dry for 12 hours</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Ultra Care is ensured with chamomile baby lotion</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">3 Way Fit secures diaper and allows free movement</li><li><span class=\"hgKElc\" style=\"padding: 0px 8px 0px 0px; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\"></span></li></ul></div></div></div></div></div><div class=\"bg-white rounded shadow-sm\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><div class=\"border-bottom p-3\"></div></div>',NULL,NULL,'pampers-baby-dry-no-5-junior-11-25kg-15-pack-crvjq',0.00,NULL,0,NULL,NULL,'2021-01-13 02:55:31','2021-01-21 09:38:07'),(590,'Canbebe Jumbo New Born No. 1 2-5 KG 84-Pack','admin',9,31,NULL,NULL,NULL,'1050,1048,1049','1050','youtube',NULL,'velburry','<p><b>Article no: 2020</b></p><p><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Let your baby enjoy hours of uninterrupted sleep and play with&nbsp;</span><b style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Canbebe</b><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;ComfortDry&nbsp;</span><b style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diapers</b><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">! The super-absorbent layer of our&nbsp;</span><b style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diaper</b><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;keeps your little one dry and fits your baby perfectly. The elastic tape prevents leakages by covering the baby\'s belly and gives total freedom to move around.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><p style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\"><br></p><ul><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Each pack of Canbebe Jumbo newborn pampers in No.1 contains a total of 84 pieces</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">The Canbebe Jumbo Newborn pampers in No. 1 are meant for use on new born babies or babies that weigh around 2 to 5 kg only</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe Jumbo newborn No.1 pampers make use of Canbebe\'s Flexfit technology which makes these pampers 21% more absorbent</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">To prevent leaks, these pampers also have a front and back barrier lock that can reduce the chances of pamper leakage</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">The pampers are designed to be free of parabens and fragrances, which can irritate the sensitive skin of newborns</li></ul><p><b><br></b></p>',1600.00,1500.00,0,'[]','[]','[]',NULL,0,1,0,0,'1',1,100.00,'amount',0.00,'amount','flat_rate',0.00,0,'Canbebe Jumbo New Born No. 1 2-5 KG 84-Pack','<p><b>Article no: 2020</b></p><p><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Let your baby enjoy hours of uninterrupted sleep and play with&nbsp;</span><b style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Canbebe</b><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;ComfortDry&nbsp;</span><b style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diapers</b><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">! The super-absorbent layer of our&nbsp;</span><b style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diaper</b><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;keeps your little one dry and fits your baby perfectly. The elastic tape prevents leakages by covering the baby\'s belly and gives total freedom to move around.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><p style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\"><br></p><ul><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Each pack of Canbebe Jumbo newborn pampers in No.1 contains a total of 84 pieces</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">The Canbebe Jumbo Newborn pampers in No. 1 are meant for use on new born babies or babies that weigh around 2 to 5 kg only</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe Jumbo newborn No.1 pampers make use of Canbebe\'s Flexfit technology which makes these pampers 21% more absorbent</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">To prevent leaks, these pampers also have a front and back barrier lock that can reduce the chances of pamper leakage</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">The pampers are designed to be free of parabens and fragrances, which can irritate the sensitive skin of newborns</li></ul><p><b><br></b></p>',NULL,NULL,'canbebe-jumbo-new-born-no-1-2-5-kg-84-pack-skxu1',0.00,NULL,0,NULL,NULL,'2021-01-13 03:02:38','2021-01-21 09:24:51'),(591,'Canbebe Comfort-Dry jumbo mini no.2 3-6 KG 74 packs','admin',9,31,NULL,NULL,NULL,'1053,1051,1052','1053','youtube',NULL,'velburry','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 2021</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Let your baby enjoy hours of uninterrupted sleep and play with&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Canbebe</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;ComfortDry&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diapers</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">! The super-absorbent layer of our&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diaper</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;keeps your little one dry and fits your baby perfectly. The elastic tape prevents leakages by covering the baby\'s belly and gives total freedom to move around.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><ul class=\"list__product--listings\" style=\"margin-bottom: 10px; padding: 0px 0px 0px 1.5em; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe\'s Jumbo mini No. 2 pampers are designed to be worn by babies who weigh around 3 to 6 kg</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Each pack of Canbebe\'s Jumbo mini pampers contains a total of 74 pieces of pampers</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">These pampers are specifically designed with an anti-leak technology on the front and back of them.</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\"></li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe\'s Jumbo mini pampers have the Flexfit technology which prevents collection of moisture</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">This feature also helps to make Canbebe\'s Jumbo mini pampers 21% dryer than other pampers</li></ul>',1600.00,1500.00,0,'[]','[]','[]',NULL,0,1,0,1,'1',1,100.00,'amount',0.00,'amount','flat_rate',0.00,0,'Canbebe Comfort-Dry jumbo mini no.2 3-6 KG 74 packs','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 2021</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Let your baby enjoy hours of uninterrupted sleep and play with&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Canbebe</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;ComfortDry&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diapers</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">! The super-absorbent layer of our&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diaper</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;keeps your little one dry and fits your baby perfectly. The elastic tape prevents leakages by covering the baby\'s belly and gives total freedom to move around.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><ul class=\"list__product--listings\" style=\"margin-bottom: 10px; padding: 0px 0px 0px 1.5em; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe\'s Jumbo mini No. 2 pampers are designed to be worn by babies who weigh around 3 to 6 kg</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Each pack of Canbebe\'s Jumbo mini pampers contains a total of 74 pieces of pampers</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">These pampers are specifically designed with an anti-leak technology on the front and back of them.</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\"></li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe\'s Jumbo mini pampers have the Flexfit technology which prevents collection of moisture</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">This feature also helps to make Canbebe\'s Jumbo mini pampers 21% dryer than other pampers</li></ul>',NULL,NULL,'canbebe-comfort-dry-jumbo-mini-no2-3-6-kg-74-packs-wedtb',0.00,NULL,0,NULL,NULL,'2021-01-13 03:17:01','2021-01-21 09:24:39'),(592,'Canbebe Jumbo Midi No. 3, 4-9 KG 64-Pack','admin',9,31,NULL,NULL,NULL,'1054,1051,1052','1054','youtube',NULL,'velburry','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 2022</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Let your baby enjoy hours of uninterrupted sleep and play with&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Canbebe</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;ComfortDry&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diapers</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">! The super-absorbent layer of our&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diaper</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;keeps your little one dry and fits your baby perfectly. The elastic tape prevents leakages by covering the baby\'s belly and gives total freedom to move around.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><ul class=\"list__product--listings\" style=\"margin-bottom: 10px; padding: 0px 0px 0px 1.5em; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe jumbo midi pampers in number 3 are designed for growing babies who weigh around 4kgs to 9kgs.<p style=\"margin: 1em 0px;\"></p></li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Each pack of Canbebe jumbo midi pampers in Number 3 contains 64 pieces for babies</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">These pampers have the Canbebe FlexFit technology which makes these pampers 21% more absorbent than others</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">The Canbebe jumbo midi pampers in number 3 come with sticky, elastic side straps that are easy to fix in place on the baby</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">They also have an anti-leak and anti-odor technology, which makes them perfect for long wear</li></ul>',1600.00,1500.00,0,'[]','[]','[]',NULL,0,1,0,1,'1',1,100.00,'amount',0.00,'amount','flat_rate',0.00,0,'Canbebe Jumbo Midi No. 3, 4-9 KG 64-Pack','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 2022</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Let your baby enjoy hours of uninterrupted sleep and play with&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Canbebe</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;ComfortDry&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diapers</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">! The super-absorbent layer of our&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diaper</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;keeps your little one dry and fits your baby perfectly. The elastic tape prevents leakages by covering the baby\'s belly and gives total freedom to move around.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><ul class=\"list__product--listings\" style=\"margin-bottom: 10px; padding: 0px 0px 0px 1.5em; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe jumbo midi pampers in number 3 are designed for growing babies who weigh around 4kgs to 9kgs.<p style=\"margin: 1em 0px;\"></p></li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Each pack of Canbebe jumbo midi pampers in Number 3 contains 64 pieces for babies</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">These pampers have the Canbebe FlexFit technology which makes these pampers 21% more absorbent than others</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">The Canbebe jumbo midi pampers in number 3 come with sticky, elastic side straps that are easy to fix in place on the baby</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">They also have an anti-leak and anti-odor technology, which makes them perfect for long wear</li></ul>',NULL,NULL,'canbebe-jumbo-midi-no-3-4-9-kg-64-pack-bvbjx',0.00,NULL,0,NULL,NULL,'2021-01-13 03:19:47','2021-01-21 09:26:48'),(593,'Canbebe Jumbo Maxi No. 4, 7-18 KG 58-Pack','admin',9,31,NULL,NULL,NULL,'1055,1051,1052','1055','youtube',NULL,'velburry','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 2023</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Let your baby enjoy hours of uninterrupted sleep and play with&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Canbebe</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;ComfortDry&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diapers</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">! The super-absorbent layer of our&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diaper</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;keeps your little one dry and fits your baby perfectly. The elastic tape prevents leakages by covering the baby\'s belly and gives total freedom to move around.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><ul class=\"list__product--listings\" style=\"margin-bottom: 10px; padding: 0px 0px 0px 1.5em; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Each pack of Canbebe jumbo maxi pampers in No.4 contains a total of 58 pieces</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe jumbo maxi pampers in No.4 are suited for babies who weigh around 7kg to 18kg</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe\'s pampers come with the FlexFit technology that prevents moisture collecting on skin of the babies</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">These pampers are found to be 21% more efficient than other pampers in the market</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe\'s jumbo maxi pampers are tested by dermatologists and can even be used for babies who have sensitive skin</li></ul>',1600.00,1500.00,0,'[]','[]','[]',NULL,0,1,0,1,'1',1,100.00,'amount',0.00,'amount','flat_rate',0.00,0,'Canbebe Jumbo Maxi No. 4, 7-18 KG 58-Pack','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 2023</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Let your baby enjoy hours of uninterrupted sleep and play with&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Canbebe</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;ComfortDry&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diapers</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">! The super-absorbent layer of our&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diaper</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;keeps your little one dry and fits your baby perfectly. The elastic tape prevents leakages by covering the baby\'s belly and gives total freedom to move around.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><ul class=\"list__product--listings\" style=\"margin-bottom: 10px; padding: 0px 0px 0px 1.5em; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Each pack of Canbebe jumbo maxi pampers in No.4 contains a total of 58 pieces</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe jumbo maxi pampers in No.4 are suited for babies who weigh around 7kg to 18kg</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe\'s pampers come with the FlexFit technology that prevents moisture collecting on skin of the babies</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">These pampers are found to be 21% more efficient than other pampers in the market</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe\'s jumbo maxi pampers are tested by dermatologists and can even be used for babies who have sensitive skin</li></ul>',NULL,NULL,'canbebe-jumbo-maxi-no-4-7-18-kg-58-pack-fb4qs',0.00,NULL,0,NULL,NULL,'2021-01-13 03:22:46','2021-01-21 09:25:30'),(594,'Canbebe Comfort Dry No. 5 Junior, Jumbo, 11-25 KG, 52-Pack','admin',9,31,NULL,NULL,NULL,'1056,1051,1052','1056','youtube',NULL,'velburry','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 2024</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Let your baby enjoy hours of uninterrupted sleep and play with&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Canbebe</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;ComfortDry&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diapers</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">! The super-absorbent layer of our&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diaper</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;keeps your little one dry and fits your baby perfectly. The elastic tape prevents leakages by covering the baby\'s belly and gives total freedom to move around.</span></p><h3 class=\"list__product--title\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-weight: 600; line-height: 1.35; font-size: 15px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><ul class=\"list__product--listings\" style=\"margin-bottom: 10px; padding: 0px 0px 0px 1.5em; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe jumbo junior pampers in number 5 are designed for growing babies who weigh around 11kgs to 25kgs.<p style=\"margin: 1em 0px;\"></p></li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Each pack of Canbebe jumbo midi pampers in Number 5 contains 52 pieces for babies</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">These pampers have the Canbebe FlexFit technology which makes these pampers 21% more absorbent than others</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">The Canbebe jumbo midi pampers in number 5 come with sticky, elastic side straps that are easy to fix in place on the baby</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">They also have an anti-leak and anti-odor technology, which makes them perfect for long wear</li></ul>',1600.00,1500.00,0,'[]','[]','[]',NULL,0,1,0,1,'1',1,100.00,'amount',0.00,'amount','flat_rate',0.00,0,'Canbebe Comfort Dry No. 5 Junior, Jumbo, 11-25 KG, 52-Pack','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 2024</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Let your baby enjoy hours of uninterrupted sleep and play with&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Canbebe</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;ComfortDry&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diapers</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">! The super-absorbent layer of our&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diaper</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;keeps your little one dry and fits your baby perfectly. The elastic tape prevents leakages by covering the baby\'s belly and gives total freedom to move around.</span></p><h3 class=\"list__product--title\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-weight: 600; line-height: 1.35; font-size: 15px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><ul class=\"list__product--listings\" style=\"margin-bottom: 10px; padding: 0px 0px 0px 1.5em; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe jumbo junior pampers in number 5 are designed for growing babies who weigh around 11kgs to 25kgs.<p style=\"margin: 1em 0px;\"></p></li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Each pack of Canbebe jumbo midi pampers in Number 5 contains 52 pieces for babies</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">These pampers have the Canbebe FlexFit technology which makes these pampers 21% more absorbent than others</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">The Canbebe jumbo midi pampers in number 5 come with sticky, elastic side straps that are easy to fix in place on the baby</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">They also have an anti-leak and anti-odor technology, which makes them perfect for long wear</li></ul>',NULL,NULL,'canbebe-comfort-dry-no-5-junior-jumbo-11-25-kg-52-pack-qaltx',0.00,NULL,0,NULL,NULL,'2021-01-13 03:26:53','2021-01-21 09:25:40'),(595,'Canbebe Comfort Dry No. 6 , Jumbo Extra Large, 16+ KG, 46-Pack','admin',9,31,NULL,NULL,NULL,'1057,1051,1052','1057','youtube',NULL,'velburry','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 2025</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Let your baby enjoy hours of uninterrupted sleep and play with&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Canbebe</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;ComfortDry&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diapers</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">! The super-absorbent layer of our&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diaper</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;keeps your little one dry and fits your baby perfectly. The elastic tape prevents leakages by covering the baby\'s belly and gives total freedom to move around.</span></p><h3 class=\"list__product--title\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-weight: 600; line-height: 1.35; font-size: 15px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\"><br></h3>',1150.00,1050.00,0,'[]','[]','[]',NULL,0,1,0,1,'1',1,100.00,'amount',0.00,'amount','flat_rate',0.00,0,'Canbebe Comfort Dry No. 6 , Jumbo Extra Large, 16+ KG, 46-Pack','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 2025</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Let your baby enjoy hours of uninterrupted sleep and play with&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Canbebe</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;ComfortDry&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diapers</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">! The super-absorbent layer of our&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diaper</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;keeps your little one dry and fits your baby perfectly. The elastic tape prevents leakages by covering the baby\'s belly and gives total freedom to move around.</span></p><h3 class=\"list__product--title\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-weight: 600; line-height: 1.35; font-size: 15px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\"><br></h3>',NULL,NULL,'canbebe-comfort-dry-no-6--jumbo-extra-large-16-kg-46-pack-jkpjm',0.00,NULL,0,NULL,NULL,'2021-01-13 03:33:55','2021-01-21 09:27:30'),(596,'Canbebe Jumbo Mini No. 2, 3-6 KG 40-Pack','admin',9,31,NULL,NULL,NULL,'1058,1051,1052','1058','youtube',NULL,'velburry','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 2026</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Let your baby enjoy hours of uninterrupted sleep and play with&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Canbebe</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;ComfortDry&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diapers</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">! The super-absorbent layer of our&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diaper</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;keeps your little one dry and fits your baby perfectly. The elastic tape prevents leakages by covering the baby\'s belly and gives total freedom to move around.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">roduct Highlights:</h3><ul class=\"list__product--listings\" style=\"margin-bottom: 10px; padding: 0px 0px 0px 1.5em; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe\'s Jumbo mini No. 2 pampers are designed to be worn by babies who weigh around 3 to 6 kg</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Each pack of Canbebe\'s Jumbo mini pampers contains a total of 40 pieces of pampers</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">These pampers are specifically designed with an anti-leak technology on the front and back of them.</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\"></li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe\'s Jumbo mini pampers have the Flexfit technology which prevents collection of moisture</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">This feature also helps to make Canbebe\'s Jumbo mini pampers 21% dryer than other pampers</li></ul>',1150.00,1050.00,0,'[]','[]','[]',NULL,0,1,0,1,'1',1,100.00,'amount',0.00,'amount','flat_rate',0.00,0,'Canbebe Jumbo Mini No. 2, 3-6 KG 40-Pack','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 2026</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Let your baby enjoy hours of uninterrupted sleep and play with&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Canbebe</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;ComfortDry&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diapers</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">! The super-absorbent layer of our&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diaper</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;keeps your little one dry and fits your baby perfectly. The elastic tape prevents leakages by covering the baby\'s belly and gives total freedom to move around.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">roduct Highlights:</h3><ul class=\"list__product--listings\" style=\"margin-bottom: 10px; padding: 0px 0px 0px 1.5em; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe\'s Jumbo mini No. 2 pampers are designed to be worn by babies who weigh around 3 to 6 kg</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Each pack of Canbebe\'s Jumbo mini pampers contains a total of 40 pieces of pampers</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">These pampers are specifically designed with an anti-leak technology on the front and back of them.</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\"></li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe\'s Jumbo mini pampers have the Flexfit technology which prevents collection of moisture</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">This feature also helps to make Canbebe\'s Jumbo mini pampers 21% dryer than other pampers</li></ul>',NULL,NULL,'canbebe-jumbo-mini-no-2-3-6-kg-40-pack-npoqh',0.00,NULL,0,NULL,NULL,'2021-01-13 03:37:57','2021-01-21 09:27:38'),(597,'Canbebe Jumbo Midi No. 3, 4-9 KG 36-Pack','admin',9,31,NULL,NULL,NULL,'1059,1051,1052','1059','youtube',NULL,'velburry','<div class=\"bg-white mb-3 shadow-sm rounded\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><div class=\"tab-content pt-0\"><div class=\"tab-pane fade active show\" id=\"tab_default_1\"><div class=\"p-4\"><div class=\"mw-100 overflow-hidden text-left\"><p><span style=\"font-weight: bolder;\">Article no: 2027</span></p><p><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Let your baby enjoy hours of uninterrupted sleep and play with&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Canbebe</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;ComfortDry&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diapers</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">! The super-absorbent layer of our&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diaper</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;keeps your little one dry and fits your baby perfectly. The elastic tape prevents leakages by covering the baby\'s belly and gives total freedom to move around.</span></p><h3 class=\"list__product--title\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-weight: 600; line-height: 1.35; font-size: 15px; color: rgb(34, 34, 34);\">Product Highlights:</h3><ul class=\"list__product--listings\" style=\"margin-bottom: 10px; padding: 0px 0px 0px 1.5em; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe jumbo midi pampers in number 3 are designed for growing babies who weigh around 4kgs to 9kgs.<p style=\"margin: 1em 0px;\"></p></li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Each pack of Canbebe jumbo midi pampers in Number 3 contains 36 pieces for babies</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">These pampers have the Canbebe FlexFit technology which makes these pampers 21% more absorbent than others</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">The Canbebe jumbo midi pampers in number 3 come with sticky, elastic side straps that are easy to fix in place on the baby</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">They also have an anti-leak and anti-odor technology, which makes them perfect for long wear</li></ul></div></div></div></div></div>',1150.00,1050.00,0,'[]','[]','[]',NULL,0,1,0,0,'1',1,100.00,'amount',0.00,'amount','flat_rate',0.00,0,'Canbebe Jumbo Midi No. 3, 4-9 KG 36-Pack','<div class=\"bg-white mb-3 shadow-sm rounded\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><div class=\"tab-content pt-0\"><div class=\"tab-pane fade active show\" id=\"tab_default_1\"><div class=\"p-4\"><div class=\"mw-100 overflow-hidden text-left\"><p><span style=\"font-weight: bolder;\">Article no: 2027</span></p><p><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Let your baby enjoy hours of uninterrupted sleep and play with&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Canbebe</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;ComfortDry&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diapers</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">! The super-absorbent layer of our&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diaper</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;keeps your little one dry and fits your baby perfectly. The elastic tape prevents leakages by covering the baby\'s belly and gives total freedom to move around.</span></p><h3 class=\"list__product--title\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-weight: 600; line-height: 1.35; font-size: 15px; color: rgb(34, 34, 34);\">Product Highlights:</h3><ul class=\"list__product--listings\" style=\"margin-bottom: 10px; padding: 0px 0px 0px 1.5em; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe jumbo midi pampers in number 3 are designed for growing babies who weigh around 4kgs to 9kgs.<p style=\"margin: 1em 0px;\"></p></li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Each pack of Canbebe jumbo midi pampers in Number 3 contains 36 pieces for babies</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">These pampers have the Canbebe FlexFit technology which makes these pampers 21% more absorbent than others</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">The Canbebe jumbo midi pampers in number 3 come with sticky, elastic side straps that are easy to fix in place on the baby</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">They also have an anti-leak and anti-odor technology, which makes them perfect for long wear</li></ul></div></div></div></div></div>',NULL,NULL,'canbebe-jumbo-midi-no-3-4-9-kg-36-pack-nuhy3',0.00,NULL,0,NULL,NULL,'2021-01-13 03:41:05','2021-01-21 09:27:58'),(598,'Canbebe Comfort Dry No. 5 Junior, Jumbo, 11-25 KG, 26-Pack','admin',9,31,NULL,NULL,NULL,'1051,1052,1061','1061','youtube',NULL,'velburry','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 2028</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Let your baby enjoy hours of uninterrupted sleep and play with&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Canbebe</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;ComfortDry&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diapers</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">! The super-absorbent layer of our&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diaper</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;keeps your little one dry and fits your baby perfectly. The elastic tape prevents leakages by covering the baby\'s belly and gives total freedom to move around.</span></p><h3 class=\"list__product--title\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-weight: 600; line-height: 1.35; font-size: 15px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><ul class=\"list__product--listings\" style=\"margin-bottom: 10px; padding: 0px 0px 0px 1.5em; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe jumbo junior pampers in number 5 are designed for growing babies who weigh around 11kgs to 25kgs.<p style=\"margin: 1em 0px;\"></p></li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Each pack of Canbebe jumbo midi pampers in Number 5 contains 26 pieces for babies</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">These pampers have the Canbebe FlexFit technology which makes these pampers 21% more absorbent than others</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">The Canbebe jumbo midi pampers in number 5 come with sticky, elastic side straps that are easy to fix in place on the baby</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">They also have an anti-leak and anti-odor technology, which makes them perfect for long wear</li></ul>',1150.00,1050.00,0,'[]','[]','[]',NULL,0,1,0,1,'1',1,100.00,'amount',0.00,'amount','flat_rate',0.00,0,'Canbebe Comfort Dry No. 5 Junior, Jumbo, 11-25 KG, 26-Pack','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 2028</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Let your baby enjoy hours of uninterrupted sleep and play with&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">Canbebe</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;ComfortDry&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diapers</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">! The super-absorbent layer of our&nbsp;</span><span style=\"font-weight: bolder; color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">diaper</span><span style=\"color: rgb(32, 33, 36); font-family: arial, sans-serif; font-size: 16px;\">&nbsp;keeps your little one dry and fits your baby perfectly. The elastic tape prevents leakages by covering the baby\'s belly and gives total freedom to move around.</span></p><h3 class=\"list__product--title\" style=\"margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-weight: 600; line-height: 1.35; font-size: 15px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><ul class=\"list__product--listings\" style=\"margin-bottom: 10px; padding: 0px 0px 0px 1.5em; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Canbebe jumbo junior pampers in number 5 are designed for growing babies who weigh around 11kgs to 25kgs.<p style=\"margin: 1em 0px;\"></p></li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Each pack of Canbebe jumbo midi pampers in Number 5 contains 26 pieces for babies</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">These pampers have the Canbebe FlexFit technology which makes these pampers 21% more absorbent than others</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">The Canbebe jumbo midi pampers in number 5 come with sticky, elastic side straps that are easy to fix in place on the baby</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">They also have an anti-leak and anti-odor technology, which makes them perfect for long wear</li></ul>',NULL,NULL,'canbebe-comfort-dry-no-5-junior-jumbo-11-25-kg-26-pack-rk5ze',0.00,NULL,0,NULL,NULL,'2021-01-13 03:52:06','2021-01-21 09:28:39'),(599,'Rocket Pampers Super Dry no. 1-2 mini,  3-6 KG 80 pack','admin',9,39,NULL,NULL,NULL,'1062','1062','youtube',NULL,'velburry','<p><b>Article no: 1229</b></p><p><span style=\"font-family: Arial, sans-serif; font-size: 16px; white-space: pre-wrap;\">Featuring advanced technology, it\'s three-dimensional (3D) leak guard prevents leakage while the wetness indicator reminds the mother to change the diaper in time. It has a big elastic waistband which makes it perfectly fit your baby’s waist and can be easily put on with cutting hook tape. Its beehive pattern surface is extremely soft and skin-friendly which won’t cause any rash or irritation to your baby skin no matter how long and frequent it is used. Strongly recommended by mothers. Use it all day and all night and keep your baby and yourself at ease.</span></p><p><span style=\"font-family: Arial, sans-serif; font-size: 16px; white-space: pre-wrap;\"><b>Product Highlights:</b></span></p><ul class=\"\" style=\"margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; list-style: none; overflow: hidden; columns: auto 2; column-gap: 32px;\"><ul></ul></ul><p></p><ul><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Superior quality pampers</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Super Dry</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Reasonable price</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Flexible</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Easy to use</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Better protection</li></ul><div class=\"html-content detail-content\" style=\"margin: 16px 0px 0px; padding: 0px 0px 16px; word-break: break-word; position: relative; height: auto; line-height: 19px; overflow-y: hidden; border-bottom: 1px solid rgb(239, 240, 245); font-family: Roboto, -apple-system, BlinkMacSystemFont, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px;\"></div><p><span style=\"font-family: Arial, sans-serif; font-size: 16px; white-space: pre-wrap;\"><br></span><b><br></b></p>',1450.00,1350.00,0,'[]','[]','[]',NULL,0,1,0,1,'1',1,100.00,'amount',0.00,'amount','flat_rate',0.00,0,'Rocket Pampers Super Dry no. 1-2 mini,  3-6 KG 80 pack','<p><b>Article no: 1229</b></p><p><span style=\"font-family: Arial, sans-serif; font-size: 16px; white-space: pre-wrap;\">Featuring advanced technology, it\'s three-dimensional (3D) leak guard prevents leakage while the wetness indicator reminds the mother to change the diaper in time. It has a big elastic waistband which makes it perfectly fit your baby’s waist and can be easily put on with cutting hook tape. Its beehive pattern surface is extremely soft and skin-friendly which won’t cause any rash or irritation to your baby skin no matter how long and frequent it is used. Strongly recommended by mothers. Use it all day and all night and keep your baby and yourself at ease.</span></p><p><span style=\"font-family: Arial, sans-serif; font-size: 16px; white-space: pre-wrap;\"><b>Product Highlights:</b></span></p><ul class=\"\" style=\"margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; list-style: none; overflow: hidden; columns: auto 2; column-gap: 32px;\"><ul></ul></ul><p></p><ul><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Superior quality pampers</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Super Dry</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Reasonable price</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Flexible</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Easy to use</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Better protection</li></ul><div class=\"html-content detail-content\" style=\"margin: 16px 0px 0px; padding: 0px 0px 16px; word-break: break-word; position: relative; height: auto; line-height: 19px; overflow-y: hidden; border-bottom: 1px solid rgb(239, 240, 245); font-family: Roboto, -apple-system, BlinkMacSystemFont, &quot;Helvetica Neue&quot;, Helvetica, sans-serif; font-size: 12px;\"></div><p><span style=\"font-family: Arial, sans-serif; font-size: 16px; white-space: pre-wrap;\"><br></span><b><br></b></p>',NULL,NULL,'rocket-pampers-super-dry-no-1-2-mini--3-6-kg-80-pack-uquho',0.00,NULL,0,NULL,NULL,'2021-01-13 04:16:18','2021-01-23 07:46:01'),(600,'Rocket Pampers Super Dry no.3 midi, 4-9 KG 72 pack','admin',9,39,NULL,NULL,NULL,'1063','1063','youtube',NULL,'velburry','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 1230</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-family: Arial, sans-serif; font-size: 16px; white-space: pre-wrap;\">Featuring advanced technology, it\'s three-dimensional (3D) leak guard prevents leakage while the wetness indicator reminds the mother to change the diaper in time. It has a big elastic waistband which makes it perfectly fit your baby’s waist and can be easily put on with cutting hook tape. Its beehive pattern surface is extremely soft and skin-friendly which won’t cause any rash or irritation to your baby\'s skin no matter how long and frequent it is used. Strongly recommended by mothers. Use it all day and all night and keep your baby and yourself at ease.</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-family: Arial, sans-serif; font-size: 16px; white-space: pre-wrap;\"><span style=\"font-weight: bolder;\">Product Highlights:</span></span></p><ul class=\"\" style=\"margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; padding: 0px; list-style: none; overflow: hidden; columns: auto 2; column-gap: 32px;\"><ul></ul></ul><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><ul style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Superior quality pampers</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Super Dry</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Reasonable price</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Flexible</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Easy to use</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Better protection</li></ul>',1450.00,1350.00,0,'[]','[]','[]',NULL,0,1,0,1,'1',1,100.00,'amount',0.00,'amount','flat_rate',0.00,0,'Rocket Pampers Super Dry no.3 midi, 4-9 KG 72 pack','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 1230</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-family: Arial, sans-serif; font-size: 16px; white-space: pre-wrap;\">Featuring advanced technology, it\'s three-dimensional (3D) leak guard prevents leakage while the wetness indicator reminds the mother to change the diaper in time. It has a big elastic waistband which makes it perfectly fit your baby’s waist and can be easily put on with cutting hook tape. Its beehive pattern surface is extremely soft and skin-friendly which won’t cause any rash or irritation to your baby\'s skin no matter how long and frequent it is used. Strongly recommended by mothers. Use it all day and all night and keep your baby and yourself at ease.</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-family: Arial, sans-serif; font-size: 16px; white-space: pre-wrap;\"><span style=\"font-weight: bolder;\">Product Highlights:</span></span></p><ul class=\"\" style=\"margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; padding: 0px; list-style: none; overflow: hidden; columns: auto 2; column-gap: 32px;\"><ul></ul></ul><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><ul style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Superior quality pampers</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Super Dry</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Reasonable price</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Flexible</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Easy to use</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Better protection</li></ul>',NULL,NULL,'rocket-pampers-super-dry-no3-midi-4-9-kg-72-pack-gqkpg',0.00,NULL,0,NULL,NULL,'2021-01-13 04:20:03','2021-01-23 07:44:36'),(601,'Rocket Pampers Super Dry no. 4 maxi, 9-16 KG 64 pack','admin',9,39,NULL,NULL,NULL,'1064','1064','youtube',NULL,'velburry','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 1231</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-family: Arial, sans-serif; font-size: 16px; white-space: pre-wrap;\">Featuring advanced technology, it\'s three-dimensional (3D) leak guard prevents leakage while the wetness indicator reminds the mother to change the diaper in time. It has a big elastic waistband which makes it perfectly fit your baby’s waist and can be easily put on with cutting hook tape. Its beehive pattern surface is extremely soft and skin-friendly which won’t cause any rash or irritation to your baby skin no matter how long and frequent it is used. Strongly recommended by mothers. Use it all day and all night and keep your baby and yourself at ease.</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-family: Arial, sans-serif; font-size: 16px; white-space: pre-wrap;\"><span style=\"font-weight: bolder;\">Product Highlights:</span></span></p><ul class=\"\" style=\"margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; padding: 0px; list-style: none; overflow: hidden; columns: auto 2; column-gap: 32px;\"><ul></ul></ul><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><ul style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Superior quality pampers</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Super Dry</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Reasonable price</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Flexible</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Easy to use</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Better protection</li></ul>',1450.00,1350.00,0,'[]','[]','[]',NULL,0,1,0,1,'1',1,100.00,'amount',0.00,'amount','flat_rate',0.00,0,'Rocket Pampers Super Dry no. 4 maxi, 9-16 KG 64 pack','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 1231</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-family: Arial, sans-serif; font-size: 16px; white-space: pre-wrap;\">Featuring advanced technology, it\'s three-dimensional (3D) leak guard prevents leakage while the wetness indicator reminds the mother to change the diaper in time. It has a big elastic waistband which makes it perfectly fit your baby’s waist and can be easily put on with cutting hook tape. Its beehive pattern surface is extremely soft and skin-friendly which won’t cause any rash or irritation to your baby skin no matter how long and frequent it is used. Strongly recommended by mothers. Use it all day and all night and keep your baby and yourself at ease.</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-family: Arial, sans-serif; font-size: 16px; white-space: pre-wrap;\"><span style=\"font-weight: bolder;\">Product Highlights:</span></span></p><ul class=\"\" style=\"margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; padding: 0px; list-style: none; overflow: hidden; columns: auto 2; column-gap: 32px;\"><ul></ul></ul><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><ul style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Superior quality pampers</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Super Dry</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Reasonable price</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Flexible</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Easy to use</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Better protection</li></ul>',NULL,NULL,'rocket-pampers-super-dry-no-4-maxi-9-16-kg-64-pack-thfgn',0.00,NULL,0,NULL,NULL,'2021-01-13 04:25:01','2021-01-23 07:44:06'),(602,'Rocket Pampers Super Dry no. 5 junior, 11-25 KG 58 pack','admin',9,39,NULL,NULL,NULL,'1065','1065','youtube',NULL,'velburry','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 1232</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-family: Arial, sans-serif; font-size: 16px; white-space: pre-wrap;\">Featuring advanced technology, it\'s three-dimensional (3D) leak guard prevents leakage while the wetness indicator reminds the mother to change the diaper in time. It has a big elastic waistband which makes it perfectly fit your baby’s waist and can be easily put on with cutting hook tape. Its beehive pattern surface is extremely soft and skin-friendly which won’t cause any rash or irritation to your baby skin no matter how long and frequent it is used. Strongly recommended by mothers. Use it all day and all night and keep your baby and yourself at ease.</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-family: Arial, sans-serif; font-size: 16px; white-space: pre-wrap;\"><span style=\"font-weight: bolder;\">Product Highlights:</span></span></p><ul class=\"\" style=\"margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; padding: 0px; list-style: none; overflow: hidden; columns: auto 2; column-gap: 32px;\"><ul></ul></ul><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><ul style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Superior quality pampers</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Super Dry</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Reasonable price</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Flexible</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Easy to use</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Better protection</li></ul>',1450.00,1350.00,0,'[]','[]','[]',NULL,0,1,0,1,'1',1,100.00,'amount',0.00,'amount','flat_rate',0.00,0,'Rocket Pampers Super Dry no. 5 junior, 11-25 KG 58 pack','<p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-weight: bolder;\">Article no: 1232</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-family: Arial, sans-serif; font-size: 16px; white-space: pre-wrap;\">Featuring advanced technology, it\'s three-dimensional (3D) leak guard prevents leakage while the wetness indicator reminds the mother to change the diaper in time. It has a big elastic waistband which makes it perfectly fit your baby’s waist and can be easily put on with cutting hook tape. Its beehive pattern surface is extremely soft and skin-friendly which won’t cause any rash or irritation to your baby skin no matter how long and frequent it is used. Strongly recommended by mothers. Use it all day and all night and keep your baby and yourself at ease.</span></p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><span style=\"font-family: Arial, sans-serif; font-size: 16px; white-space: pre-wrap;\"><span style=\"font-weight: bolder;\">Product Highlights:</span></span></p><ul class=\"\" style=\"margin-right: 0px; margin-bottom: 0px; margin-left: 0px; color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; padding: 0px; list-style: none; overflow: hidden; columns: auto 2; column-gap: 32px;\"><ul></ul></ul><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><ul style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Superior quality pampers</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Super Dry</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Reasonable price</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Flexible</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Easy to use</li><li style=\"margin: 0px; padding: 0px 0px 0px 15px; position: relative; font-size: 14px; line-height: 18px; text-align: left; list-style: none; word-break: break-word; break-inside: avoid;\">Better protection</li></ul>',NULL,NULL,'rocket-pampers-super-dry-no-5-junior-11-25-kg-58-pack-lc9i6',0.00,NULL,0,NULL,NULL,'2021-01-13 04:28:06','2021-01-23 07:43:31'),(603,'Calvin Klein Obsession Eau De Parfum For Men','admin',9,15,NULL,NULL,NULL,'1066,1067,1069','1068','youtube',NULL,'velburry','<p><b>Article no: 2034</b></p><p><b>Description:</b></p><p><span style=\"color: rgb(136, 136, 136); font-family: &quot;Open Sans&quot;; font-size: 14px;\">Obsession Edp 100ml Eau de Parfum is a rare gift from the world of perfumery. There is a unique variety of top, middle and base notes that creates a highly sophisticated fragrance for women. Its main notes include bergamot, rose, lily of the valley, white flowers, mandarine, gardenia, jasmine, tonka bean, amber, sandalwood and so on. Besides having a mesmerizing aroma, the packaging of the product is also quite feminine.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><ul class=\"list__product--listings\" style=\"margin-bottom: 10px; padding: 0px 0px 0px 1.5em; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Eau De Parfum spray</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Floral and fruity fragrance</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Combination of woody and floral notes</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Elegant and stylish packaging</li></ul><p><b><br></b></p>',5600.00,5500.00,0,'[]','[]','[]',NULL,0,1,0,1,'1',1,100.00,'amount',0.00,'amount','flat_rate',0.00,0,'Calvin Klein Obsession Eau De Parfum For Men','<p><b>Article no: 2034</b></p><p><b>Description:</b></p><p><span style=\"color: rgb(136, 136, 136); font-family: &quot;Open Sans&quot;; font-size: 14px;\">Obsession Edp 100ml Eau de Parfum is a rare gift from the world of perfumery. There is a unique variety of top, middle and base notes that creates a highly sophisticated fragrance for women. Its main notes include bergamot, rose, lily of the valley, white flowers, mandarine, gardenia, jasmine, tonka bean, amber, sandalwood and so on. Besides having a mesmerizing aroma, the packaging of the product is also quite feminine.</span></p><h3 class=\"list__product--title\" style=\"font-weight: 600; line-height: 1.35; font-size: 15px; margin-right: 0px; margin-bottom: 5px; margin-left: 0px; font-family: &quot;Open Sans&quot;, sans-serif; color: rgb(34, 34, 34);\">Product Highlights:</h3><ul class=\"list__product--listings\" style=\"margin-bottom: 10px; padding: 0px 0px 0px 1.5em; color: rgb(102, 102, 102); font-family: &quot;Open Sans&quot;;\"><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Eau De Parfum spray</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Floral and fruity fragrance</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Combination of woody and floral notes</li><li style=\"margin-top: 0px; margin-bottom: 0px; list-style: outside;\">Elegant and stylish packaging</li></ul><p><b><br></b></p>',NULL,NULL,'calvin-klein-obsession-eau-de-parfum-for-men-xuzea',0.00,NULL,0,NULL,NULL,'2021-01-13 04:36:38','2021-01-21 09:16:09'),(613,'Aspire College Girls Uniform','admin',9,131,NULL,NULL,NULL,'1197,1198,1199,1200,1196,1726,1719','1196','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"36\",\"38\",\"40\",\"42\",\"44\",\"46\"]}]','[]',NULL,0,1,0,10,'Each Pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Aspire College Girls Uniform','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'aspire-college-girls-uniform-pacd8',0.00,NULL,0,NULL,NULL,'2021-01-16 02:13:29','2021-01-21 10:30:47'),(614,'Aspire College Boy\'s Shirt','admin',9,129,NULL,NULL,NULL,'1204,1203,1202,1201,1720','1201','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',400.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"28\",\"30\",\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,10,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Aspire College Boy\'s Shirt','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'aspire-college-boys-shirt-qmpg5',0.00,NULL,0,NULL,NULL,'2021-01-16 02:15:28','2021-01-21 10:30:55'),(615,'Islamia College Boy\'s Shirt','admin',9,140,NULL,NULL,NULL,'1209,1210,1211,1207,1720','1207','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',400.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"26\",\"28\",\"30\",\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,10,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Islamia College Boy\'s Shirt','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'islamia-college-boys-shirt-hwdy4',0.00,NULL,0,NULL,NULL,'2021-01-16 02:20:42','2021-01-21 10:31:00'),(616,'Islamia College Boy\'s Pent','admin',9,141,NULL,NULL,NULL,'1205,1212,1208,1206,1722','1206','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,500.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"40*28\",\"40*30\",\"40*32\",\"40*34\",\"40*36\",\"40*38\",\"42*28\",\"42*30\",\"42*32\",\"42*34\",\"42*36\",\"42*38\",\"42*40\",\"42*42\"]}]','[]',NULL,0,1,0,10,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Islamia College Boy\'s Pent','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'islamia-college-boys-pent-l2pvq',0.00,NULL,0,NULL,NULL,'2021-01-16 02:24:04','2021-01-21 10:31:10'),(617,'Kips College Girls Uniform','admin',9,65,NULL,NULL,NULL,'1217,1221,1220,1218,1216,1726,1719','1216','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,500.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"36\",\"38\",\"40\",\"42\",\"44\",\"46\"]}]','[]',NULL,0,1,0,10,'Each Pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Kips College Girls Uniform','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'kips-college-girls-uniform-3ahlp',0.00,NULL,0,NULL,NULL,'2021-01-16 02:29:43','2021-01-21 10:31:19'),(618,'Kips College Boy\'s Shirt','admin',9,63,NULL,NULL,NULL,'1215,1214,1213,1678,1720','1213','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,500.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"28\",\"30\",\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,10,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Kips College Boy\'s Shirt','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'kips-college-boys-shirt-y2nsg',0.00,NULL,0,NULL,NULL,'2021-01-16 02:30:39','2021-01-21 10:31:28'),(619,'Punjab College Girl\'s Uniform','admin',9,60,NULL,NULL,NULL,'1234,1233,1232,1228,1675,1726,1719','1228','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,500.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"36\",\"38\",\"40\",\"42\",\"44\",\"46\",\"48\"]}]','[]',NULL,0,1,0,10,'Each Pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Punjab College Girl\'s Uniform','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'punjab-college-girls-uniform-dwwti',0.00,NULL,0,NULL,NULL,'2021-01-16 02:41:16','2021-01-21 10:31:35'),(620,'Punjab College Boy\'s Shirt','admin',9,58,NULL,NULL,NULL,'1222,1223,1224,1676,1720','1224','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,500.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"28\",\"30\",\"S\",\"M\",\"L\",\"XL\"]}]','[]',NULL,0,1,0,10,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Punjab College Boy\'s Shirt','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'punjab-college-boys-shirt-zvdsw',0.00,NULL,0,NULL,NULL,'2021-01-16 02:43:21','2021-01-21 10:31:42'),(621,'Punjab College Boy\'s Pent','admin',9,59,NULL,NULL,NULL,'1226,1231,1225,1227,1722','1227','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',400.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"40*28\",\"40*30\",\"40*32\",\"40*34\",\"40*36\",\"40*38\",\"42*28\",\"42*30\",\"42*32\",\"42*34\",\"42*36\",\"42*38\",\"42*40\",\"42*42\"]}]','[]',NULL,0,1,0,10,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Punjab College Boy\'s Pent','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'punjab-college-boys-pent-nafvk',0.00,NULL,0,NULL,NULL,'2021-01-16 02:45:39','2021-01-21 10:31:48'),(622,'Superior College Girl\'s Uniform (3rd & 4th year)','admin',9,70,NULL,NULL,NULL,'1249,1252,1251,1250,1248,1726,1719','1248','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,500.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"36\",\"38\",\"40\",\"42\",\"44\",\"46\"]}]','[]',NULL,0,1,0,10,'Each Pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Superior College Girl\'s Uniform (3rd & 4th year)','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'superior-college-girls-uniform-3rd--4th-year-fxjdq',0.00,NULL,0,NULL,NULL,'2021-01-16 02:52:26','2021-01-21 10:31:56'),(623,'Superior College Boy\'s Pent for (1st, 2nd, 3rd & 4th year)','admin',9,69,NULL,NULL,NULL,'1253,1254,1256,1255,1722','1253','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,500.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"40*28\",\"40*30\",\"40*32\",\"40*34\",\"40*36\",\"40*38\",\"42*28\",\"42*30\",\"42*32\",\"42*34\",\"42*36\",\"42*38\",\"42*40\",\"42*42\"]}]','[]',NULL,0,1,0,10,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Superior College Boy\'s Pent for (1st, 2nd, 3rd & 4th year)','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'superior-college-boys-pent-for-1st-2nd-3rd--4th-year-b7tjx',0.00,NULL,0,NULL,NULL,'2021-01-16 03:03:32','2021-01-21 10:32:03'),(624,'Superior College Girl\'s Uniform (1st & 2nd year)','admin',9,70,NULL,NULL,NULL,'1259,1260,1257,1258,1261,1726,1719','1259','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,500.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"36\",\"38\",\"40\",\"42\",\"44\"]}]','[]',NULL,0,1,0,10,'Each Pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Superior College Girl\'s Uniform (2nd & 3rd year)','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'superior-college-girls-uniform-2nd--3rd-year-5jibk',0.00,NULL,0,NULL,NULL,'2021-01-16 03:05:25','2021-01-21 10:32:09'),(625,'Allied School - Shirts','admin',9,73,NULL,NULL,NULL,'1238,1237,1236,1235,1720','1237','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Allied School - Shirts','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'allied-school---shirts-wp40f',0.00,NULL,0,NULL,NULL,'2021-01-16 03:06:27','2021-01-21 10:32:15'),(626,'Superior College Boy\'s Shirt','admin',9,68,NULL,NULL,NULL,'1264,1263,1262,1265,1720','1264','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',400.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"28\",\"30\",\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,10,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Superior College Boy\'s Shirt','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'superior-college-boys-shirt-bscxs',0.00,NULL,0,NULL,NULL,'2021-01-16 03:08:49','2021-01-21 10:32:21'),(627,'Allied School - Elastic pent','admin',9,74,NULL,NULL,NULL,'1247,1245,1244,1239,1718','1244','youtube',NULL,'velburry',NULL,500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Allied School - pent',NULL,NULL,NULL,'allied-school---pent-bku87',0.00,NULL,0,NULL,NULL,'2021-01-16 03:09:08','2021-01-20 08:28:35'),(628,'Allied School - Girls Uniform','admin',9,75,NULL,NULL,NULL,'1246,1241,1240,1243,1242,1726,1719','1241','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\",\"44\"]}]','[]',NULL,0,1,0,1,'Each pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Allied School - Girls Uniform','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'allied-school---girls-uniform-vdv2a',0.00,NULL,0,NULL,NULL,'2021-01-16 03:13:30','2021-01-21 10:32:28'),(629,'Army Public School And College System - Shirt','admin',9,147,NULL,NULL,NULL,'1268,1269,1266,1267,1720','1267','youtube',NULL,'velburry',NULL,500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Army Public School And College System',NULL,NULL,NULL,'army-public-school-and-college-system-ktbli',0.00,NULL,0,NULL,NULL,'2021-01-16 03:16:09','2021-01-20 08:20:25'),(630,'City High School - Shirt','admin',9,118,NULL,NULL,NULL,'1279,1273,1270,1650,1720','1270','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'City High School - Shirt','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'city-high-school---shirt-0vqsm',0.00,NULL,0,NULL,NULL,'2021-01-16 03:21:43','2021-01-21 10:34:11'),(631,'Plane White School Uniform for Girl\'s','admin',9,145,NULL,NULL,NULL,'1284,1285,1286,1288,1287,1726,1719','1284','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,500.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\",\"44\",\"46\"]}]','[]',NULL,0,1,0,10,'Each Pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Plane White School Uniform for Girl\'s','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'plane-white-school-uniform-for-girls-e00oj',0.00,NULL,0,NULL,NULL,'2021-01-16 03:23:32','2021-01-21 10:34:06'),(632,'City High School - Elastic Pent','admin',9,119,NULL,NULL,NULL,'1283,1275,1276,1274,1718','1275','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'City High School - Pent','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'city-high-school---pent-zqqht',0.00,NULL,0,NULL,NULL,'2021-01-16 03:23:50','2021-01-21 10:34:00'),(633,'City High School - Girls Uniform','admin',9,120,NULL,NULL,NULL,'1277,1278,1280,1282,1281,1726,1719','1277','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\",\"44\"]}]','[]',NULL,0,1,0,1,'Each pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'City High School - Girls Uniform','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'city-high-school---girls-uniform-56go6',0.00,NULL,0,NULL,NULL,'2021-01-16 03:27:44','2021-01-21 10:33:54'),(634,'BLue Cuff and Collar, White Uniform for Girl\'s','admin',9,145,NULL,NULL,NULL,'1290,1291,1289,1292,1293,1726,1719','1290','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,500.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\",\"44\"]}]','[]',NULL,0,1,0,10,'Each Pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'BLue Cuff and Collar, White Uniform for Girl\'s','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'blue-cuff-and-collar-white-uniform-for-girls-0iui7',0.00,NULL,0,NULL,NULL,'2021-01-16 03:28:20','2021-01-21 10:33:50'),(635,'Blue Cuff and Collar, Stripe Blue Uniform for Girl\'s','admin',9,145,NULL,NULL,NULL,'1295,1294,1301,1300,1299,1726,1719','1295','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,500.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\",\"44\"]}]','[]',NULL,0,1,0,10,'Each Pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Blue Cuff and Collar, Stripe Blue Uniform for Girl\'s','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'blue-cuff-and-collar-stripe-blue-uniform-for-girls-puakx',0.00,NULL,0,NULL,NULL,'2021-01-16 03:30:23','2021-01-21 10:33:42'),(636,'Dar - Arqam School - shirt','admin',9,78,NULL,NULL,NULL,'1302,1298,1297,1296,1720','1296','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Dar - Arqam School - shirt','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'dar---arqam-school---shirt-u5akh',0.00,NULL,0,NULL,NULL,'2021-01-16 03:30:28','2021-01-21 10:33:34'),(637,'Dar - Arqam School - Elastic pent','admin',9,79,NULL,NULL,NULL,'1311,1309,1307,1308,1718','1307','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Dar - Arqam School - Elastic pent','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'dar---arqam-school---elastic-pent-lwtno',0.00,NULL,0,NULL,NULL,'2021-01-16 03:33:30','2021-01-21 10:33:28'),(638,'Blue & White Gents Collar - Uniform for Girl\'s','admin',9,145,NULL,NULL,NULL,'1312,1314,1313,1315,1303,1719,1726','1312','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,500.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\",\"44\"]}]','[]',NULL,0,1,0,10,'Each Pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Blue & White Uniform for Girl\'s','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'blue--white-uniform-for-girls-glvdr',0.00,NULL,0,NULL,NULL,'2021-01-16 03:33:37','2021-01-21 10:33:22'),(639,'Dar - Arqam School - wasit pent','admin',9,79,NULL,NULL,NULL,'1319,1318,1317,1316,1722','1316','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"40*28\",\"40*30\",\"40*32\",\".40*34\",\"40*36\",\"40*38\",\"42*28\",\"42*30\",\"42*32\",\"42*34\",\"42*36\",\"42*38\",\"42*40\",\"42*42\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Dar - Arqam School - wasit pent','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'dar---arqam-school---wasit-pent-nmqxn',0.00,NULL,0,NULL,NULL,'2021-01-16 03:37:59','2021-01-21 10:33:16'),(640,'Blue & White Ladies Collar - Uniform for Girl\'s','admin',9,145,NULL,NULL,NULL,'1322,1320,1321,1323,1324,1726,1719','1322','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,500.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\",\"44\"]}]','[]',NULL,0,1,0,10,'Each Pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Blue & White Ladies Collar - Uniform for Girl\'s','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'blue--white-ladies-collar---uniform-for-girls-kbnlp',0.00,NULL,0,NULL,NULL,'2021-01-16 03:38:17','2021-01-21 10:32:54'),(641,'Dar - Arqam School - Girls Uniform','admin',9,80,NULL,NULL,NULL,'1329,1326,1327,1328,1325,1726,1719','1328','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\",\"44\"]}]','[]',NULL,0,1,0,1,'Each pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Dar - Arqam School - Girls Uniform','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'dar---arqam-school---girls-uniform-5iidj',0.00,NULL,0,NULL,NULL,'2021-01-16 03:39:38','2021-01-21 10:32:49'),(642,'Dark Grey Waist Pent for Boy\'s','admin',9,144,NULL,NULL,NULL,'1331,1330,1332,1333,1722','1331','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',400.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"40*28\",\"40*30\",\"40*32\",\"40*34\",\"40*36\",\"40*38\",\"42*28\",\"42*30\",\"42*32\",\"42*34\",\"42*36\",\"42*38\",\"42*40\",\"42*42\"]}]','[]',NULL,0,1,0,10,'Each Pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Dark Grey Pent for Boy\'s','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'dark-grey-pent-for-boys-imhr2',0.00,NULL,0,NULL,NULL,'2021-01-16 03:40:20','2021-01-21 10:32:40'),(643,'Dark Grey Elastic Pent for Boy\'s','admin',9,144,NULL,NULL,NULL,'1334,1337,1336,1335,1718','1334','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',400.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\"]}]','[]',NULL,0,1,0,10,'Each Pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Dark Grey Elastic Pent for Boy\'s','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'dark-grey-elastic-pent-for-boys-y4i8h',0.00,NULL,0,NULL,NULL,'2021-01-16 03:41:42','2021-01-21 10:32:34'),(644,'Divisional Model School - Elastic Summer Pent','admin',9,109,NULL,NULL,NULL,'1339,1340,1341,1338,1718','1338','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Divisional Model School - Elastic Summer Pent','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'divisional-model-school---elastic-summer-pent-bslzu',0.00,NULL,0,NULL,NULL,'2021-01-16 03:43:43','2021-01-21 10:38:12'),(645,'Dark Brown Waist Pent for Boy\'s','admin',9,144,NULL,NULL,NULL,'1342,1344,1345,1343,1722','1342','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,500.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"40*28\",\"40*30\",\"40*32\",\"40*34\",\"40*36\",\"40*38\",\"42*28\",\"42*30\",\"42*32\",\"42*34\",\"42*36\",\"42*38\",\"42*40\",\"42*42\"]}]','[]',NULL,0,1,0,10,'Each Pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Dark Brown Pent for Boy\'s','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'dark-brown-pent-for-boys-okbpq',0.00,NULL,0,NULL,NULL,'2021-01-16 03:44:18','2021-01-21 10:38:17'),(646,'Divisional Model School - Waist Summer Pent','admin',9,109,NULL,NULL,NULL,'1350,1348,1347,1346,1722','1346','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"40*28\",\"40*30\",\"40*32\",\"40*34\",\"40*36\",\"40*38\",\"42*28\",\"42*30\",\"42*32\",\"42*34\",\"42*36\",\"42*38\",\"42*40\",\"42*42\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Divisional Model School - Waist Summer Pent','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'divisional-model-school---waist-summer-pent-dghh3',0.00,NULL,0,NULL,NULL,'2021-01-16 03:45:58','2021-01-21 10:38:24'),(647,'Dark Brown Elastic Pent for Boy\'s','admin',9,144,NULL,NULL,NULL,'1349,1352,1351,1353,1718','1349','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',400.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\"]}]','[]',NULL,0,1,0,10,'Each Pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Dark Brown Elastic Pent for Boy\'s','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'dark-brown-elastic-pent-for-boys-fgfbm',0.00,NULL,0,NULL,NULL,'2021-01-16 03:46:26','2021-01-21 10:38:31'),(648,'Dark Green Elastic Pent for Boy\'s','admin',9,144,NULL,NULL,NULL,'1360,1358,1359,1361,1718','1360','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',400.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\"]}]','[]',NULL,0,1,0,10,'Each Pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Dark Green Elastic Pent for Boy\'s','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'dark-green-elastic-pent-for-boys-vkh1c',0.00,NULL,0,NULL,NULL,'2021-01-16 03:47:54','2021-01-21 10:38:36'),(649,'Divisional Model School - Elastic Winter Pent','admin',9,109,NULL,NULL,NULL,'1354,1355,1356,1357,1718','1355','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Divisional Model School - Elastic Winter Pent','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'divisional-model-school---elastic-winter-pent-cvjsp',0.00,NULL,0,NULL,NULL,'2021-01-16 03:48:22','2021-01-21 10:38:42'),(650,'Grey Elastic Pent (Karachi) for Boy\'s','admin',9,144,NULL,NULL,NULL,'1362,1363,1365,1364,1718','1362','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,500.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\"]}]','[]',NULL,0,1,0,10,'Each Pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Grey Pent (Karachi) for Boy\'s','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'grey-pent-karachi-for-boys-qxmrd',0.00,NULL,0,NULL,NULL,'2021-01-16 03:49:24','2021-01-21 10:38:48'),(651,'Divisional Model School - Waist Winter Pent','admin',9,109,NULL,NULL,NULL,'1368,1369,1367,1366,1722','1366','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"40*28\",\"40*30\",\"40*32\",\"40*34\",\"40*36\",\"40*38\",\"42*28\",\"42*30\",\"42*32\",\"42*34\",\"42*36\",\"42*38\",\"42*40\",\"42*42\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Divisional Model School - Wasit Winter Pent','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'divisional-model-school---wasit-winter-pent-tsfpv',0.00,NULL,0,NULL,NULL,'2021-01-16 03:49:45','2021-01-21 10:38:53'),(652,'Khaki Brown Elastic Pent for Boy\'s','admin',9,144,NULL,NULL,NULL,'1370,1371,1372,1373,1718','1370','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',400.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\"]}]','[]',NULL,0,1,0,10,'Each Pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Khaki Brown Pent for Boy\'s','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'khaki-brown-pent-for-boys-zx5bo',0.00,NULL,0,NULL,NULL,'2021-01-16 03:51:22','2021-01-21 10:39:00'),(653,'Divisional Model School - shirt','admin',9,108,NULL,NULL,NULL,'1377,1376,1375,1680,1720','1376','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Divisional Model School - shirt','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'divisional-model-school---shirt-nacip',0.00,NULL,0,NULL,NULL,'2021-01-16 03:51:42','2021-01-21 10:39:05'),(654,'Light Green Elastic Pent for Boy\'s','admin',9,144,NULL,NULL,NULL,'1378,1379,1381,1380,1718','1378','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',400.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\"]}]','[]',NULL,0,1,0,40,'Each Pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Light Green Elastic Pent for Boy\'s','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'light-green-elastic-pent-for-boys-g7dci',0.00,NULL,0,NULL,NULL,'2021-01-16 03:52:57','2021-01-21 10:39:13'),(655,'Divisional Model School - Girls Uniform','admin',9,110,NULL,NULL,NULL,'1385,1386,1382,1383,1384,1726,1719','1383','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\",\"44\",\"46\"]}]','[]',NULL,0,1,0,1,'Each pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Divisional Model School - Girls Uniform','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'divisional-model-school---girls-uniform-eimr9',0.00,NULL,0,NULL,NULL,'2021-01-16 03:53:06','2021-01-21 10:39:18'),(656,'Navy Blue Waist Pent for Boy\'s','admin',9,144,NULL,NULL,NULL,'1388,1387,1389,1390,1722','1388','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,500.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"40*28\",\"40*30\",\"40*32\",\"40*34\",\"40*36\",\"40*38\",\"42*28\",\"42*30\",\"42*32\",\"42*34\",\"42*36\",\"42*38\",\"42*40\",\"42*42\"]}]','[]',NULL,0,1,0,10,'Each Pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Navy Blue Pent for Boy\'s','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'navy-blue-pent-for-boys-p28pq',0.00,NULL,0,NULL,NULL,'2021-01-16 03:54:22','2021-01-21 10:39:36'),(657,'Divisional Public school - Elastic Winter Pent','admin',9,161,NULL,NULL,NULL,'1393,1394,1391,1392,1718','1393','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Divisional Public school - Elastic Summer Pent','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'divisional-public-school---elastic-summer-pent-jkbya',0.00,NULL,0,NULL,NULL,'2021-01-16 03:56:02','2021-01-21 10:39:41'),(658,'Navy Blue Elastic Pent for Boy\'s','admin',9,144,NULL,NULL,NULL,'1397,1398,1395,1396,1718','1397','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',400.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\"]}]','[]',NULL,0,1,0,10,'Each Pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Navy Blue Elastic Pent for Boy\'s','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'navy-blue-elastic-pent-for-boys-wobgj',0.00,NULL,0,NULL,NULL,'2021-01-16 03:56:20','2021-01-21 10:39:46'),(659,'Divisional Public School - Waist Winter Pent','admin',9,161,NULL,NULL,NULL,'1404,1405,1406,1403,1722','1403','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"40*28\",\"40*30\",\"40*32\",\"40*34\",\"40*36\",\"40*38\",\"42*28\",\"42*30\",\"42*32\",\"42*34\",\"42*36\",\"42*38\",\"42*40\",\"42*42\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Divisional Public School - Waist Summer Pent','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'divisional-public-school---waist-summer-pent-4gb4q',0.00,NULL,0,NULL,NULL,'2021-01-16 03:58:05','2021-01-21 10:39:52'),(660,'Plane Black Pent for Boy\'s','admin',9,144,NULL,NULL,NULL,'1408,1407,1409,1410,1722','1408','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,500.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"40*28\",\"40*30\",\"40*32\",\"40*34\",\"40*36\",\"40*38\",\"42*28\",\"42*30\",\"42*32\",\"42*34\",\"42*36\",\"42*38\",\"42*40\",\"42*42\"]}]','[]',NULL,0,1,0,10,'Each Pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Pane Black Pent for Boy\'s','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'pane-black-pent-for-boys-ljdg7',0.00,NULL,0,NULL,NULL,'2021-01-16 03:59:15','2021-01-21 10:39:58'),(661,'Divisional Public school - Elastic Summer Pent','admin',9,161,NULL,NULL,NULL,'1414,1412,1413,1411,1718','1412','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Divisional Public school - Elastic Winter Pent','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'divisional-public-school---elastic-winter-pent-t4znd',0.00,NULL,0,NULL,NULL,'2021-01-16 04:00:06','2021-01-21 10:40:06'),(662,'Plane Black Elastic Pent for Boy\'s','admin',9,144,NULL,NULL,NULL,'1415,1416,1418,1417,1718','1415','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',400.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\"]}]','[]',NULL,0,1,0,10,'Each Pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Plane Black Elastic Pent for Boy\'s','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'plane-black-elastic-pent-for-boys-cubsb',0.00,NULL,0,NULL,NULL,'2021-01-16 04:00:57','2021-01-21 10:40:11'),(663,'Divisional Public school - Waist Summer Pent','admin',9,161,NULL,NULL,NULL,'1421,1422,1419,1420,1722','1421','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"40*28\",\"40*30\",\"40*32\",\"40*34\",\"40*36\",\"40*38\",\"42*28\",\"42*30\",\"42*32\",\"42*34\",\"42*36\",\"42*38\",\"42*40\",\"42*42\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Divisional Public school - Waist Winter Pent','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'divisional-public-school-waist-winter-pent-91tm3',0.00,NULL,0,NULL,NULL,'2021-01-16 04:01:31','2021-01-21 10:40:17'),(664,'Sea Green Elastic Pent for Boy\'s','admin',9,144,NULL,NULL,NULL,'1423,1426,1424,1425,1718','1423','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',400.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\"]}]','[]',NULL,0,1,0,10,'Each Pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Sea Green Elastic Pent for Boy\'s','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'sea-green-elastic-pent-for-boys-nbocd',0.00,NULL,0,NULL,NULL,'2021-01-16 04:02:30','2021-01-21 10:40:24'),(665,'Divisional Public school - Girls Uniform','admin',9,55,NULL,NULL,NULL,'1431,1430,1429,1428,1427,1719,1726','1427','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\",\"44\",\"46\"]}]','[]',NULL,0,1,0,1,'Each pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Divisional Public school - Girls Uniform','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'divisional-public-school---girls-uniform-ulxap',0.00,NULL,0,NULL,NULL,'2021-01-16 04:03:47','2021-01-21 10:40:32'),(666,'Silver Grey Waist Pent for Boy\'s','admin',9,144,NULL,NULL,NULL,'1435,1433,1434,1432,1722','1435','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,500.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"40*28\",\"40*30\",\"40*32\",\"40*34\",\"40*36\",\"40*38\",\"42*28\",\"42*30\",\"42*32\",\"42*34\",\"32*36\",\"42*38\",\"42*40\",\"42*42\"]}]','[]',NULL,0,1,0,10,'Each Pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Silver Grey Pen for Boy\'s','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'silver-grey-pen-for-boys-d1opu',0.00,NULL,0,NULL,NULL,'2021-01-16 04:03:51','2021-01-21 10:40:37'),(667,'Silver Grey Elastic Pent for Boy\'s','admin',9,144,NULL,NULL,NULL,'1436,1437,1439,1438,1718','1436','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',400.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\"]}]','[]',NULL,0,1,0,10,'Each Pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Silver Grey Elastic Pen for Boy\'s','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'silver-grey-elastic-pen-for-boys-091zu',0.00,NULL,0,NULL,NULL,'2021-01-16 04:05:00','2021-01-21 10:40:43'),(668,'The Educators School - Shirt','admin',9,88,NULL,NULL,NULL,'1443,1440,1441,1442,1720','1442','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The Educators School - Shirt','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'the-educators-school---shirt-iwysg',0.00,NULL,0,NULL,NULL,'2021-01-16 04:06:22','2021-01-21 10:40:49'),(669,'Blue Lining Shirt For Boy\'s','admin',9,143,NULL,NULL,NULL,'1445,1444,1446,1447,1720','1445','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,500.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,10,'Each Pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Blue Stripe Shirt For Boy\'s','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'blue-stripe-shirt-for-boys-3gnt9',0.00,NULL,0,NULL,NULL,'2021-01-16 04:07:10','2021-01-21 10:40:55'),(670,'The Educators School - Elastic Pent','admin',9,89,NULL,NULL,NULL,'1451,1448,1449,1450,1718','1449','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The Educators School - Pent','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'the-educators-school---pent-ijlr8',0.00,NULL,0,NULL,NULL,'2021-01-16 04:07:36','2021-01-21 10:41:06'),(671,'Blue Stripe & Blue Collar Lining Shirt for Boy\'s','admin',9,143,NULL,NULL,NULL,'1453,1452,1454,1455,1720','1453','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,500.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,10,'Each Pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Blue Stripe & Blue Collar Shirt for Boy\'s','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'blue-stripe--blue-collar-shirt-for-boys-vpxwi',0.00,NULL,0,NULL,NULL,'2021-01-16 04:09:08','2021-01-21 10:41:11'),(672,'The Educators School - Girls Uniform','admin',9,90,NULL,NULL,NULL,'1460,1459,1456,1457,1458,1726,1719','1456','youtube',NULL,'velburry',NULL,500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\",\"44\"]}]','[]',NULL,0,1,0,1,'Each pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The Educators School - Girls Uniform',NULL,NULL,NULL,'the-educators-school---girls-uniform-a22mp',0.00,NULL,0,NULL,NULL,'2021-01-16 04:09:12','2021-01-20 06:02:34'),(673,'White Stripe & White Collar Blue Lining Shirt for Boy\'s','admin',9,143,NULL,NULL,NULL,'1462,1461,1463,1464,1720','1462','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,500.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"28\",\"30\",\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,10,'Each Pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Blue Stripe & White Collar Shirt for Boy\'s','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'blue-stripe--white-collar-shirt-for-boys-g8l1h',0.00,NULL,0,NULL,NULL,'2021-01-16 04:10:25','2021-01-21 10:41:16'),(674,'Green Dot Public School - Shirt','admin',9,157,NULL,NULL,NULL,'1467,1468,1465,1466,1720','1466','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Green Dot Public School - Shirt','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'green-dot-public-school---shirt-o8wpd',0.00,NULL,0,NULL,NULL,'2021-01-16 04:11:23','2021-01-21 10:41:21'),(675,'Plane White Shirt for Boy\'s','admin',9,143,NULL,NULL,NULL,'1470,1469,1471,1472,1720','1470','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',400.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,10,'Each Pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Plane White Shirt for Boy\'s','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'plane-white-shirt-for-boys-8cvs8',0.00,NULL,0,NULL,NULL,'2021-01-16 04:11:50','2021-01-21 10:41:26'),(676,'School Blue Shirt for Boy\'s','admin',9,143,NULL,NULL,NULL,'1473,1474,1475,1476,1720','1473','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',400.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,10,'Each Pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Blue School Shirt for Boy\'s','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'blue-school-shirt-for-boys-smamy',0.00,NULL,0,NULL,NULL,'2021-01-16 04:14:07','2021-01-21 10:42:05');
INSERT INTO `products` (`id`, `name`, `added_by`, `user_id`, `category_id`, `subcategory_id`, `subsubcategory_id`, `brand_id`, `photos`, `thumbnail_img`, `video_provider`, `video_link`, `tags`, `description`, `unit_price`, `purchase_price`, `variant_product`, `attributes`, `choice_options`, `colors`, `variations`, `todays_deal`, `published`, `featured`, `current_stock`, `unit`, `min_qty`, `discount`, `discount_type`, `tax`, `tax_type`, `shipping_type`, `shipping_cost`, `num_of_sale`, `meta_title`, `meta_description`, `meta_img`, `pdf`, `slug`, `rating`, `barcode`, `digital`, `file_name`, `file_path`, `created_at`, `updated_at`) VALUES (677,'Punjab Worker Welfare School - Shirt','admin',9,98,NULL,NULL,NULL,'1478,1479,1480,1681,1720','1479','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Punjab Worker Welfare School - Shirt','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'punjab-worker-welfare-school---shirt-6xeki',0.00,NULL,0,NULL,NULL,'2021-01-16 04:14:24','2021-01-21 10:42:10'),(678,'Sky Blue Shirt for Boy\'s','admin',9,143,NULL,NULL,NULL,'1481,1482,1483,1484,1720','1481','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,500.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,10,'Each Pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Sky Blue Shirt for Boy\'s','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'sky-blue-shirt-for-boys-5av3f',0.00,NULL,0,NULL,NULL,'2021-01-16 04:15:24','2021-01-21 11:09:00'),(679,'Punjab Worker Welfare School - Elastic Pent','admin',9,99,NULL,NULL,NULL,'1488,1487,1485,1486,1718','1485','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Punjab Worker Welfare School - Pent','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'punjab-worker-welfare-school---pent-osee0',0.00,NULL,0,NULL,NULL,'2021-01-16 04:15:37','2021-01-21 11:08:54'),(680,'Blue Check Shirt for Boy\'s','admin',9,143,NULL,NULL,NULL,'1489,1493,1491,1497,1720','1489','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,500.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,10,'Each Pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Blue Check Shirt for Boy\'s','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'blue-check-shirt-for-boys-iaced',0.00,NULL,0,NULL,NULL,'2021-01-16 04:18:11','2021-01-21 11:08:49'),(681,'Punjab Worker Welfare School - Girls uniform','admin',9,100,NULL,NULL,NULL,'1496,1495,1494,1490,1492,1719,1726','1495','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\",\"44\"]}]','[]',NULL,0,1,0,1,'Each pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Punjab Worker Welfare School - Girls uniform','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'punjab-worker-welfare-school---girls-uniform-7fush',0.00,NULL,0,NULL,NULL,'2021-01-16 04:18:31','2021-01-21 11:08:39'),(682,'Sunny Ideal School - Shirt','admin',9,113,NULL,NULL,NULL,'1501,1500,1499,1498,1652','1500','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Sunny Ideal School - Shirt','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'sunny-ideal-school---shirt-qwzty',0.00,NULL,0,NULL,NULL,'2021-01-16 04:20:54','2021-01-21 11:08:32'),(683,'Sunny Ideal School - Elatic Pent','admin',9,114,NULL,NULL,NULL,'1505,1502,1503,1504,1718','1502','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Sunny Ideal School - Pent','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'sunny-ideal-school---pent-8x0ag',0.00,NULL,0,NULL,NULL,'2021-01-16 04:22:08','2021-01-21 11:08:27'),(684,'Sunny Ideal School - Girls Uniform','admin',9,115,NULL,NULL,NULL,'1510,1508,1509,1507,1506,1719,1726','1509','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\",\"44\"]}]','[]',NULL,0,1,0,1,'Each pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Sunny Ideal School - Girls Uniform','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'sunny-ideal-school---girls-uniform-vequt',0.00,NULL,0,NULL,NULL,'2021-01-16 04:23:35','2021-01-21 11:08:21'),(685,'The ACE School System - Shirt','admin',9,123,NULL,NULL,NULL,'1514,1513,1511,1512,1720','1511','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The ACE School System - Shirt','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'the-ace-school-system---shirt-hpu76',0.00,NULL,0,NULL,NULL,'2021-01-16 04:26:09','2021-01-21 11:08:13'),(686,'The ACE School System - Elastic Pent','admin',9,124,NULL,NULL,NULL,'1516,1517,1518,1515,1718','1515','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The ACE School System - Elastic Pent','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'the-ace-school-system---elastic-pent-850nb',0.00,NULL,0,NULL,NULL,'2021-01-16 04:28:07','2021-01-21 11:08:08'),(687,'The ACE School System - Wasit Pent','admin',9,124,NULL,NULL,NULL,'1522,1519,1520,1521,1722','1522','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"40*28\",\"40*30\",\"40*32\",\"40*34\",\"40*36\",\"40*38\",\"42*28\",\"42*30\",\"42*32\",\"42*34\",\"42*36\",\"42*38\",\"42*40\",\"42*42\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The ACE School System - Wasit Pent','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'the-ace-school-system---wasit-pent-cmjef',0.00,NULL,0,NULL,NULL,'2021-01-16 04:29:42','2021-01-21 11:08:02'),(688,'The ACE School System - Girls Uniform','admin',9,125,NULL,NULL,NULL,'1526,1527,1524,1525,1523,1726,1719','1525','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\",\"44\"]}]','[]',NULL,0,1,0,1,'Each pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The ACE School System - Girls Uniform','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'the-ace-school-system---girls-uniform-rm3lj',0.00,NULL,0,NULL,NULL,'2021-01-16 04:31:13','2021-01-21 11:07:55'),(689,'The Arqam School - Elastic Summer Pent','admin',9,84,NULL,NULL,NULL,'1531,1529,1530,1528,1684','1528','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The Arqam School - Summer Pent','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'the-arqam-school---summer-pent-fgznx',0.00,NULL,0,NULL,NULL,'2021-01-16 04:33:53','2021-01-21 11:07:48'),(690,'The Arqam School - Waist Winter Pent','admin',9,84,NULL,NULL,NULL,'1535,1534,1533,1532,1683','1532','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"40*28\",\"40*30\",\"40*32\",\"40*34\",\"40*36\",\"40*38\",\"42*28\",\"42*30\",\"42*32\",\"42*34\",\"42*36\",\"42*38\",\"42*40\",\"42*42\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The Arqam School - Winter Pent','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'the-arqam-school---winter-pent-huzvg',0.00,NULL,0,NULL,NULL,'2021-01-16 04:35:23','2021-01-21 11:07:41'),(691,'The Arqam School - Shirt','admin',9,83,NULL,NULL,NULL,'1539,1537,1538,1681,1688','1537','youtube',NULL,'velburry',NULL,500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The Arqam School - Shirt',NULL,NULL,NULL,'the-arqam-school---shirt-sqlpk',0.00,NULL,0,NULL,NULL,'2021-01-16 04:36:43','2021-01-20 03:43:14'),(692,'The Arqam School - Girls Uniform','admin',9,85,NULL,NULL,NULL,'1544,1543,1540,1541,1542,1692,1685','1540','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\"]}]','[]',NULL,0,1,0,1,'Each pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The Arqam School - Girls Uniform','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'the-arqam-school---girls-uniform-ktja8',0.00,NULL,0,NULL,NULL,'2021-01-16 04:38:18','2021-01-21 10:53:23'),(693,'The Smart School - Shirt','admin',9,135,NULL,NULL,NULL,'1548,1547,1545,1546,1688','1545','youtube',NULL,'velburry',NULL,500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The Smart School - Shirt',NULL,NULL,NULL,'the-smart-school---shirt-pfgnz',0.00,NULL,0,NULL,NULL,'2021-01-16 04:40:07','2021-01-20 03:37:28'),(694,'The Smart School - Elastic Pent','admin',9,136,NULL,NULL,NULL,'1550,1551,1552,1549,1684','1549','youtube',NULL,'velburry',NULL,500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The Smart School - Pent',NULL,NULL,NULL,'the-smart-school---pent-2wv5b',0.00,NULL,0,NULL,NULL,'2021-01-16 04:41:22','2021-01-20 03:35:51'),(695,'The Smart School - Girls Uniform','admin',9,137,NULL,NULL,NULL,'1557,1556,1553,1554,1555,1685,1692','1553','youtube',NULL,'velburry',NULL,500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\"]}]','[]',NULL,0,1,0,1,'Each pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The Smart School - Girls Uniform',NULL,NULL,NULL,'the-smart-school---girls-uniform-7lmnt',0.00,NULL,0,NULL,NULL,'2021-01-16 04:43:06','2021-01-20 03:33:10'),(696,'White Rose School System - Elastic Pent','admin',9,153,NULL,NULL,NULL,'1559,1560,1561,1558,1684','1558','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'White Rose School System - Elastic Pent','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'white-rose-school-system---elastic-pent-qrvgu',0.00,NULL,0,NULL,NULL,'2021-01-16 04:45:18','2021-01-21 11:09:05'),(697,'White Rose School System - Wait Pent','admin',9,153,NULL,NULL,NULL,'1565,1564,1563,1562,1683','1564','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"40*28\",\"40*30\",\"40*32\",\"40*34\",\"40*36\",\"40*38\",\"42*28\",\"42*30\",\"42*32\",\"42*34\",\"42*36\",\"42*38\",\"42*40\",\"42*42\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'White Rose School System - Wait Pent','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'white-rose-school-system---wait-pent-6avel',0.00,NULL,0,NULL,NULL,'2021-01-16 04:46:34','2021-01-21 11:09:12'),(698,'White Rose School System - Girls Uniform','admin',9,154,NULL,NULL,NULL,'1569,1570,1568,1566,1567,1692,1685','1567','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\",\"44\"]}]','[]',NULL,0,1,0,1,'Each pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'White Rose School System - Girls Uniform','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'white-rose-school-system---girls-uniform-whd9w',0.00,NULL,0,NULL,NULL,'2021-01-16 04:47:56','2021-01-21 11:09:17'),(699,'Allied School - Baby Girl Uniform Shirt','admin',9,162,NULL,NULL,NULL,'1574,1577,1573,1571,1686','1571','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Allied School - Baby Girl Uniform','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'allied-school---baby-girl-uniform-utq28',0.00,NULL,0,NULL,NULL,'2021-01-16 06:10:34','2021-01-21 11:09:23'),(700,'City High School - Baby Girl Uniform A-line shirt','admin',9,163,NULL,NULL,NULL,'1581,1579,1580,1578,1685','1578','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\"]}]','[]',NULL,0,1,0,1,'Each pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'City High School - Baby Girl Uniform','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'city-high-school---baby-girl-uniform-ax2q4',0.00,NULL,0,NULL,NULL,'2021-01-16 06:13:55','2021-01-21 11:09:29'),(701,'Dar - Arqam School - Baby Girl Uniform Suit','admin',9,164,NULL,NULL,NULL,'1582,1584,1583,1585,1586,1692,1685','1583','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\"]}]','[]',NULL,0,1,0,1,'Each pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Dar - Arqam School - Baby Girl Uniform','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'dar---arqam-school---baby-girl-uniform-qxy8n',0.00,NULL,0,NULL,NULL,'2021-01-16 06:16:42','2021-01-21 11:09:35'),(702,'Divisional Model School - Baby Girl Uniform Shirt','admin',9,165,NULL,NULL,NULL,'1592,1589,1588,1587,1686','1587','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\"]}]','[]',NULL,0,1,0,1,'Each pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Divisional Model School - Baby Girl Uniform','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'divisional-model-school---baby-girl-uniform-aqqnj',0.00,NULL,0,NULL,NULL,'2021-01-16 06:26:13','2021-01-21 11:09:42'),(703,'Divisional Public school - (Nursery) Baby Girl Uniform A-line Shirt','admin',9,166,NULL,NULL,NULL,'1597,1596,1595,1594,1685','1594','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\"]}]','[]',NULL,0,1,0,1,'Each pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Divisional Public school - (Nursery) Baby Girl Uniform','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'divisional-public-school---nursery-baby-girl-uniform-v6e46',0.00,NULL,0,NULL,NULL,'2021-01-16 06:28:48','2021-01-21 11:09:55'),(704,'Divisional Public school - (Prep & One ) Baby Girl Uniform Shirt','admin',9,166,NULL,NULL,NULL,'1600,1601,1598,1599,1686','1598','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\"]}]','[]',NULL,0,1,0,1,'Each pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Divisional Public school - (Prep & One ) Baby Girl Uniform','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'divisional-public-school---prep--one--baby-girl-uniform-gslxw',0.00,NULL,0,NULL,NULL,'2021-01-16 06:31:23','2021-01-21 11:10:04'),(705,'Divisional Public school - (Two Three & Four Class ) Baby Girl Uniform','admin',9,166,NULL,NULL,NULL,'1607,1604,1605,1606,1602,1603,1692,1685','1603','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\"]}]','[]',NULL,0,1,0,1,'Each pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Divisional Public school - (Two Three Four Cass ) Baby Girl Uniform','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'divisional-public-school---two-three-four-cass--baby-girl-uniform-u97dk',0.00,NULL,0,NULL,NULL,'2021-01-16 06:38:23','2021-01-21 11:10:09'),(706,'The Educators School - Baby Boy Uniform','admin',9,167,NULL,NULL,NULL,'1611,1609,1610,1608,1684','1608','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\"]}]','[]',NULL,0,1,0,1,'Each pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The Educators School - Baby Boy Uniform','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'the-educators-school---baby-boy-uniform-qsoi0',0.00,NULL,0,NULL,NULL,'2021-01-16 06:40:42','2021-01-21 11:10:13'),(707,'The Educators School - Baby Girl Uniform Shirt','admin',9,167,NULL,NULL,NULL,'1618,1616,1613,1682,1686','1613','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"16\",\"18\",\"20\",\"22\",\"24\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The Educators School - Baby Girl Uniform','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'the-educators-school---baby-girl-uniform-boiv0',0.00,NULL,0,NULL,NULL,'2021-01-16 06:43:41','2021-01-21 11:10:18'),(708,'The ACE School System - Baby Girl Uniform A-Line shirt','admin',9,168,NULL,NULL,NULL,'1621,1622,1620,1619,1685','1619','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\"]}]','[]',NULL,0,1,0,1,'Each pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The ACE School System - Baby Girl Uniform','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'the-ace-school-system---baby-girl-uniform-7nqn4',0.00,NULL,0,NULL,NULL,'2021-01-16 06:45:33','2021-01-21 11:10:23'),(709,'The Arqam School - Baby Girl Uniform','admin',9,169,NULL,NULL,NULL,'1628,1626,1627,1625,1623,1624,1685,1692','1623','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\"]}]','[]',NULL,0,1,0,1,'Each pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The Arqam School - Baby Girl Uniform','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'the-arqam-school---baby-girl-uniform-qjvyn',0.00,NULL,0,NULL,NULL,'2021-01-16 07:05:49','2021-01-21 11:10:30'),(710,'The Smart School - Baby Girl Uniform shirt','admin',9,170,NULL,NULL,NULL,'1632,1630,1631,1629,1685','1630','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\"]}]','[]',NULL,0,1,0,1,'Each pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The Smart School - Baby Girl Uniform','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'the-smart-school---baby-girl-uniform-2sikb',0.00,NULL,0,NULL,NULL,'2021-01-16 07:07:47','2021-01-21 11:10:38'),(711,'White Rose School System - Baby Girl Uniform Shirt','admin',9,171,NULL,NULL,NULL,'1639,1637,1635,1633,1686','1633','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'White Rose School System - Baby Girl Uniform','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'white-rose-school-system---baby-girl-uniform-iz0fw',0.00,NULL,0,NULL,NULL,'2021-01-16 07:10:26','2021-01-21 11:14:24'),(712,'Divisional Public school - (Premium campus prep to 5 class) Baby Girl Uniform','admin',9,166,NULL,NULL,NULL,'1644,1643,1640,1641,1642,1685,1692','1641','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\"]}]','[]',NULL,0,1,0,1,'Each pair',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Divisional Public school - (5th class) Baby Girl Uniform','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'divisional-public-school---5th-class-baby-girl-uniform-trgke',0.00,NULL,0,NULL,NULL,'2021-01-16 07:16:51','2021-01-21 11:14:18'),(713,'Allied School - Baby Girl Uniform Skirt','admin',9,162,NULL,NULL,NULL,'1572,1575,1576,1689','1572','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"16\",\"18\",\"20\",\"22\",\"24\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Allied School - Baby Girl Uniform Skirt','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'allied-school---baby-girl-uniform-skirt-irmp5',0.00,NULL,0,NULL,NULL,'2021-01-19 05:02:43','2021-01-21 11:14:13'),(714,'Divisional Model School - Baby Girl Uniform Skirt','admin',9,165,NULL,NULL,NULL,'1590,1591,1593,1689','1590','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"16\",\"18\",\"20\",\"22\",\"24\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Divisional Model School - Baby Girl Uniform Skirt','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'divisional-model-school---baby-girl-uniform-skirt-upkxr',0.00,NULL,0,NULL,NULL,'2021-01-19 05:26:02','2021-01-21 11:14:05'),(715,'The Educators School - Baby Girl Uniform Skirt','admin',9,167,NULL,NULL,NULL,'1617,1614,1615,1612,1689','1612','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"16\",\"18\",\"20\",\"22\",\"24\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The Educators School - Baby Girl Uniform Skirt','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'the-educators-school---baby-girl-uniform-skirt-uodvc',0.00,NULL,0,NULL,NULL,'2021-01-19 05:34:20','2021-01-21 11:13:59'),(716,'White Rose School System - Baby Girl Uniform Skirt','admin',9,171,NULL,NULL,NULL,'1634,1636,1638,1689','1636','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"16\",\"18\",\"20\",\"22\",\"24\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'White Rose School System - Baby Girl Uniform Skirt','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'white-rose-school-system---baby-girl-uniform-skirt-vb8zi',0.00,NULL,0,NULL,NULL,'2021-01-19 05:38:13','2021-01-21 11:13:53'),(717,'Brown Jersey For Boys','admin',9,172,NULL,NULL,NULL,'1713,1712,1711,2039','1713','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\"]}]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Brown Jersey For Boys','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'brown-jersey-for-boys-ncqkg',0.00,NULL,0,NULL,NULL,'2021-01-20 03:04:18','2021-01-22 15:13:39'),(718,'Navy Blue Jersey For Boys','admin',9,172,NULL,NULL,NULL,'1716,1715,1714,2039','1714','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\"]}]','[]',NULL,0,1,0,2,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Navy Blue Jersey For Boys','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'navy-blue-jersey-for-boys-j1ywt',0.00,NULL,0,NULL,NULL,'2021-01-20 03:06:46','2021-01-22 15:07:50'),(719,'White Rose School System - Jersey For Boys','admin',9,178,NULL,NULL,NULL,'1714,1716,1715,2039','1714','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'White Rose School System - Jersey For Boys','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'white-rose-school-system---jersey-for-boys-1tzzs',0.00,NULL,0,NULL,NULL,'2021-01-20 09:27:54','2021-01-22 15:06:50'),(720,'Islamia College for Boys - Jersey','admin',9,179,NULL,NULL,NULL,'1716,1715,1714,2039','1714','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',750.00,700.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"32\",\"34\",\"36\",\"38\",\"40\",\"42\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Islamia College for Boys - Jersey','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'islamia-college-for-boys---jersey-hyrne',0.00,NULL,0,NULL,NULL,'2021-01-20 09:40:49','2021-01-22 15:06:26'),(721,'Mehroon Jersey For Boys','admin',9,172,NULL,NULL,NULL,'1729,1728,1727,2039','1727','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Mehroon Jersey For Boys','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'mehroon-jersey-for-boys-24bv5',0.00,NULL,0,NULL,NULL,'2021-01-20 09:47:31','2021-01-22 15:05:48'),(722,'Grey Jersey For Boys','admin',9,172,NULL,NULL,NULL,'1732,1730,1731,2039','1730','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Grey Jersey For Boys','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'grey-jersey-for-boys-ox8li',0.00,NULL,0,NULL,NULL,'2021-01-20 09:51:56','2021-01-22 15:00:19'),(723,'Punjab group of colleges - sleeveless sweater For Boys & Girls','admin',9,180,NULL,NULL,NULL,'1734,1733,2038','1733','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"34\",\"36\",\"38\",\"40\",\"42\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Punjab group of colleges - sleeveless sweater For Boys & Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'punjab-group-of-colleges---sleeveless-sweater-for-boys--girls-vctca',0.00,NULL,0,NULL,NULL,'2021-01-20 09:58:55','2021-01-22 14:59:27'),(724,'Kips College - sleeveless sweater For Boys & Girls','admin',9,181,NULL,NULL,NULL,'1736,1735,2038','1735','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"34\",\"36\",\"38\",\"40\",\"42\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Kips College - sleeveless sweater For Boys & Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'kips-college---sleeveless-sweater-for-boys--girls-5f89d',0.00,NULL,0,NULL,NULL,'2021-01-20 10:02:46','2021-01-22 14:58:57'),(725,'The Educators School - Jacket For Boys & Girls','admin',9,182,NULL,NULL,NULL,'1739,1740,1738,1737,2040','1737','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The Educators School - Jacket For Boys & Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'the-educators-school---jacket-for-boys--girls-iz9zk',0.00,NULL,0,NULL,NULL,'2021-01-20 10:07:07','2021-01-22 14:58:38'),(726,'Punjab group of colleges - Zipper For Girls','admin',9,180,NULL,NULL,NULL,'1742,1743,1741,2040','1741','youtube',NULL,'velburry',NULL,500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"34\",\"36\",\"38\",\"40\",\"42\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Punjab group of colleges - Zipper For Girls',NULL,NULL,NULL,'punjab-group-of-colleges---zipper-for-girls-pv61c',0.00,NULL,0,NULL,NULL,'2021-01-20 10:10:42','2021-01-22 14:56:26'),(727,'Aspire Group Of Colleges - sleeveless sweater For Boys & Girls','admin',9,183,NULL,NULL,NULL,'1745,1744,2038','1744','youtube',NULL,'velburry',NULL,500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"34\",\"36\",\"38\",\"40\",\"42\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Aspire Group Of Colleges - sleeveless sweater For Boys & Girls',NULL,NULL,NULL,'aspire-group-of-colleges---sleeveless-sweater-for-boys--girls-f0kxx',0.00,NULL,0,NULL,NULL,'2021-01-20 10:16:56','2021-01-22 14:56:03'),(728,'Allied School - sleeveless sweater For Boys & Girls','admin',9,184,NULL,NULL,NULL,'1747,1746,2038','1746','youtube',NULL,'velburry',NULL,500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Allied School - sleeveless sweater For Boys & Girls',NULL,NULL,NULL,'allied-school---sleeveless-sweater-for-boys--girls-zzef4',0.00,NULL,0,NULL,NULL,'2021-01-20 10:20:32','2021-01-22 14:54:55'),(729,'The Smart School - sleeveless sweater For Boys & Girls','admin',9,185,NULL,NULL,NULL,'1749,1748,2038','1748','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The Smart School - sleeveless sweater For Boys & Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'the-smart-school---sleeveless-sweater-for-boys--girls-vfg7y',0.00,NULL,0,NULL,NULL,'2021-01-20 10:24:52','2021-01-22 14:54:35'),(730,'Aspire Group Of Colleges - Jersey For Boys','admin',9,183,NULL,NULL,NULL,'1751,1752,1750,2039','1750','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"34\",\"36\",\"38\",\"40\",\"42\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Aspire Group Of Colleges - Jersey For Boys','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'aspire-group-of-colleges---jersey-for-boys-qfsj5',0.00,NULL,0,NULL,NULL,'2021-01-20 10:29:26','2021-01-22 14:54:16'),(731,'Black Blazer Coat For Boys & Girls','admin',9,176,NULL,NULL,NULL,'1755,1754,1753,2040','1754','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Black Blazer Coat For Boys & Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'black-blazer-coat-for-boys--girls-irvdp',0.00,NULL,0,NULL,NULL,'2021-01-20 10:34:34','2021-01-22 14:52:40'),(732,'Allied School - Jacket For Girls & Boys','admin',9,184,NULL,NULL,NULL,'1757,1756,1758,2040','1756','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"16\",\"18\",\"20\",\"`22\",\"24\",\"26\",\"28\",\"30\",\"32\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Allied School - Jacket For Girls & Boys','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'allied-school---jacket-for-girls--boys-lacww',0.00,NULL,0,NULL,NULL,'2021-01-21 01:53:28','2021-01-22 14:50:41'),(733,'Kips College - Jacket For Boys & Girls','admin',9,181,NULL,NULL,NULL,'1761,1762,1763,1760,1759,2040','1759','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed manufacturing\r\ncompany in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna providing\r\nbest quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check,\r\nbest quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\",\"XL\",\"XXL\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Kips College - Jacket For Boys & Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed manufacturing\r\ncompany in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna providing\r\nbest quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check,\r\nbest quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'kips-college---jacket-for-boys--girls-bqspt',0.00,NULL,0,NULL,NULL,'2021-01-21 01:58:04','2021-01-22 14:50:22'),(734,'The Educators School - winter Cap For play group','admin',9,91,NULL,NULL,NULL,'1764','1764','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed manufacturing\r\ncompany in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna providing\r\nbest quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check,\r\nbest quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',100.00,50.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"Child Cap\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The Educators School - winter Cap For play group','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed manufacturing\r\ncompany in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna providing\r\nbest quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check,\r\nbest quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'the-educators-school---winter-cap-for-play-group-xsfsv',0.00,NULL,0,NULL,NULL,'2021-01-21 02:03:51','2021-01-21 03:41:11'),(735,'Divisional Public School - Baby Girl Uniform Skirt (Prep & One)','admin',9,166,NULL,NULL,NULL,'1767,1766,1765,1725','1766','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed manufacturing\r\ncompany in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna providing\r\nbest quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check,\r\nbest quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',400.00,300.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"16\",\"18\",\"20\",\"22\",\"24\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Divisional Public School - Baby Girl Uniform Skirt (Prep & One)','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed manufacturing\r\ncompany in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna providing\r\nbest quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check,\r\nbest quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'divisional-public-school---baby-girl-uniform-skirt-prep--one-ou8ou',0.00,NULL,0,NULL,NULL,'2021-01-21 02:09:44','2021-01-21 03:41:04'),(736,'The Educators School - Baby Boy Uniform Shirt','admin',9,167,NULL,NULL,NULL,'1772,1771,1770,1769,1720','1771','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed manufacturing\r\ncompany in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna providing\r\nbest quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check,\r\nbest quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The Educators School - Baby Boy Uniform Shirt','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed manufacturing\r\ncompany in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna providing\r\nbest quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check,\r\nbest quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'the-educators-school---baby-boy-uniform-shirt-b4ejy',0.00,NULL,0,NULL,NULL,'2021-01-21 02:15:22','2021-01-21 03:40:56'),(737,'Green Dot Public School - Girls Uniform','admin',9,159,NULL,NULL,NULL,'1776,1774,1775,1773,1726,1719','1773','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed manufacturing\r\ncompany in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna providing\r\nbest quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check,\r\nbest quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',700.00,600.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Green Dot Public School - Girls Uniform','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed manufacturing\r\ncompany in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna providing\r\nbest quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check,\r\nbest quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'green-dot-public-school---girls-uniform-56xhl',0.00,NULL,0,NULL,NULL,'2021-01-21 02:24:39','2021-01-21 03:40:50'),(738,'White Suit With Royal Blue Collar Girls Uniform','admin',9,145,NULL,NULL,NULL,'1781,1777,1778,1779,1780,1776,1726,1719','1779','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed manufacturing\r\ncompany in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna providing\r\nbest quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check,\r\nbest quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',700.00,600.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\",\"44\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'White Suit With Royal Blue Collar Girls Uniform','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed manufacturing\r\ncompany in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna providing\r\nbest quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check,\r\nbest quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'white-suit-with-royal-blue-collar-girls-uniform-agabl',0.00,NULL,0,NULL,NULL,'2021-01-21 02:30:50','2021-01-21 03:40:42'),(739,'Aspire Group Of Colleges - Jersey For Girls','admin',9,183,NULL,NULL,NULL,'1783,1784,1782,2039','1782','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed manufacturing\r\ncompany in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna providing\r\nbest quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check,\r\nbest quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"34\",\"36\",\"38\",\"40\",\"42\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Aspire Group Of Colleges - Jersey For Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed manufacturing\r\ncompany in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna providing\r\nbest quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check,\r\nbest quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'aspire-group-of-colleges---jersey-for-girls-2plkw',0.00,NULL,0,NULL,NULL,'2021-01-21 02:35:06','2021-01-22 14:49:47'),(740,'Superior college - Jersey For Girls','admin',9,186,NULL,NULL,NULL,'1787,1786,1785,2039','1785','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed manufacturing\r\ncompany in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna providing\r\nbest quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check,\r\nbest quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',1000.00,900.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"32\",\"34\",\"36\",\"38\",\"40\",\"42\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Superior college - Jersey For Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed manufacturing\r\ncompany in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna providing\r\nbest quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check,\r\nbest quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'superior-college---jersey-for-girls-2terj',0.00,NULL,0,NULL,NULL,'2021-01-21 02:39:17','2021-01-22 14:49:24'),(741,'Blue Uniform Jersey For Girls','admin',9,174,NULL,NULL,NULL,'1790,1789,1788,2039','1788','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed manufacturing\r\ncompany in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna providing\r\nbest quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check,\r\nbest quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Blue Uniform Jersey For Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed manufacturing\r\ncompany in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna providing\r\nbest quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check,\r\nbest quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'blue-uniform-jersey-for-girls-zsrxs',0.00,NULL,0,NULL,NULL,'2021-01-21 02:45:49','2021-01-22 14:49:06'),(742,'White Rose School System - Jersey For Girls','admin',9,178,NULL,NULL,NULL,'1790,1789,1788,2039','1788','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed manufacturing\r\ncompany in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna providing\r\nbest quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check,\r\nbest quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'White Rose School System - Jersey For Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed manufacturing\r\ncompany in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna providing\r\nbest quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check,\r\nbest quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'white-rose-school-system---jersey-for-girls-ep2he',0.00,NULL,0,NULL,NULL,'2021-01-21 02:50:32','2021-01-22 14:48:05'),(743,'Black Uniform Jersey For Girls','admin',9,174,NULL,NULL,NULL,'1793,1792,1791,2039','1792','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed manufacturing\r\ncompany in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna providing\r\nbest quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check,\r\nbest quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Black Uniform Jersey For Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed manufacturing\r\ncompany in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna providing\r\nbest quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check,\r\nbest quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'black-uniform-jersey-for-girls-9kofm',0.00,NULL,0,NULL,NULL,'2021-01-21 02:57:08','2021-01-22 14:47:48'),(744,'Mehroon Jersey For Girls','admin',9,174,NULL,NULL,NULL,'1795,1796,1794,2039','1794','youtube',NULL,'velburry',NULL,500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Mehroon Jersey For Girls',NULL,NULL,NULL,'mehroon-jersey-for-girls-u1sbc',0.00,NULL,0,NULL,NULL,'2021-01-21 03:16:03','2021-01-22 14:47:28'),(745,'Royal Blue Uniform Jersey For Girls','admin',9,174,NULL,NULL,NULL,'1799,1798,1797,2039','1797','youtube',NULL,'velburry',NULL,500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Royal Blue Uniform Jersey For Girls',NULL,NULL,NULL,'royal-blue-uniform-jersey-for-girls-hwby4',0.00,NULL,0,NULL,NULL,'2021-01-21 03:20:31','2021-01-22 14:46:16'),(746,'The Arqam School - Jersey For Girls','admin',9,187,NULL,NULL,NULL,'1799,1798,1797,2039','1797','youtube',NULL,'velburry',NULL,500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Royal Blue Uniform Jersey For Girls',NULL,NULL,NULL,'royal-blue-uniform-jersey-for-girls-fmzdl',0.00,NULL,0,NULL,NULL,'2021-01-21 03:21:43','2021-01-22 14:45:53'),(747,'Superior college - Sleeveless Sweater For Boys & Girls','admin',9,186,NULL,NULL,NULL,'1801,1800,2038','1800','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"34\",\"36\",\"38\",\"40\",\"42\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Superior college - Sleeveless Sweater For Boys & Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'superior-college---sleeveless-sweater-for-boys--girls-ju5lh',0.00,NULL,0,NULL,NULL,'2021-01-21 03:31:14','2021-01-22 14:43:24'),(748,'Sunny Ideal School - Sleeveless Sweater For Boys & girls','admin',9,188,NULL,NULL,NULL,'1802,1803,2038','1802','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Sunny Ideal School - Sleeveless Sweater For Boys & girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'sunny-ideal-school---sleeveless-sweater-for-boys--girls-7b2e9',0.00,NULL,0,NULL,NULL,'2021-01-21 03:42:14','2021-01-22 14:42:58'),(749,'Green Dot Public School - Sleeveless Sweater For Girls & Boys','admin',9,189,NULL,NULL,NULL,'1802,1803,2038','1802','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Green Dot Public School - Sleeveless Sweater For Girls & Boys','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'green-dot-public-school---sleeveless-sweater-for-girls--boys-dgkzp',0.00,NULL,0,NULL,NULL,'2021-01-21 03:59:04','2021-01-22 14:42:39'),(750,'Green Uniform Sleeveless Sweater for Boys & Girls','admin',9,173,NULL,NULL,NULL,'1802,1803,2038','1802','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Green Uniform Sleeveless Sweater for Boys & Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'green-uniform-sleeveless-sweater-for-boys--girls-3vrel',0.00,NULL,0,NULL,NULL,'2021-01-21 04:06:13','2021-01-22 14:41:49'),(751,'Dar - Arqam School - Sleeveless Sweater For Boys & Girls','admin',9,190,NULL,NULL,NULL,'1804,2038','1804','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Dar - Arqam School - Sleeveless Sweater For Boys & Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'dar---arqam-school---sleeveless-sweater-for-boys--girls-lx4s1',0.00,NULL,0,NULL,NULL,'2021-01-21 04:11:32','2021-01-22 14:41:26'),(752,'Green Uniform Jersey For Boys','admin',9,172,NULL,NULL,NULL,'1806,1807,1805,2039','1805','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Green Uniform Jersey For Boys','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'green-uniform-jersey-for-boys-eccz5',0.00,NULL,0,NULL,NULL,'2021-01-21 04:14:49','2021-01-22 14:41:02'),(753,'Green Dot Public School - Jersey For Boys','admin',9,189,NULL,NULL,NULL,'1806,1807,1805,2039','1805','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Green Dot Public School - Jersey For Boys','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'green-dot-public-school---jersey-for-boys-m2grg',0.00,NULL,0,NULL,NULL,'2021-01-21 04:17:02','2021-01-22 14:40:41'),(754,'Allied School - Winter Cap','admin',9,76,NULL,NULL,NULL,'1808','1808','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',100.00,50.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"Standard Size\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Allied School - Winter Cap','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'allied-school---winter-cap-1eavt',0.00,NULL,0,NULL,NULL,'2021-01-21 04:20:40','2021-01-21 11:24:01'),(755,'The Educators School - Winter cap','admin',9,91,NULL,NULL,NULL,'1809','1809','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',150.00,100.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"Standard Size\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The Educators School - Winter cap','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'the-educators-school---winter-cap-xkjo4',0.00,NULL,0,NULL,NULL,'2021-01-21 04:22:23','2021-01-21 11:23:56'),(756,'Mehroon Sleeveless Sweater For Boys & Girls','admin',9,173,NULL,NULL,NULL,'1810,1811,2038','1810','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Mehroon Sleeveless Sweater For Boys & Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'mehroon-sleeveless-sweater-for-boys--girls-wigmt',0.00,NULL,0,NULL,NULL,'2021-01-21 04:24:49','2021-01-22 14:39:35'),(757,'Divisional Model School - Sleeveless Sweater For Boys & Girls','admin',9,191,NULL,NULL,NULL,'1810,1811,2038','1810','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Divisional Model School - Sleeveless Sweater For Boys & Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'divisional-model-school---sleeveless-sweater-for-boys--girls-pm9i9',0.00,NULL,0,NULL,NULL,'2021-01-21 04:28:12','2021-01-22 14:39:11'),(758,'The Arqam School - Sleeveless Sweater For Boys','admin',9,187,NULL,NULL,NULL,'1810,1811,2038','1810','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\",\"40\",\"42\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The Arqam School - Sleeveless Sweater For Boys','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'the-arqam-school---sleeveless-sweater-for-boys-ugf0m',0.00,NULL,0,NULL,NULL,'2021-01-21 04:30:35','2021-01-22 14:38:15'),(759,'Royal Blue Coat For Boys & Girls','admin',9,176,NULL,NULL,NULL,'1812,1813,1814,2040','1814','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',1000.00,1100.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Royal Blue Coat For Boys & Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'royal-blue-coat-for-boys--girls-lvvku',0.00,NULL,0,NULL,NULL,'2021-01-21 04:35:07','2021-01-22 14:37:49'),(760,'The Arqam School - Winter Coat For Girls','admin',9,187,NULL,NULL,NULL,'1812,1813,1814,2040','1814','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',1100.00,1000.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The Arqam School - Winter Coat For Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'the-arqam-school---winter-coat-for-girls-ufze4',0.00,NULL,0,NULL,NULL,'2021-01-21 04:37:59','2021-01-22 14:34:49'),(761,'Green Uniform Coat For Boys & Girls','admin',9,176,NULL,NULL,NULL,'1815,1817,1816,2040','1815','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',1100.00,1000.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Green Uniform Coat For Boys & Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'green-uniform-coat-for-boys--girls-ivuiq',0.00,NULL,0,NULL,NULL,'2021-01-21 04:41:54','2021-01-22 14:33:53'),(762,'Green Dot Public School - Winter Coat For Boys & Girls','admin',9,189,NULL,NULL,NULL,'1817,1816,1815,2040','1815','youtube',NULL,'Velburry',NULL,1100.00,1000.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Green Dot Public School - Winter Coat For Boys & Girls',NULL,NULL,NULL,'green-dot-public-school---winter-coat-for-boys--girls-qryia',0.00,NULL,0,NULL,NULL,'2021-01-21 04:45:34','2021-01-22 14:31:51'),(763,'Dar - Arqam School - Green Winter Coat For Boys & Girls','admin',9,190,NULL,NULL,NULL,'1817,1816,1815,2040','1815','youtube',NULL,'Velburry',NULL,1100.00,1000.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Green Dot Public School - Winter Coat For Boys & Girls',NULL,NULL,NULL,'green-dot-public-school---winter-coat-for-boys--girls-iduij',0.00,NULL,0,NULL,NULL,'2021-01-21 04:45:43','2021-01-22 14:31:22'),(764,'Sunny Ideal School - Winter Coat For Boys & Girls','admin',9,188,NULL,NULL,NULL,'1817,1816,1815,2040','1815','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',1100.00,1000.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Green Dot Public School - Winter Coat For Boys & Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'green-dot-public-school---winter-coat-for-boys--girls-nsuhg',0.00,NULL,0,NULL,NULL,'2021-01-21 04:48:53','2021-01-22 14:30:00'),(765,'Navy Blue Coat For Boys & Girls','admin',9,176,NULL,NULL,NULL,'1819,1820,1818,2040','1818','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',1100.00,1000.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Navy Blue Coat For Boys & Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'navy-blue-coat-for-boys--girls-2icil',0.00,NULL,0,NULL,NULL,'2021-01-21 04:55:54','2021-01-22 14:28:54'),(766,'Divisional Public school - Winter Coat For Boys & Girls','admin',9,192,NULL,NULL,NULL,'1819,1820,1818,2040','1818','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',1100.00,1000.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Navy Blue Coat For Boys & Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'navy-blue-coat-for-boys--girls-anqh4',0.00,NULL,0,NULL,NULL,'2021-01-21 04:56:02','2021-01-22 14:28:19'),(767,'The Educators School - Winter Coat For Boys & Girls','admin',9,182,NULL,NULL,NULL,'1819,1820,1818,2040','1818','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',1100.00,1000.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Navy Blue Coat For Boys & Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'navy-blue-coat-for-boys--girls-y7xu8',0.00,NULL,0,NULL,NULL,'2021-01-21 04:58:41','2021-01-22 14:27:55'),(768,'Punjab group of colleges - Winter Coat For Boys & Girls','admin',9,180,NULL,NULL,NULL,'1819,1820,1818,2040','1818','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',1100.00,1000.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"26\",\"28\",\"30\",\"32\",\"34\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Navy Blue Coat For Boys & Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'navy-blue-coat-for-boys--girls-rqutr',0.00,NULL,0,NULL,NULL,'2021-01-21 05:02:17','2021-01-22 14:27:12'),(769,'Islamia College for Boys - Winter Coat','admin',9,179,NULL,NULL,NULL,'1819,1820,1818,2040','1818','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',1100.00,1000.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"26\",\"28\",\"30\",\"32\",\"34\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Navy Blue Coat For Boys & Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'navy-blue-coat-for-boys--girls-yayw0',0.00,NULL,0,NULL,NULL,'2021-01-21 05:04:30','2021-01-22 14:26:20'),(770,'City High School - Winter Coat For Boys & Girls','admin',9,193,NULL,NULL,NULL,'1819,1820,1818,2040','1818','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',1100.00,1000.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Navy Blue Coat For Boys & Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'navy-blue-coat-for-boys--girls-wi2zx',0.00,NULL,0,NULL,NULL,'2021-01-21 05:06:27','2021-01-22 14:25:52'),(771,'White Rose School System - Winter Coat For Boys & Girls','admin',9,178,NULL,NULL,NULL,'1819,1820,1818,2040','1818','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',1100.00,1000.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Navy Blue Coat For Boys & Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'navy-blue-coat-for-boys--girls-swanr',0.00,NULL,0,NULL,NULL,'2021-01-21 05:09:43','2021-01-22 14:24:39'),(772,'Allied School - Winter Coat For Boys & Girls','admin',9,184,NULL,NULL,NULL,'1819,1820,1818,2040','1818','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',1100.00,1000.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Navy Blue Coat For Boys & Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'navy-blue-coat-for-boys--girls-15set',0.00,NULL,0,NULL,NULL,'2021-01-21 05:11:55','2021-01-22 14:23:18'),(773,'Mahroon Uniform Coat For Boys & Girls','admin',9,176,NULL,NULL,NULL,'1823,1822,1821,2040','1822','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',1100.00,1000.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Mahroon Uniform Coat For Boys & Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'mahroon-uniform-coat-for-boys--girls-xtgoh',0.00,NULL,0,NULL,NULL,'2021-01-21 05:16:32','2021-01-22 14:22:44'),(774,'Divisional Model College - Winter Coat For Boys & girls','admin',9,191,NULL,NULL,NULL,'1823,1822,1821,2040','1822','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',1100.00,1000.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Mahroon Uniform Coat For Boys & Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'mahroon-uniform-coat-for-boys--girls-vygh9',0.00,NULL,0,NULL,NULL,'2021-01-21 05:16:44','2021-01-22 14:21:12'),(775,'The Arqam School - Winter Coat For Boys','admin',9,187,NULL,NULL,NULL,'1823,1822,1821,2040','1822','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',1100.00,1000.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Mahroon Uniform Coat For Boys & Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'mahroon-uniform-coat-for-boys--girls-ejuqp',0.00,NULL,0,NULL,NULL,'2021-01-21 05:18:38','2021-01-22 14:19:53'),(776,'Punjab group of colleges - Jersey For Boys','admin',9,180,NULL,NULL,NULL,'1826,1825,1824,2039','1824','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',1000.00,900.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"34\",\"36\",\"38\",\"40\",\"42\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Punjab group of colleges - Jersey For Boys','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'punjab-group-of-colleges---jersey-for-boys-dzhu9',0.00,NULL,0,NULL,NULL,'2021-01-21 05:23:17','2021-01-22 14:18:45'),(777,'Mehroon Winter School Cap','admin',9,194,NULL,NULL,NULL,'1828','1828','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',100.00,50.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"Standard Size\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Mehroon Winter School Cap','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'mehroon-winter-school-cap-awy6j',0.00,NULL,0,NULL,NULL,'2021-01-21 05:28:02','2021-01-21 11:24:57'),(778,'Divisional Model College - Winter Cap','admin',9,111,NULL,NULL,NULL,'1828','1828','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',100.00,50.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"Standard Size\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Mehroon Winter School Cap','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'mehroon-winter-school-cap-yoi8z',0.00,NULL,0,NULL,NULL,'2021-01-21 05:28:19','2021-01-21 11:24:49'),(779,'The Arqam School - Winter Cap','admin',9,86,NULL,NULL,NULL,'1828','1828','youtube',NULL,'velburry',NULL,100.00,50.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"Standard Size\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Mehroon Winter School Cap',NULL,NULL,NULL,'mehroon-winter-school-cap-o2gag',0.00,NULL,0,NULL,NULL,'2021-01-21 05:29:44','2021-01-21 05:30:21'),(780,'Black Uniform Winter Cap','admin',9,194,NULL,NULL,NULL,'1827','1827','youtube',NULL,'velburry',NULL,100.00,50.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"Standard Size\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Black Uniform Winter Cap',NULL,NULL,NULL,'Black-Uniform-Winter-Cap-1KyDK',0.00,NULL,0,NULL,NULL,'2021-01-21 05:32:09','2021-01-21 05:32:09'),(781,'Grey Uniform Winter Cap','admin',9,194,NULL,NULL,NULL,'1831','1831','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Woolen Cap</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',100.00,50.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"Standard Size\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Grey Uniform Winter Cap','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Woolen Cap</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'grey-uniform-winter-cap-gqu8v',0.00,NULL,0,NULL,NULL,'2021-01-21 05:34:13','2021-01-21 11:32:42'),(782,'Punjab Worker Welfare School - Winter School Cap','admin',9,101,NULL,NULL,NULL,'1831','1831','youtube',NULL,'velburry',NULL,100.00,50.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"Standard Size\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Grey Uniform Winter Cap',NULL,NULL,NULL,'grey-uniform-winter-cap-adcwy',0.00,NULL,0,NULL,NULL,'2021-01-21 05:34:50','2021-01-21 05:35:47'),(783,'White Rose School System - Winter Cap','admin',9,155,NULL,NULL,NULL,'1829','1829','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Woolen Cap</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',100.00,50.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"Standard Size\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Navy Blue School Winter Cap','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Woolen Cap</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'navy-blue-school-winter-cap-rm06a',0.00,NULL,0,NULL,NULL,'2021-01-21 05:38:14','2021-01-21 11:32:37'),(784,'Divisional Public school - Winter Cap','admin',9,56,NULL,NULL,NULL,'1829','1829','youtube',NULL,'velburry',NULL,100.00,50.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"Standard Size\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Navy Blue School Winter Cap',NULL,NULL,NULL,'navy-blue-school-winter-cap-ympdi',0.00,NULL,0,NULL,NULL,'2021-01-21 06:15:54','2021-01-21 06:18:42'),(785,'Navy Blue Winter Cap','admin',9,194,NULL,NULL,NULL,'1829','1829','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Woolen Cap</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',100.00,50.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"Standard Size\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Navy Blue School Winter Cap','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Woolen Cap</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'navy-blue-school-winter-cap-b13x1',0.00,NULL,0,NULL,NULL,'2021-01-21 06:19:00','2021-01-21 11:32:31'),(787,'City High School - Winter School Cap','admin',9,121,NULL,NULL,NULL,'1829','1829','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Woolen Cap</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',100.00,50.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"Standard Size\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Navy Blue School Winter Cap','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Woolen Cap</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'navy-blue-school-winter-cap-nf7hu',0.00,NULL,0,NULL,NULL,'2021-01-21 06:20:13','2021-01-21 11:32:26'),(788,'Brown Winter School Cap','admin',9,194,NULL,NULL,NULL,'1833','1833','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Woolen Cap</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',100.00,50.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"Standard Size\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Brown Winter School Cap','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Woolen Cap</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'brown-winter-school-cap-flmnh',0.00,NULL,0,NULL,NULL,'2021-01-21 06:26:06','2021-01-21 11:32:21'),(789,'The ACE School System - Winter School Cap','admin',9,126,NULL,NULL,NULL,'1833','1833','youtube',NULL,'velburry',NULL,100.00,50.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"Standard Size\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Brown Winter School Cap',NULL,NULL,NULL,'brown-winter-school-cap-karkd',0.00,NULL,0,NULL,NULL,'2021-01-21 06:29:21','2021-01-21 06:30:17'),(790,'Green Winter School Cap','admin',9,194,NULL,NULL,NULL,'1832','1832','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Woolen Cap</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',100.00,50.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"Standard Size\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Green Winter School Cap','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Woolen Cap</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'green-winter-school-cap-wwcux',0.00,NULL,0,NULL,NULL,'2021-01-21 06:35:02','2021-01-21 11:32:16'),(791,'Green Dot Public School - Winter School Cap','admin',9,160,NULL,NULL,NULL,'1832','1832','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Woolen Cap</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',100.00,50.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"Standard Size\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Green Winter School Cap','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Woolen Cap</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'green-winter-school-cap-w6edw',0.00,NULL,0,NULL,NULL,'2021-01-21 06:35:14','2021-01-21 11:32:11'),(792,'Dar - Arqam School - Winter School Cap','admin',9,81,NULL,NULL,NULL,'1832','1832','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Woolen Cap</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',100.00,50.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"Standard Size\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Green Winter School Cap','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Woolen Cap</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'green-winter-school-cap-dcvmy',0.00,NULL,0,NULL,NULL,'2021-01-21 06:36:45','2021-01-21 11:32:02'),(793,'Sunny Ideal School - Winter School Cap','admin',9,116,NULL,NULL,NULL,'1832','1832','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Woolen Cap</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',100.00,50.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"Standard Size\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Green Winter School Cap','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Woolen Cap</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'green-winter-school-cap-kwfw7',0.00,NULL,0,NULL,NULL,'2021-01-21 06:38:16','2021-01-21 11:31:58'),(794,'Royal Blue Winter Cap','admin',9,194,NULL,NULL,NULL,'1830','1830','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Woolen Cap</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',100.00,50.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"Standard Size\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Royal Blue Winter Cap','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Woolen Cap</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'royal-blue-winter-cap-lsnaw',0.00,NULL,0,NULL,NULL,'2021-01-21 06:41:54','2021-01-21 11:31:54'),(795,'The Educators School - Belt','admin',9,91,NULL,NULL,NULL,'1840,1847','1840','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Belt</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',150.00,200.00,0,'[]','[]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The Educators School - Belt','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Belt</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'the-educators-school---belt-dgfh3',0.00,NULL,0,NULL,NULL,'2021-01-21 07:21:38','2021-01-21 11:34:37'),(796,'Superior college - Belt','admin',9,71,NULL,NULL,NULL,'1839,1847','1839','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Belt</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',200.00,249.95,0,'[]','[]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Superior college - Belt','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Belt</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'superior-college---belt-u5kvc',0.00,NULL,0,NULL,NULL,'2021-01-21 07:25:26','2021-01-21 11:34:40'),(797,'The Arqam School - Belt','admin',9,86,NULL,NULL,NULL,'1843,1847','1843','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Belt</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',150.00,200.00,0,'[]','[]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The Arqam School - Belt','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Belt</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'the-arqam-school---belt-ecjav',0.00,NULL,0,NULL,NULL,'2021-01-21 07:27:23','2021-01-21 11:34:45'),(798,'The ACE School System - Belt','admin',9,126,NULL,NULL,NULL,'1834,1836,1847','1834','youtube',NULL,'velburry',NULL,150.00,200.00,0,'[]','[]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The ACE School System - Belt',NULL,NULL,NULL,'the-ace-school-system---belt-ubhhh',0.00,NULL,0,NULL,NULL,'2021-01-21 07:29:43','2021-01-21 07:32:34'),(799,'White Rose School System - Belt','admin',9,155,NULL,NULL,NULL,'1837,1838,1847','1837','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Belt</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',150.00,200.00,0,'[]','[]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'White Rose School System - Belt','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Belt</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'white-rose-school-system---belt-obts9',0.00,NULL,0,NULL,NULL,'2021-01-21 07:32:07','2021-01-21 11:34:48'),(800,'Divisional Public school - Belt','admin',9,56,NULL,NULL,NULL,'1851,1846,1835','1846','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Belt</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',200.00,250.00,0,'[]','[]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Divisional Public school - Belt','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Belt</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'divisional-public-school---belt-9cmyw',0.00,NULL,0,NULL,NULL,'2021-01-21 07:37:35','2021-01-21 11:34:57'),(801,'Punjab group of colleges - Belt','admin',9,61,NULL,NULL,NULL,'1841,1847','1841','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Belt</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',200.00,250.00,0,'[]','[]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Punjab group of colleges - Belt','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Belt</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'punjab-group-of-colleges---belt-hk5ji',0.00,NULL,0,NULL,NULL,'2021-01-21 07:39:33','2021-01-21 11:35:01'),(802,'The Smart School - Belt','admin',9,138,NULL,NULL,NULL,'1842,1845,1847','1845','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Belt</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',150.00,200.00,0,'[]','[]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The Smart School - Belt','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Belt</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'the-smart-school---belt-timsa',0.00,NULL,0,NULL,NULL,'2021-01-21 07:41:26','2021-01-21 11:35:05'),(803,'Dar - Arqam School - Belt','admin',9,81,NULL,NULL,NULL,'1850,1848,1847','1850','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Belt</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',150.00,200.00,0,'[]','[]','[]',NULL,0,1,0,1,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Dar - Arqam School - Belt','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;School Belt</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'dar---arqam-school---belt-3g9ms',0.00,NULL,0,NULL,NULL,'2021-01-21 07:43:41','2021-01-21 11:35:11'),(804,'The ACE School System - Girls Dupatta','admin',9,126,NULL,NULL,NULL,'2037,2036','2036','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',300.00,200.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The ACE School System - Girls Dupatta','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'the-ace-school-system---girls-dupatta-tmgo5',0.00,NULL,0,NULL,NULL,'2021-01-21 09:06:35','2021-01-22 14:12:47'),(805,'The Arqam School - Girls Scarf','admin',9,86,NULL,NULL,NULL,'2035,2034','2034','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',250.00,200.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S (5 to 8 year)\",\"M (7 to 10 Year)\",\"L (11 to 14 Year)\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The Arqam School - Girls Scarf','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'the-arqam-school---girls-scarf-wxo1s',0.00,NULL,0,NULL,NULL,'2021-01-21 09:11:01','2021-01-23 03:37:51'),(806,'The ACE School System - Scarf','admin',9,126,NULL,NULL,NULL,'2033,2032','2032','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',250.00,200.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S (5 to 8 Year)\",\"M (7 to 10 yera)\",\"L (11 to 14 Year)\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The ACE School System - Scarf','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'the-ace-school-system---scarf-flkt7',0.00,NULL,0,NULL,NULL,'2021-01-21 09:16:46','2021-01-23 03:36:49'),(807,'Dar - Arqam School - Scarf','admin',9,81,NULL,NULL,NULL,'2031,2030,2029','2030','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',300.00,250.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S (5 to 8 Year)\",\"M (7 to 10 Year)\",\"L (11 to 14 Year)\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Dar - Arqam School - Scarf','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'dar---arqam-school---scarf-odnv9',0.00,NULL,0,NULL,NULL,'2021-01-21 09:19:11','2021-01-23 03:34:06'),(808,'Sunny Ideal School - Girls Dupatta','admin',9,116,NULL,NULL,NULL,'2028,2027','2027','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',300.00,250.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Sunny Ideal School - Girls Dupatta','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'sunny-ideal-school---girls-dupatta-w5dxv',0.00,NULL,0,NULL,NULL,'2021-01-21 09:21:50','2021-01-22 14:00:45'),(809,'Allied School - Girls Dupatta','admin',9,76,NULL,NULL,NULL,'2026,2025','2025','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',300.00,250.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Allied School - Girls Dupatta','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'allied-school---girls-dupatta-zoxga',0.00,NULL,0,NULL,NULL,'2021-01-21 09:23:42','2021-01-22 13:58:50'),(810,'Divisional Model College - Girls Dupatta','admin',9,111,NULL,NULL,NULL,'2024,2023','2023','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',300.00,250.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Divisional Model College - Girls Dupatta','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'divisional-model-college---girls-dupatta-s2f6m',0.00,NULL,0,NULL,NULL,'2021-01-21 09:25:45','2021-01-22 13:57:21'),(811,'Mehroon School Dupatta For Girls','admin',9,195,NULL,NULL,NULL,'2024,2023','2023','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',300.00,250.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Mehroon School Dupatta For Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'mehroon-school-dupatta-for-girls-15t6a',0.00,NULL,0,NULL,NULL,'2021-01-21 09:27:30','2021-01-22 13:56:51'),(812,'Superior college - Girls Dupatta','admin',9,71,NULL,NULL,NULL,'2022,2021','2021','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',400.00,300.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"L\",\"XL\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Superior college - Girls Dupatta','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'superior-college---girls-dupatta-tqq8c',0.00,NULL,0,NULL,NULL,'2021-01-21 09:29:49','2021-01-22 13:53:43'),(813,'White Uniform Dupatta For Girls','admin',9,195,NULL,NULL,NULL,'2020,2019','2019','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',300.00,250.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'White Uniform Dupatta For Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'white-uniform-dupatta-for-girls-re9nw',0.00,NULL,0,NULL,NULL,'2021-01-21 09:32:05','2021-01-22 13:52:09'),(814,'White Rose School System - Girls Dupatta','admin',9,155,NULL,NULL,NULL,'2020,2019','2019','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',300.00,250.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'White Uniform Dupatta For Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'white-uniform-dupatta-for-girls-8g2hr',0.00,NULL,0,NULL,NULL,'2021-01-21 09:32:10','2021-01-22 13:51:30'),(815,'The Educators School - Girls Dupatta','admin',9,91,NULL,NULL,NULL,'2020,2019','2019','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',300.00,250.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'White Uniform Dupatta For Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'white-uniform-dupatta-for-girls-lm6yx',0.00,NULL,0,NULL,NULL,'2021-01-21 09:33:16','2021-01-22 13:49:57'),(816,'White Dupatta With Navy Blue Border For Girls','admin',9,195,NULL,NULL,NULL,'2018,2017','2017','youtube',NULL,'velburry',NULL,300.00,250.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'White Dupatta With Navy Blue Border For Girls',NULL,NULL,NULL,'white-dupatta-with-navy-blue-border-for-girls-xtq1i',0.00,NULL,0,NULL,NULL,'2021-01-21 09:42:37','2021-01-22 13:48:08'),(817,'Divisional Public school - Girls Dupatta','admin',9,56,NULL,NULL,NULL,'2018,2017','2017','youtube',NULL,'velburry',NULL,300.00,250.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Divisional Public school - Girls Dupatta',NULL,NULL,NULL,'divisional-public-school---girls-dupatta-8lemh',0.00,NULL,0,NULL,NULL,'2021-01-21 09:44:02','2021-01-22 13:30:58'),(818,'Aspire Group Of Colleges - Girls Dupatta','admin',9,132,NULL,NULL,NULL,'2016,2015','2016','youtube',NULL,'velburry',NULL,500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"XL\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Aspire Group Of Colleges - Girls Dupatta',NULL,NULL,NULL,'aspire-group-of-colleges---girls-dupatta-gkw4u',0.00,NULL,0,NULL,NULL,'2021-01-21 09:47:37','2021-01-22 13:28:22'),(819,'Punjab group of colleges - Girls Dupatta','admin',9,61,NULL,NULL,NULL,'2014,2013','2013','youtube',NULL,'velburry',NULL,400.00,300.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"XL\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Punjab group of colleges - Girls Dupatta',NULL,NULL,NULL,'punjab-group-of-colleges---girls-dupatta-unx5h',0.00,NULL,0,NULL,NULL,'2021-01-21 09:49:48','2021-01-22 09:58:30'),(820,'white Shafoon Dupatta For Girls','admin',9,195,NULL,NULL,NULL,'2014,2013','2013','youtube',NULL,'velburry',NULL,400.00,300.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"XL\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Punjab group of colleges - Girls Dupatta',NULL,NULL,NULL,'punjab-group-of-colleges---girls-dupatta-uhmin',0.00,NULL,0,NULL,NULL,'2021-01-21 09:49:53','2021-01-22 09:57:48'),(821,'Punjab Worker Welfare School - Girls Dupatta','admin',9,101,NULL,NULL,NULL,'2012,2011','2011','youtube',NULL,'velburry',NULL,300.00,250.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Punjab Worker Welfare School - Girls Dupatta',NULL,NULL,NULL,'punjab-worker-welfare-school---girls-dupatta-dthyq',0.00,NULL,0,NULL,NULL,'2021-01-21 09:53:11','2021-01-22 09:53:30'),(822,'The Smart School - Girls Dupatta','admin',9,138,NULL,NULL,NULL,'2009,2010','2010','youtube',NULL,'velburry',NULL,350.00,300.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The Smart School - Girls Dupatta',NULL,NULL,NULL,'the-smart-school---girls-dupatta-u5vq3',0.00,NULL,0,NULL,NULL,'2021-01-21 09:55:12','2021-01-22 08:39:57'),(823,'White Shafoon Dupatta With Green Border For Girls','admin',9,195,NULL,NULL,NULL,'2009,2010','2010','youtube',NULL,'velburry',NULL,350.00,300.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The Smart School - Girls Dupatta',NULL,NULL,NULL,'the-smart-school---girls-dupatta-vftun',0.00,NULL,0,NULL,NULL,'2021-01-21 09:55:17','2021-01-22 07:57:22'),(824,'Kips College - Girls Dupatta','admin',9,66,NULL,NULL,NULL,'2008,2007','2007','youtube',NULL,'velburry',NULL,500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"XL\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Kips College - Girls Dupatta',NULL,NULL,NULL,'kips-college---girls-dupatta-yixh4',0.00,NULL,0,NULL,NULL,'2021-01-21 09:58:38','2021-01-22 07:56:27'),(825,'White Dupatta With Royal Blue Border For Girls','admin',9,195,NULL,NULL,NULL,'2006,2005','2006','youtube',NULL,'velburry',NULL,300.00,250.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'White Dupatta With Royal Blue Border For Girls',NULL,NULL,NULL,'white-dupatta-with-royal-blue-border-for-girls-tuqj4',0.00,NULL,0,NULL,NULL,'2021-01-21 10:01:06','2021-01-22 07:55:38'),(826,'City High School - Girls Dupatta','admin',9,121,NULL,NULL,NULL,'2006,2005','2006','youtube',NULL,'velburry',NULL,300.00,250.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'White Dupatta With Royal Blue Border For Girls',NULL,NULL,NULL,'white-dupatta-with-royal-blue-border-for-girls-pyn4p',0.00,NULL,0,NULL,NULL,'2021-01-21 10:01:11','2021-01-22 07:55:05'),(827,'Dar - Arqam School - Girls Dupatta','admin',9,81,NULL,NULL,NULL,'2003,2004','2004','youtube',NULL,'velburry',NULL,350.00,300.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Dar - Arqam School - Girls Dupatta',NULL,NULL,NULL,'dar---arqam-school---girls-dupatta-mvfpe',0.00,NULL,0,NULL,NULL,'2021-01-21 10:03:33','2021-01-22 07:54:07'),(828,'The Arqam School - Girls Dupatta','admin',9,86,NULL,NULL,NULL,'2001,2002','2001','youtube',NULL,'velburry',NULL,300.00,250.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The Arqam School - Girls Dupatta',NULL,NULL,NULL,'the-arqam-school---girls-dupatta-zelle',0.00,NULL,0,NULL,NULL,'2021-01-21 10:05:13','2021-01-22 07:53:27'),(829,'White Rose School System - Girls Patti','admin',9,155,NULL,NULL,NULL,'1999,2000','2000','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',120.00,100.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'White Rose School System - Girls Patti','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'white-rose-school-system---girls-patti-wqk8g',0.00,NULL,0,NULL,NULL,'2021-01-21 10:07:08','2021-01-22 07:52:32'),(830,'The ACE School System - Girls Dupatta','admin',9,126,NULL,NULL,NULL,'1997,1998','1997','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',120.00,100.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The ACE School System - Girls Dupatta','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'the-ace-school-system---girls-dupatta-dcqaj',0.00,NULL,0,NULL,NULL,'2021-01-21 10:12:08','2021-01-22 07:51:09'),(831,'Royal Blue Patti For Girls','admin',9,195,NULL,NULL,NULL,'1995,1996','1995','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',120.00,100.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Royal Blue Patti For Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'royal-blue-patti-for-girls-ibydg',0.00,NULL,0,NULL,NULL,'2021-01-21 10:14:04','2021-01-22 07:50:21'),(832,'City High School - Girls Patti','admin',9,121,NULL,NULL,NULL,'1995,1996','1995','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',120.00,100.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Royal Blue Patti For Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'royal-blue-patti-for-girls-nxm7l',0.00,NULL,0,NULL,NULL,'2021-01-21 10:14:09','2021-01-22 07:49:30'),(833,'The Smart School - Girls Patti','admin',9,138,NULL,NULL,NULL,'1994,1993','1993','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',150.00,120.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The Smart School - Girls Patti','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'the-smart-school---girls-patti-1xkav',0.00,NULL,0,NULL,NULL,'2021-01-21 10:16:51','2021-01-22 07:48:47'),(834,'Navy Blue Patti For Girls','admin',9,195,NULL,NULL,NULL,'1992,1991','1992','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',120.00,100.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Navy Blue Patti For Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'navy-blue-patti-for-girls-sm1x4',0.00,NULL,0,NULL,NULL,'2021-01-21 10:19:29','2021-01-22 07:47:22'),(835,'Divisional Public school - Girls Patti','admin',9,56,NULL,NULL,NULL,'1992,1991','1992','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',120.00,100.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Navy Blue Patti For Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'navy-blue-patti-for-girls-snjfd',0.00,NULL,0,NULL,NULL,'2021-01-21 10:19:39','2021-01-22 07:45:56'),(836,'White Rose School System - Girls Patti','admin',9,155,NULL,NULL,NULL,'1992,1991','1992','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',120.00,100.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Navy Blue Patti For Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'navy-blue-patti-for-girls-0ajng',0.00,NULL,0,NULL,NULL,'2021-01-21 10:20:46','2021-01-22 07:45:20'),(837,'Baby Pink Patti For Girls','admin',9,195,NULL,NULL,NULL,'1989,1990','1990','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',120.00,100.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Baby Pink Patti For Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'baby-pink-patti-for-girls-xsyib',0.00,NULL,0,NULL,NULL,'2021-01-21 10:24:22','2021-01-22 07:43:59'),(838,'White Rose School System - Girls Patti (9+10 Class)','admin',9,155,NULL,NULL,NULL,'1989,1990','1990','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',120.00,100.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Baby Pink Patti For Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'baby-pink-patti-for-girls-d01va',0.00,NULL,0,NULL,NULL,'2021-01-21 10:25:11','2021-01-22 07:34:52'),(839,'Sunny Ideal School - Girls Patti','admin',9,116,NULL,NULL,NULL,'1988,1987','1987','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',120.00,100.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Sunny Ideal School - Girls Patti','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'sunny-ideal-school---girls-patti-3qhlf',0.00,NULL,0,NULL,NULL,'2021-01-21 10:28:01','2021-01-22 07:33:14'),(840,'Plain White Patti For Girls','admin',9,195,NULL,NULL,NULL,'1986,1985','1986','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',120.00,100.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Plain White Patti For Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'plain-white-patti-for-girls-41bkt',0.00,NULL,0,NULL,NULL,'2021-01-21 10:29:43','2021-01-22 07:32:28'),(841,'The Educators School - Girls Patti','admin',9,91,NULL,NULL,NULL,'1986,1985','1986','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',120.00,100.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Plain White Patti For Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'plain-white-patti-for-girls-k2mpl',0.00,NULL,0,NULL,NULL,'2021-01-21 10:29:48','2021-01-22 07:31:31'),(842,'Punjab Worker Welfare School - Girls Patti','admin',9,101,NULL,NULL,NULL,'1986,1985','1986','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',120.00,100.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Plain White Patti For Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'plain-white-patti-for-girls-pizzq',0.00,NULL,0,NULL,NULL,'2021-01-21 10:32:16','2021-01-22 07:31:03'),(843,'Allied School - Girls Patti','admin',9,76,NULL,NULL,NULL,'1984,1983','1983','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',150.00,120.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Allied School - Girls Patti','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'allied-school---girls-patti-ae7ud',0.00,NULL,0,NULL,NULL,'2021-01-21 10:35:18','2021-01-22 07:30:13');
INSERT INTO `products` (`id`, `name`, `added_by`, `user_id`, `category_id`, `subcategory_id`, `subsubcategory_id`, `brand_id`, `photos`, `thumbnail_img`, `video_provider`, `video_link`, `tags`, `description`, `unit_price`, `purchase_price`, `variant_product`, `attributes`, `choice_options`, `colors`, `variations`, `todays_deal`, `published`, `featured`, `current_stock`, `unit`, `min_qty`, `discount`, `discount_type`, `tax`, `tax_type`, `shipping_type`, `shipping_cost`, `num_of_sale`, `meta_title`, `meta_description`, `meta_img`, `pdf`, `slug`, `rating`, `barcode`, `digital`, `file_name`, `file_path`, `created_at`, `updated_at`) VALUES (844,'Mehroon Patti For Girls','admin',9,195,NULL,NULL,NULL,'1982,1981','1982','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',120.00,100.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Mehroon Patti For Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'mehroon-patti-for-girls-odzbz',0.00,NULL,0,NULL,NULL,'2021-01-21 10:37:55','2021-01-22 07:28:52'),(845,'Divisional Model College - Girls Patti','admin',9,111,NULL,NULL,NULL,'1982,1981','1982','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',120.00,100.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Mehroon Patti For Girls','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'mehroon-patti-for-girls-dya90',0.00,NULL,0,NULL,NULL,'2021-01-21 10:38:01','2021-01-22 07:28:27'),(846,'Sunny Ideal School - Tie','admin',9,116,NULL,NULL,NULL,'1941,1940','1941','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoNormal\">\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',100.00,80.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Sunny Ideal School - Tie','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing to their customer, loose fit\r\n&amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna providing very good quality and comfort\r\nfeel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->&nbsp;Rachna\r\nproviding best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining,\r\ncheck, best quality in wollen fabric school coat, jersey, sweaters.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'sunny-ideal-school---tie-wmrn4',0.00,NULL,0,NULL,NULL,'2021-01-21 11:04:00','2021-01-21 11:49:54'),(847,'Grey & Mehroon Lining Uniform Tie','admin',9,196,NULL,NULL,NULL,'1943,1942','1943','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',100.00,80.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Grey & Mehroon Lining Uniform Tie','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'grey--mehroon-lining-uniform-tie-ndfzs',0.00,NULL,0,NULL,NULL,'2021-01-21 11:08:01','2021-01-21 11:49:58'),(848,'Divisional Model College - Tie','admin',9,111,NULL,NULL,NULL,'1943,1942','1943','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',100.00,80.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Grey & Mehroon Lining Uniform Tie','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'grey--mehroon-lining-uniform-tie-kgyz6',0.00,NULL,0,NULL,NULL,'2021-01-21 11:08:06','2021-01-21 11:50:04'),(849,'Grey & Dark Green Uniform Tie','admin',9,196,NULL,NULL,NULL,'1945,1944','1944','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',100.00,80.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Grey & Dark Green Uniform Tie','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'grey--dark-green-uniform-tie-2eft9',0.00,NULL,0,NULL,NULL,'2021-01-21 11:11:53','2021-01-21 11:50:10'),(850,'The Smart School - Tie','admin',9,138,NULL,NULL,NULL,'1945,1944','1944','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',100.00,80.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Grey & Dark Green Uniform Tie','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'grey--dark-green-uniform-tie-zyts8',0.00,NULL,0,NULL,NULL,'2021-01-21 11:11:58','2021-01-21 11:50:19'),(851,'Navy Blue & Green & Yellow Lining uniform Tie','admin',9,196,NULL,NULL,NULL,'1947,1946','1946','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',100.00,80.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Navy Blue & Green & Yellow Lining uniform Tie','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'navy-blue--green--yellow-lining-uniform-tie-qeydc',0.00,NULL,0,NULL,NULL,'2021-01-21 11:15:24','2021-01-21 11:50:38'),(852,'The Educators School - Tie','admin',9,91,NULL,NULL,NULL,'1947,1946','1946','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',100.00,80.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Navy Blue & Green & Yellow Lining uniform Tie','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'navy-blue--green--yellow-lining-uniform-tie-fg5ny',0.00,NULL,0,NULL,NULL,'2021-01-21 11:15:28','2021-01-21 11:50:45'),(853,'Dar - Arqam School - Tie','admin',9,81,NULL,NULL,NULL,'1949,1948','1949','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',100.00,80.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Dar - Arqam School - Tie','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'dar---arqam-school---tie-2atvm',0.00,NULL,0,NULL,NULL,'2021-01-21 11:18:43','2021-01-21 11:51:03'),(854,'Aspire Group Of Colleges - Tie','admin',9,132,NULL,NULL,NULL,'1951,1950','1950','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',120.00,100.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"Standard size\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Aspire Group Of Colleges - Tie','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'aspire-group-of-colleges---tie-vf1mo',0.00,NULL,0,NULL,NULL,'2021-01-21 11:21:15','2021-01-21 11:51:12'),(855,'Superior college - Tie','admin',9,71,NULL,NULL,NULL,'1953,1952','1952','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',170.00,100.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"Standard Size\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Superior college - Tie','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'superior-college---tie-yhuhe',0.00,NULL,0,NULL,NULL,'2021-01-21 11:23:50','2021-01-21 11:51:23'),(856,'Punjab group of colleges - Tie','admin',9,61,NULL,NULL,NULL,'1954,1955','1954','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',170.00,100.00,1,'[\"2\"]','[{\"attribute_id\":\"2\",\"values\":[\"Standard Size\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Punjab group of colleges - Tie','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'punjab-group-of-colleges---tie-idzko',0.00,NULL,0,NULL,NULL,'2021-01-21 11:25:41','2021-01-21 11:51:34'),(857,'Divisional Public school - Tie','admin',9,56,NULL,NULL,NULL,'1956','1956','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',100.00,80.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Divisional Public school - Tie','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'divisional-public-school---tie-vujav',0.00,NULL,0,NULL,NULL,'2021-01-21 11:27:46','2021-01-21 11:52:03'),(858,'Blue & Gray Lining Uniform Tie','admin',9,196,NULL,NULL,NULL,'1957,1958','1958','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',100.00,80.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Blue & Gray Lining Uniform Tie','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'blue--gray-lining-uniform-tie-rucb6',0.00,NULL,0,NULL,NULL,'2021-01-21 11:30:23','2021-01-21 11:52:09'),(859,'White Rose School System - Tie','admin',9,155,NULL,NULL,NULL,'1957,1958','1958','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',100.00,80.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Blue & Gray Lining Uniform Tie','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'blue--gray-lining-uniform-tie-n2dor',0.00,NULL,0,NULL,NULL,'2021-01-21 11:30:34','2021-01-21 11:52:19'),(860,'The Arqam School - Tie','admin',9,86,NULL,NULL,NULL,'1959,1960','1960','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',100.00,80.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The Arqam School - Tie','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'the-arqam-school---tie-k1oxd',0.00,NULL,0,NULL,NULL,'2021-01-21 11:32:55','2021-01-21 11:52:28'),(861,'Allied School - Tie','admin',9,76,NULL,NULL,NULL,'1961,1962','1961','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',100.00,80.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Allied School - Tie','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'allied-school---tie-asmkr',0.00,NULL,0,NULL,NULL,'2021-01-21 11:36:02','2021-01-21 11:52:33'),(862,'Navy Blue & Yellow Sky Blue Lining Uniform Tie','admin',9,196,NULL,NULL,NULL,'1963,1964','1964','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',100.00,80.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Navy Blue & Yellow Sky Blue Lining Uniform Tie','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'navy-blue--yellow-sky-blue-lining-uniform-tie-9dnv3',0.00,NULL,0,NULL,NULL,'2021-01-21 11:38:54','2021-01-21 11:52:39'),(863,'Punjab Worker Welfare School - Tie','admin',9,101,NULL,NULL,NULL,'1967,1966,1965','1967','youtube',NULL,'Velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',100.00,80.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Punjab Worker Welfare School - Tie','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'punjab-worker-welfare-school---tie-dycjn',0.00,NULL,0,NULL,NULL,'2021-01-21 11:42:02','2021-01-21 11:52:51'),(864,'The ACE School System - Tie','admin',9,126,NULL,NULL,NULL,'1969,1968','1968','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',100.00,80.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The ACE School System - Tie','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'the-ace-school-system---tie-dfn3m',0.00,NULL,0,NULL,NULL,'2021-01-21 11:44:02','2021-01-21 11:52:55'),(865,'Kips College - Tie','admin',9,66,NULL,NULL,NULL,'1971,1970','1971','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',120.00,80.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"Standard Size\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Kips College - Tie','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'kips-college---tie-ouyip',0.00,NULL,0,NULL,NULL,'2021-01-21 11:45:37','2021-01-21 11:53:02'),(866,'Navy Blue & Royal Blue Lining Tie','admin',9,196,NULL,NULL,NULL,'1972,1973','1973','youtube',NULL,'velburry','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',100.00,80.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Navy Blue & Royal Blue Lining Tie','<p class=\"MsoNormal\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Best Quality &nbsp;Uniform Tie</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"margin-left:37.5pt;mso-add-space:\r\nauto;text-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Rachna is Already Know any well reputed\r\nmanufacturing company in Pakistan.</p><p>\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n</p><p class=\"MsoListParagraphCxSpLast\" style=\"margin-left:37.5pt;mso-add-space:auto;\r\ntext-indent:-.25in;mso-list:l0 level1 lfo1\"><!--[if !supportLists]--><span style=\"font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:\r\nSymbol\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\r\n</span></span><!--[endif]-->Manufacturing Company: Since 1992.</p>',NULL,NULL,'navy-blue--royal-blue-lining-tie-ytvgs',0.00,NULL,0,NULL,NULL,'2021-01-21 11:47:22','2021-01-21 11:53:07'),(867,'The Arqam School - Elastic Winter Pent','admin',9,82,NULL,NULL,NULL,'1977,1976,1975,1974,1978','1974','youtube',NULL,'velburry','<p class=\"MsoNormal\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna is Already Know any well reputed manufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing to their customer, loose fit &amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing very good quality and comfort feel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>&nbsp;Rachna providing best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check, best quality in wollen fabric school coat, jersey, sweaters.</p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><p class=\"MsoListParagraphCxSpLast\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'The Arqam School - Elastic Winter Pent','<p class=\"MsoNormal\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna is Already Know any well reputed manufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing to their customer, loose fit &amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing very good quality and comfort feel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>&nbsp;Rachna providing best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check, best quality in wollen fabric school coat, jersey, sweaters.</p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><p class=\"MsoListParagraphCxSpLast\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Manufacturing Company: Since 1992.</p>',NULL,NULL,'the-arqam-school---elastic-winter-pent-szmin',0.00,NULL,0,NULL,NULL,'2021-01-21 12:08:24','2021-01-23 03:59:22'),(868,'Green Dot Public School - Elastic Pent','admin',9,158,NULL,NULL,NULL,'2044,2043,2042,2041','2041','youtube',NULL,'velburry','<p class=\"MsoNormal\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna is Already Know any well reputed manufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing to their customer, loose fit &amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing very good quality and comfort feel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>&nbsp;Rachna providing best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check, best quality in wollen fabric school coat, jersey, sweaters.</p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><p class=\"MsoListParagraphCxSpLast\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Green Dot Public School - Elastic Pent','<p class=\"MsoNormal\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna is Already Know any well reputed manufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing to their customer, loose fit &amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing very good quality and comfort feel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>&nbsp;Rachna providing best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check, best quality in wollen fabric school coat, jersey, sweaters.</p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><p class=\"MsoListParagraphCxSpLast\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Manufacturing Company: Since 1992.</p>',NULL,NULL,'green-dot-public-school---elastic-pent-sezcc',0.00,NULL,0,NULL,NULL,'2021-01-23 03:52:22','2021-01-23 03:59:12'),(869,'Green Dot Public School - Waist Pent','admin',9,158,NULL,NULL,NULL,'2048,2047,2046,2045','2045','youtube',NULL,'velburry','<p class=\"MsoNormal\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna is Already Know any well reputed manufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing to their customer, loose fit &amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing very good quality and comfort feel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>&nbsp;Rachna providing best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check, best quality in wollen fabric school coat, jersey, sweaters.</p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><p class=\"MsoListParagraphCxSpLast\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"40*28\",\"40*30\",\"40*32\",\"40*34\",\"40*36\",\"40*38\",\"42*28\",\"42*30\",\"42*32\",\"42*34\",\"42*36\",\"42*38\",\"42*40\",\"42*42\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Green Dot Public School - Waist Pent','<p class=\"MsoNormal\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna is Already Know any well reputed manufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing to their customer, loose fit &amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing very good quality and comfort feel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>&nbsp;Rachna providing best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check, best quality in wollen fabric school coat, jersey, sweaters.</p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><p class=\"MsoListParagraphCxSpLast\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Manufacturing Company: Since 1992.</p>',NULL,NULL,'Green-Dot-Public-School---Waist-Pent-kbDxp',0.00,NULL,0,NULL,NULL,'2021-01-23 03:58:50','2021-01-23 03:58:50'),(870,'Army Public School And College System - Elastic Pent','admin',9,148,NULL,NULL,NULL,'2052,2051,2050,2049','2049','youtube',NULL,'velburry','<p class=\"MsoNormal\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna is Already Know any well reputed manufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing to their customer, loose fit &amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing very good quality and comfort feel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>&nbsp;Rachna providing best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check, best quality in wollen fabric school coat, jersey, sweaters.</p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><p class=\"MsoListParagraphCxSpLast\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"22\",\"24\",\"26\",\"28\",\"30\",\"32\",\"34\",\"36\",\"38\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Green Dot Public School - Elastic Pent','<p class=\"MsoNormal\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna is Already Know any well reputed manufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing to their customer, loose fit &amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing very good quality and comfort feel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>&nbsp;Rachna providing best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check, best quality in wollen fabric school coat, jersey, sweaters.</p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><p class=\"MsoListParagraphCxSpLast\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Manufacturing Company: Since 1992.</p>',NULL,NULL,'green-dot-public-school---elastic-pent-jt4hf',0.00,NULL,0,NULL,NULL,'2021-01-23 04:09:36','2021-01-23 04:13:44'),(871,'Army Public School And College System - Waist Pent','admin',9,148,NULL,NULL,NULL,'2056,2055,2054,2053','2053','youtube',NULL,'velburry','<p class=\"MsoNormal\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna is Already Know any well reputed manufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing to their customer, loose fit &amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing very good quality and comfort feel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>&nbsp;Rachna providing best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check, best quality in wollen fabric school coat, jersey, sweaters.</p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><p class=\"MsoListParagraphCxSpLast\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"40*28\",\"40*30\",\"40*32\",\"40*34\",\"40*36\",\"40*38\",\"42*28\",\"42*30\",\"42*32\",\"42*34\",\"42*36\",\"42*38\",\"42*40\",\"42*42\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'Green Dot Public School - Waist Pent','<p class=\"MsoNormal\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna is Already Know any well reputed manufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing to their customer, loose fit &amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing very good quality and comfort feel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>&nbsp;Rachna providing best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check, best quality in wollen fabric school coat, jersey, sweaters.</p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><p class=\"MsoListParagraphCxSpLast\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Manufacturing Company: Since 1992.</p>',NULL,NULL,'green-dot-public-school---waist-pent-jlyi2',0.00,NULL,0,NULL,NULL,'2021-01-23 04:14:04','2021-01-23 04:17:41'),(872,'White Rose School System - Boys Shirt','admin',9,152,NULL,NULL,NULL,'2063,2062,2061,2060','2060','youtube',NULL,'velburry','<p class=\"MsoNormal\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna is Already Know any well reputed manufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing to their customer, loose fit &amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing very good quality and comfort feel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>&nbsp;Rachna providing best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check, best quality in wollen fabric school coat, jersey, sweaters.</p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><p class=\"MsoListParagraphCxSpLast\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Manufacturing Company: Since 1992.</p>',500.00,400.00,1,'[\"1\"]','[{\"attribute_id\":\"1\",\"values\":[\"18\",\"20\",\"22\",\"24\",\"26\",\"28\",\"30\",\"S\",\"M\",\"L\"]}]','[]',NULL,0,1,0,0,'Each',1,0.00,'amount',0.00,'amount','flat_rate',0.00,0,'White Rose School System - Boys Shirt','<p class=\"MsoNormal\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\">Product Description:</p><p class=\"MsoListParagraphCxSpFirst\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Brand : Rachna Uniform</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna is Already Know any well reputed manufacturing company in Pakistan.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing to their customer, loose fit &amp; slip fit uniform according to customer’s choice.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Rachna providing very good quality and comfort feel fabric to their nation children.</p><p class=\"MsoListParagraphCxSpMiddle\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>&nbsp;Rachna providing best quality KT fabric, Best quality Pent fabric &amp; comfort feel lining, check, best quality in wollen fabric school coat, jersey, sweaters.</p><p style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif;\"></p><p class=\"MsoListParagraphCxSpLast\" style=\"color: rgb(27, 27, 40); font-family: &quot;Open Sans&quot;, sans-serif; margin-left: 37.5pt; text-indent: -0.25in;\"><span style=\"font-family: Symbol;\">·<span style=\"font-variant-numeric: normal; font-variant-east-asian: normal; font-stretch: normal; font-size: 7pt; line-height: normal; font-family: &quot;Times New Roman&quot;;\">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span>Manufacturing Company: Since 1992.</p>',NULL,NULL,'White-Rose-School-System---Boys-Shirt-STlCL',0.00,NULL,0,NULL,NULL,'2021-01-23 05:34:25','2021-01-23 05:34:25');
/*!40000 ALTER TABLE `products` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `reviews`
--

DROP TABLE IF EXISTS `reviews`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `reviews` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `product_id` int(11) NOT NULL,
  `user_id` int(11) NOT NULL,
  `rating` int(11) NOT NULL DEFAULT '0',
  `comment` mediumtext COLLATE utf8_unicode_ci NOT NULL,
  `status` int(1) NOT NULL DEFAULT '1',
  `viewed` int(1) NOT NULL DEFAULT '0',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `reviews`
--

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

--
-- Table structure for table `role_translations`
--

DROP TABLE IF EXISTS `role_translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `role_translations` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `role_id` bigint(20) NOT NULL,
  `name` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `lang` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `role_translations`
--

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

--
-- Table structure for table `roles`
--

DROP TABLE IF EXISTS `roles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `roles` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(30) COLLATE utf8_unicode_ci NOT NULL,
  `permissions` mediumtext COLLATE utf8_unicode_ci NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `roles`
--

LOCK TABLES `roles` WRITE;
/*!40000 ALTER TABLE `roles` DISABLE KEYS */;
INSERT INTO `roles` (`id`, `name`, `permissions`, `created_at`, `updated_at`) VALUES (1,'Manager','[\"1\",\"2\",\"4\"]','2018-10-10 04:39:47','2018-10-10 04:51:37'),(2,'Accountant','[\"2\",\"3\"]','2018-10-10 04:52:09','2018-10-10 04:52:09');
/*!40000 ALTER TABLE `roles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `searches`
--

DROP TABLE IF EXISTS `searches`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `searches` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `query` varchar(1000) COLLATE utf8_unicode_ci NOT NULL,
  `count` int(11) NOT NULL DEFAULT '1',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `searches`
--

LOCK TABLES `searches` WRITE;
/*!40000 ALTER TABLE `searches` DISABLE KEYS */;
INSERT INTO `searches` (`id`, `query`, `count`, `created_at`, `updated_at`) VALUES (2,'dcs',1,'2020-03-08 00:29:09','2020-03-08 00:29:09'),(3,'das',3,'2020-03-08 00:29:15','2020-03-08 00:29:50'),(4,'Uniform',2,'2021-01-07 06:29:04','2021-01-16 01:43:09'),(5,'Black Uniform Jersey For Girls',1,'2021-01-21 03:25:06','2021-01-21 03:25:06'),(6,'gatsby gel',1,'2021-01-21 10:56:05','2021-01-21 10:56:05');
/*!40000 ALTER TABLE `searches` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `seller_withdraw_requests`
--

DROP TABLE IF EXISTS `seller_withdraw_requests`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `seller_withdraw_requests` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) DEFAULT NULL,
  `amount` double(20,2) DEFAULT NULL,
  `message` longtext,
  `status` int(1) DEFAULT NULL,
  `viewed` int(1) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `seller_withdraw_requests`
--

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

--
-- Table structure for table `sellers`
--

DROP TABLE IF EXISTS `sellers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sellers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `verification_status` int(1) NOT NULL DEFAULT '0',
  `verification_info` longtext COLLATE utf8_unicode_ci,
  `cash_on_delivery_status` int(1) NOT NULL DEFAULT '0',
  `admin_to_pay` double(20,2) NOT NULL DEFAULT '0.00',
  `bank_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `bank_acc_name` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
  `bank_acc_no` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
  `bank_routing_no` int(50) DEFAULT NULL,
  `bank_payment_status` int(11) NOT NULL DEFAULT '0',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sellers`
--

LOCK TABLES `sellers` WRITE;
/*!40000 ALTER TABLE `sellers` DISABLE KEYS */;
INSERT INTO `sellers` (`id`, `user_id`, `verification_status`, `verification_info`, `cash_on_delivery_status`, `admin_to_pay`, `bank_name`, `bank_acc_name`, `bank_acc_no`, `bank_routing_no`, `bank_payment_status`, `created_at`, `updated_at`) VALUES (1,3,1,'[{\"type\":\"text\",\"label\":\"Name\",\"value\":\"Mr. Seller\"},{\"type\":\"select\",\"label\":\"Marital Status\",\"value\":\"Married\"},{\"type\":\"multi_select\",\"label\":\"Company\",\"value\":\"[\\\"Company\\\"]\"},{\"type\":\"select\",\"label\":\"Gender\",\"value\":\"Male\"},{\"type\":\"file\",\"label\":\"Image\",\"value\":\"uploads\\/verification_form\\/CRWqFifcbKqibNzllBhEyUSkV6m1viknGXMEhtiW.png\"}]',1,78.40,NULL,NULL,NULL,NULL,0,'2018-10-07 04:42:57','2020-01-26 04:21:11');
/*!40000 ALTER TABLE `sellers` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `seo_settings`
--

DROP TABLE IF EXISTS `seo_settings`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `seo_settings` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `keyword` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `author` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `revisit` int(11) NOT NULL,
  `sitemap_link` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `description` longtext COLLATE utf8_unicode_ci NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `seo_settings`
--

LOCK TABLES `seo_settings` WRITE;
/*!40000 ALTER TABLE `seo_settings` DISABLE KEYS */;
INSERT INTO `seo_settings` (`id`, `keyword`, `author`, `revisit`, `sitemap_link`, `description`, `created_at`, `updated_at`) VALUES (1,'bootstrap,responsive,template,developer','Active IT Zone',11,'https://www.activeitzone.com','Active E-commerce CMS Multi vendor system is such a platform to build a border less marketplace both for physical and digital goods.','2019-08-08 08:56:11','2019-08-08 02:56:11');
/*!40000 ALTER TABLE `seo_settings` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `shops`
--

DROP TABLE IF EXISTS `shops`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `shops` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `name` varchar(200) COLLATE utf8_unicode_ci DEFAULT NULL,
  `logo` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `sliders` longtext COLLATE utf8_unicode_ci,
  `address` varchar(500) COLLATE utf8_unicode_ci DEFAULT NULL,
  `facebook` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `google` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `twitter` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `youtube` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `slug` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `meta_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `meta_description` text COLLATE utf8_unicode_ci,
  `pick_up_point_id` text COLLATE utf8_unicode_ci,
  `shipping_cost` double(20,2) NOT NULL DEFAULT '0.00',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `shops`
--

LOCK TABLES `shops` WRITE;
/*!40000 ALTER TABLE `shops` DISABLE KEYS */;
INSERT INTO `shops` (`id`, `user_id`, `name`, `logo`, `sliders`, `address`, `facebook`, `google`, `twitter`, `youtube`, `slug`, `meta_title`, `meta_description`, `pick_up_point_id`, `shipping_cost`, `created_at`, `updated_at`) VALUES (1,3,'Demo Seller Shop',NULL,NULL,'House : Demo, Road : Demo, Section : Demo','www.facebook.com','www.google.com','www.twitter.com','www.youtube.com','Demo-Seller-Shop-1','Demo Seller Shop Title','Demo description',NULL,0.00,'2018-11-27 10:23:13','2019-08-06 06:43:16');
/*!40000 ALTER TABLE `shops` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `sliders`
--

DROP TABLE IF EXISTS `sliders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `sliders` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `photo` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `published` int(1) NOT NULL DEFAULT '1',
  `link` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `sliders`
--

LOCK TABLES `sliders` WRITE;
/*!40000 ALTER TABLE `sliders` DISABLE KEYS */;
INSERT INTO `sliders` (`id`, `photo`, `published`, `link`, `created_at`, `updated_at`) VALUES (7,'uploads/sliders/slider-image.jpg',1,NULL,'2019-03-12 05:58:05','2019-03-12 05:58:05'),(8,'uploads/sliders/slider-image.jpg',1,NULL,'2019-03-12 05:58:12','2019-03-12 05:58:12');
/*!40000 ALTER TABLE `sliders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `staff`
--

DROP TABLE IF EXISTS `staff`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `staff` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `role_id` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `staff`
--

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

--
-- Table structure for table `subscribers`
--

DROP TABLE IF EXISTS `subscribers`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `subscribers` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `email` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`),
  UNIQUE KEY `email` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `subscribers`
--

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

--
-- Table structure for table `ticket_replies`
--

DROP TABLE IF EXISTS `ticket_replies`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ticket_replies` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `ticket_id` int(11) NOT NULL,
  `user_id` int(11) NOT NULL,
  `reply` longtext COLLATE utf8_unicode_ci NOT NULL,
  `files` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ticket_replies`
--

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

--
-- Table structure for table `tickets`
--

DROP TABLE IF EXISTS `tickets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `tickets` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `code` int(6) NOT NULL,
  `user_id` int(11) NOT NULL,
  `subject` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `details` longtext COLLATE utf8_unicode_ci,
  `files` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin,
  `status` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'pending',
  `viewed` int(1) NOT NULL DEFAULT '0',
  `client_viewed` int(1) NOT NULL DEFAULT '0',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `tickets`
--

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

--
-- Table structure for table `translations`
--

DROP TABLE IF EXISTS `translations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `translations` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `lang` varchar(10) COLLATE utf8_unicode_ci DEFAULT NULL,
  `lang_key` text COLLATE utf8_unicode_ci,
  `lang_value` text COLLATE utf8_unicode_ci,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1566 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `translations`
--

LOCK TABLES `translations` WRITE;
/*!40000 ALTER TABLE `translations` DISABLE KEYS */;
INSERT INTO `translations` (`id`, `lang`, `lang_key`, `lang_value`, `created_at`, `updated_at`) VALUES (3,'en','All Category','All Category','2020-11-02 07:40:38','2020-11-02 07:40:38'),(4,'en','All','All','2020-11-02 07:40:38','2020-11-02 07:40:38'),(5,'en','Flash Sale','Flash Sale','2020-11-02 07:40:40','2020-11-02 07:40:40'),(6,'en','View More','View More','2020-11-02 07:40:40','2020-11-02 07:40:40'),(7,'en','Add to wishlist','Add to wishlist','2020-11-02 07:40:40','2020-11-02 07:40:40'),(8,'en','Add to compare','Add to compare','2020-11-02 07:40:40','2020-11-02 07:40:40'),(9,'en','Add to cart','Add to cart','2020-11-02 07:40:40','2020-11-02 07:40:40'),(10,'en','Club Point','Club Point','2020-11-02 07:40:40','2020-11-02 07:40:40'),(11,'en','Classified Ads','Classified Ads','2020-11-02 07:40:40','2020-11-02 07:40:40'),(13,'en','Used','Used','2020-11-02 07:40:40','2020-11-02 07:40:40'),(14,'en','Top 10 Categories','Top 10 Categories','2020-11-02 07:40:40','2020-11-02 07:40:40'),(15,'en','View All Categories','View All Categories','2020-11-02 07:40:40','2020-11-02 07:40:40'),(16,'en','Top 10 Brands','Top 10 Brands','2020-11-02 07:40:40','2020-11-02 07:40:40'),(17,'en','View All Brands','View All Brands','2020-11-02 07:40:40','2020-11-02 07:40:40'),(43,'en','Terms & conditions','Terms & conditions','2020-11-02 07:40:41','2020-11-02 07:40:41'),(51,'en','Best Selling','Best Selling','2020-11-02 07:40:42','2020-11-02 07:40:42'),(53,'en','Top 20','Top 20','2020-11-02 07:40:42','2020-11-02 07:40:42'),(55,'en','Featured Products','Featured Products','2020-11-02 07:40:42','2020-11-02 07:40:42'),(56,'en','Best Sellers','Best Sellers','2020-11-02 07:40:43','2020-11-02 07:40:43'),(57,'en','Visit Store','Visit Store','2020-11-02 07:40:43','2020-11-02 07:40:43'),(58,'en','Popular Suggestions','Popular Suggestions','2020-11-02 07:46:59','2020-11-02 07:46:59'),(59,'en','Category Suggestions','Category Suggestions','2020-11-02 07:46:59','2020-11-02 07:46:59'),(62,'en','Automobile & Motorcycle','Automobile & Motorcycle','2020-11-02 07:47:01','2020-11-02 07:47:01'),(63,'en','Price range','Price range','2020-11-02 07:47:01','2020-11-02 07:47:01'),(64,'en','Filter by color','Filter by color','2020-11-02 07:47:02','2020-11-02 07:47:02'),(65,'en','Home','Home','2020-11-02 07:47:02','2020-11-02 07:47:02'),(67,'en','Newest','Newest','2020-11-02 07:47:02','2020-11-02 07:47:02'),(68,'en','Oldest','Oldest','2020-11-02 07:47:02','2020-11-02 07:47:02'),(69,'en','Price low to high','Price low to high','2020-11-02 07:47:02','2020-11-02 07:47:02'),(70,'en','Price high to low','Price high to low','2020-11-02 07:47:02','2020-11-02 07:47:02'),(71,'en','Brands','Brands','2020-11-02 07:47:02','2020-11-02 07:47:02'),(72,'en','All Brands','All Brands','2020-11-02 07:47:02','2020-11-02 07:47:02'),(74,'en','All Sellers','All Sellers','2020-11-02 07:47:02','2020-11-02 07:47:02'),(78,'en','Inhouse product','Inhouse product','2020-11-02 08:18:03','2020-11-02 08:18:03'),(79,'en','Message Seller','Message Seller','2020-11-02 08:18:03','2020-11-02 08:18:03'),(80,'en','Price','Price','2020-11-02 08:18:03','2020-11-02 08:18:03'),(81,'en','Discount Price','Discount Price','2020-11-02 08:18:03','2020-11-02 08:18:03'),(82,'en','Color','Color','2020-11-02 08:18:03','2020-11-02 08:18:03'),(83,'en','Quantity','Quantity','2020-11-02 08:18:03','2020-11-02 08:18:03'),(84,'en','available','available','2020-11-02 08:18:03','2020-11-02 08:18:03'),(85,'en','Total Price','Total Price','2020-11-02 08:18:03','2020-11-02 08:18:03'),(86,'en','Out of Stock','Out of Stock','2020-11-02 08:18:03','2020-11-02 08:18:03'),(87,'en','Refund','Refund','2020-11-02 08:18:03','2020-11-02 08:18:03'),(88,'en','Share','Share','2020-11-02 08:18:03','2020-11-02 08:18:03'),(89,'en','Sold By','Sold By','2020-11-02 08:18:03','2020-11-02 08:18:03'),(90,'en','customer reviews','customer reviews','2020-11-02 08:18:03','2020-11-02 08:18:03'),(91,'en','Top Selling Products','Top Selling Products','2020-11-02 08:18:03','2020-11-02 08:18:03'),(92,'en','Description','Description','2020-11-02 08:18:03','2020-11-02 08:18:03'),(93,'en','Video','Video','2020-11-02 08:18:03','2020-11-02 08:18:03'),(94,'en','Reviews','Reviews','2020-11-02 08:18:03','2020-11-02 08:18:03'),(95,'en','Download','Download','2020-11-02 08:18:03','2020-11-02 08:18:03'),(96,'en','There have been no reviews for this product yet.','There have been no reviews for this product yet.','2020-11-02 08:18:03','2020-11-02 08:18:03'),(97,'en','Related products','Related products','2020-11-02 08:18:03','2020-11-02 08:18:03'),(98,'en','Any query about this product','Any query about this product','2020-11-02 08:18:03','2020-11-02 08:18:03'),(99,'en','Product Name','Product Name','2020-11-02 08:18:03','2020-11-02 08:18:03'),(100,'en','Your Question','Your Question','2020-11-02 08:18:03','2020-11-02 08:18:03'),(101,'en','Send','Send','2020-11-02 08:18:03','2020-11-02 08:18:03'),(103,'en','Use country code before number','Use country code before number','2020-11-02 08:18:03','2020-11-02 08:18:03'),(105,'en','Remember Me','Remember Me','2020-11-02 08:18:03','2020-11-02 08:18:03'),(107,'en','Dont have an account?','Dont have an account?','2020-11-02 08:18:04','2020-11-02 08:18:04'),(108,'en','Register Now','Register Now','2020-11-02 08:18:04','2020-11-02 08:18:04'),(109,'en','Or Login With','Or Login With','2020-11-02 08:18:04','2020-11-02 08:18:04'),(110,'en','oops..','oops..','2020-11-02 10:29:04','2020-11-02 10:29:04'),(111,'en','This item is out of stock!','This item is out of stock!','2020-11-02 10:29:04','2020-11-02 10:29:04'),(112,'en','Back to shopping','Back to shopping','2020-11-02 10:29:04','2020-11-02 10:29:04'),(113,'en','Login to your account.','Login to your account.','2020-11-02 11:27:41','2020-11-02 11:27:41'),(115,'en','Purchase History','Purchase History','2020-11-02 11:27:53','2020-11-02 11:27:53'),(116,'en','New','New','2020-11-02 11:27:53','2020-11-02 11:27:53'),(117,'en','Downloads','Downloads','2020-11-02 11:27:53','2020-11-02 11:27:53'),(118,'en','Sent Refund Request','Sent Refund Request','2020-11-02 11:27:53','2020-11-02 11:27:53'),(119,'en','Product Bulk Upload','Product Bulk Upload','2020-11-02 11:27:53','2020-11-02 11:27:53'),(123,'en','Orders','Orders','2020-11-02 11:27:53','2020-11-02 11:27:53'),(124,'en','Recieved Refund Request','Recieved Refund Request','2020-11-02 11:27:53','2020-11-02 11:27:53'),(126,'en','Shop Setting','Shop Setting','2020-11-02 11:27:53','2020-11-02 11:27:53'),(127,'en','Payment History','Payment History','2020-11-02 11:27:53','2020-11-02 11:27:53'),(128,'en','Money Withdraw','Money Withdraw','2020-11-02 11:27:53','2020-11-02 11:27:53'),(129,'en','Conversations','Conversations','2020-11-02 11:27:53','2020-11-02 11:27:53'),(130,'en','My Wallet','My Wallet','2020-11-02 11:27:53','2020-11-02 11:27:53'),(131,'en','Earning Points','Earning Points','2020-11-02 11:27:53','2020-11-02 11:27:53'),(132,'en','Support Ticket','Support Ticket','2020-11-02 11:27:53','2020-11-02 11:27:53'),(133,'en','Manage Profile','Manage Profile','2020-11-02 11:27:53','2020-11-02 11:27:53'),(134,'en','Sold Amount','Sold Amount','2020-11-02 11:27:53','2020-11-02 11:27:53'),(135,'en','Your sold amount (current month)','Your sold amount (current month)','2020-11-02 11:27:53','2020-11-02 11:27:53'),(136,'en','Total Sold','Total Sold','2020-11-02 11:27:54','2020-11-02 11:27:54'),(137,'en','Last Month Sold','Last Month Sold','2020-11-02 11:27:54','2020-11-02 11:27:54'),(138,'en','Total sale','Total sale','2020-11-02 11:27:54','2020-11-02 11:27:54'),(139,'en','Total earnings','Total earnings','2020-11-02 11:27:54','2020-11-02 11:27:54'),(140,'en','Successful orders','Successful orders','2020-11-02 11:27:54','2020-11-02 11:27:54'),(141,'en','Total orders','Total orders','2020-11-02 11:27:54','2020-11-02 11:27:54'),(142,'en','Pending orders','Pending orders','2020-11-02 11:27:54','2020-11-02 11:27:54'),(143,'en','Cancelled orders','Cancelled orders','2020-11-02 11:27:54','2020-11-02 11:27:54'),(145,'en','Product','Product','2020-11-02 11:27:55','2020-11-02 11:27:55'),(147,'en','Purchased Package','Purchased Package','2020-11-02 11:27:55','2020-11-02 11:27:55'),(148,'en','Package Not Found','Package Not Found','2020-11-02 11:27:55','2020-11-02 11:27:55'),(149,'en','Upgrade Package','Upgrade Package','2020-11-02 11:27:55','2020-11-02 11:27:55'),(150,'en','Shop','Shop','2020-11-02 11:27:55','2020-11-02 11:27:55'),(151,'en','Manage & organize your shop','Manage & organize your shop','2020-11-02 11:27:55','2020-11-02 11:27:55'),(152,'en','Go to setting','Go to setting','2020-11-02 11:27:55','2020-11-02 11:27:55'),(153,'en','Payment','Payment','2020-11-02 11:27:55','2020-11-02 11:27:55'),(154,'en','Configure your payment method','Configure your payment method','2020-11-02 11:27:55','2020-11-02 11:27:55'),(156,'en','My Panel','My Panel','2020-11-02 11:27:55','2020-11-02 11:27:55'),(158,'en','Item has been added to wishlist','Item has been added to wishlist','2020-11-02 11:27:55','2020-11-02 11:27:55'),(159,'en','My Points','My Points','2020-11-02 11:28:15','2020-11-02 11:28:15'),(160,'en',' Points',' Points','2020-11-02 11:28:15','2020-11-02 11:28:15'),(161,'en','Wallet Money','Wallet Money','2020-11-02 11:28:16','2020-11-02 11:28:16'),(162,'en','Exchange Rate','Exchange Rate','2020-11-02 11:28:16','2020-11-02 11:28:16'),(163,'en','Point Earning history','Point Earning history','2020-11-02 11:28:16','2020-11-02 11:28:16'),(164,'en','Date','Date','2020-11-02 11:28:16','2020-11-02 11:28:16'),(165,'en','Points','Points','2020-11-02 11:28:16','2020-11-02 11:28:16'),(166,'en','Converted','Converted','2020-11-02 11:28:16','2020-11-02 11:28:16'),(167,'en','Action','Action','2020-11-02 11:28:16','2020-11-02 11:28:16'),(168,'en','No history found.','No history found.','2020-11-02 11:28:16','2020-11-02 11:28:16'),(169,'en','Convert has been done successfully Check your Wallets','Convert has been done successfully Check your Wallets','2020-11-02 11:28:16','2020-11-02 11:28:16'),(170,'en','Something went wrong','Something went wrong','2020-11-02 11:28:16','2020-11-02 11:28:16'),(171,'en','Remaining Uploads','Remaining Uploads','2020-11-02 11:37:13','2020-11-02 11:37:13'),(172,'en','No Package Found','No Package Found','2020-11-02 11:37:13','2020-11-02 11:37:13'),(173,'en','Search product','Search product','2020-11-02 11:37:13','2020-11-02 11:37:13'),(174,'en','Name','Name','2020-11-02 11:37:13','2020-11-02 11:37:13'),(176,'en','Current Qty','Current Qty','2020-11-02 11:37:13','2020-11-02 11:37:13'),(177,'en','Base Price','Base Price','2020-11-02 11:37:13','2020-11-02 11:37:13'),(178,'en','Published','Published','2020-11-02 11:37:13','2020-11-02 11:37:13'),(179,'en','Featured','Featured','2020-11-02 11:37:13','2020-11-02 11:37:13'),(180,'en','Options','Options','2020-11-02 11:37:13','2020-11-02 11:37:13'),(181,'en','Edit','Edit','2020-11-02 11:37:13','2020-11-02 11:37:13'),(182,'en','Duplicate','Duplicate','2020-11-02 11:37:13','2020-11-02 11:37:13'),(184,'en','1. Download the skeleton file and fill it with data.','1. Download the skeleton file and fill it with data.','2020-11-02 11:37:20','2020-11-02 11:37:20'),(185,'en','2. You can download the example file to understand how the data must be filled.','2. You can download the example file to understand how the data must be filled.','2020-11-02 11:37:20','2020-11-02 11:37:20'),(186,'en','3. Once you have downloaded and filled the skeleton file, upload it in the form below and submit.','3. Once you have downloaded and filled the skeleton file, upload it in the form below and submit.','2020-11-02 11:37:20','2020-11-02 11:37:20'),(187,'en','4. After uploading products you need to edit them and set products images and choices.','4. After uploading products you need to edit them and set products images and choices.','2020-11-02 11:37:20','2020-11-02 11:37:20'),(188,'en','Download CSV','Download CSV','2020-11-02 11:37:20','2020-11-02 11:37:20'),(189,'en','1. Category,Sub category,Sub Sub category and Brand should be in numerical ids.','1. Category,Sub category,Sub Sub category and Brand should be in numerical ids.','2020-11-02 11:37:20','2020-11-02 11:37:20'),(190,'en','2. You can download the pdf to get Category,Sub category,Sub Sub category and Brand id.','2. You can download the pdf to get Category,Sub category,Sub Sub category and Brand id.','2020-11-02 11:37:20','2020-11-02 11:37:20'),(191,'en','Download Category','Download Category','2020-11-02 11:37:20','2020-11-02 11:37:20'),(192,'en','Download Sub category','Download Sub category','2020-11-02 11:37:20','2020-11-02 11:37:20'),(193,'en','Download Sub Sub category','Download Sub Sub category','2020-11-02 11:37:20','2020-11-02 11:37:20'),(194,'en','Download Brand','Download Brand','2020-11-02 11:37:20','2020-11-02 11:37:20'),(195,'en','Upload CSV File','Upload CSV File','2020-11-02 11:37:20','2020-11-02 11:37:20'),(196,'en','CSV','CSV','2020-11-02 11:37:20','2020-11-02 11:37:20'),(197,'en','Choose CSV File','Choose CSV File','2020-11-02 11:37:20','2020-11-02 11:37:20'),(198,'en','Upload','Upload','2020-11-02 11:37:20','2020-11-02 11:37:20'),(199,'en','Add New Digital Product','Add New Digital Product','2020-11-02 11:37:25','2020-11-02 11:37:25'),(200,'en','Available Status','Available Status','2020-11-02 11:37:29','2020-11-02 11:37:29'),(201,'en','Admin Status','Admin Status','2020-11-02 11:37:29','2020-11-02 11:37:29'),(202,'en','Pending Balance','Pending Balance','2020-11-02 11:38:07','2020-11-02 11:38:07'),(203,'en','Send Withdraw Request','Send Withdraw Request','2020-11-02 11:38:07','2020-11-02 11:38:07'),(204,'en','Withdraw Request history','Withdraw Request history','2020-11-02 11:38:07','2020-11-02 11:38:07'),(205,'en','Amount','Amount','2020-11-02 11:38:07','2020-11-02 11:38:07'),(206,'en','Status','Status','2020-11-02 11:38:07','2020-11-02 11:38:07'),(207,'en','Message','Message','2020-11-02 11:38:07','2020-11-02 11:38:07'),(208,'en','Send A Withdraw Request','Send A Withdraw Request','2020-11-02 11:38:07','2020-11-02 11:38:07'),(209,'en','Basic Info','Basic Info','2020-11-02 11:38:13','2020-11-02 11:38:13'),(211,'en','Your Phone','Your Phone','2020-11-02 11:38:13','2020-11-02 11:38:13'),(212,'en','Photo','Photo','2020-11-02 11:38:13','2020-11-02 11:38:13'),(213,'en','Browse','Browse','2020-11-02 11:38:13','2020-11-02 11:38:13'),(215,'en','Your Password','Your Password','2020-11-02 11:38:13','2020-11-02 11:38:13'),(216,'en','New Password','New Password','2020-11-02 11:38:14','2020-11-02 11:38:14'),(217,'en','Confirm Password','Confirm Password','2020-11-02 11:38:14','2020-11-02 11:38:14'),(218,'en','Add New Address','Add New Address','2020-11-02 11:38:14','2020-11-02 11:38:14'),(219,'en','Payment Setting','Payment Setting','2020-11-02 11:38:14','2020-11-02 11:38:14'),(220,'en','Cash Payment','Cash Payment','2020-11-02 11:38:14','2020-11-02 11:38:14'),(221,'en','Bank Payment','Bank Payment','2020-11-02 11:38:14','2020-11-02 11:38:14'),(222,'en','Bank Name','Bank Name','2020-11-02 11:38:14','2020-11-02 11:38:14'),(223,'en','Bank Account Name','Bank Account Name','2020-11-02 11:38:14','2020-11-02 11:38:14'),(224,'en','Bank Account Number','Bank Account Number','2020-11-02 11:38:14','2020-11-02 11:38:14'),(225,'en','Bank Routing Number','Bank Routing Number','2020-11-02 11:38:14','2020-11-02 11:38:14'),(226,'en','Update Profile','Update Profile','2020-11-02 11:38:14','2020-11-02 11:38:14'),(227,'en','Change your email','Change your email','2020-11-02 11:38:14','2020-11-02 11:38:14'),(228,'en','Your Email','Your Email','2020-11-02 11:38:14','2020-11-02 11:38:14'),(229,'en','Sending Email...','Sending Email...','2020-11-02 11:38:14','2020-11-02 11:38:14'),(230,'en','Verify','Verify','2020-11-02 11:38:14','2020-11-02 11:38:14'),(231,'en','Update Email','Update Email','2020-11-02 11:38:14','2020-11-02 11:38:14'),(232,'en','New Address','New Address','2020-11-02 11:38:14','2020-11-02 11:38:14'),(233,'en','Your Address','Your Address','2020-11-02 11:38:14','2020-11-02 11:38:14'),(234,'en','Country','Country','2020-11-02 11:38:14','2020-11-02 11:38:14'),(235,'en','Select your country','Select your country','2020-11-02 11:38:14','2020-11-02 11:38:14'),(236,'en','City','City','2020-11-02 11:38:14','2020-11-02 11:38:14'),(237,'en','Your City','Your City','2020-11-02 11:38:14','2020-11-02 11:38:14'),(239,'en','Your Postal Code','Your Postal Code','2020-11-02 11:38:14','2020-11-02 11:38:14'),(240,'en','+880','+880','2020-11-02 11:38:14','2020-11-02 11:38:14'),(241,'en','Save','Save','2020-11-02 11:38:14','2020-11-02 11:38:14'),(242,'en','Received Refund Request','Received Refund Request','2020-11-02 11:56:20','2020-11-02 11:56:20'),(244,'en','Delete Confirmation','Delete Confirmation','2020-11-02 11:56:20','2020-11-02 11:56:20'),(245,'en','Are you sure to delete this?','Are you sure to delete this?','2020-11-02 11:56:21','2020-11-02 11:56:21'),(246,'en','Premium Packages for Sellers','Premium Packages for Sellers','2020-11-02 11:57:36','2020-11-02 11:57:36'),(247,'en','Product Upload','Product Upload','2020-11-02 11:57:36','2020-11-02 11:57:36'),(248,'en','Digital Product Upload','Digital Product Upload','2020-11-02 11:57:36','2020-11-02 11:57:36'),(250,'en','Purchase Package','Purchase Package','2020-11-02 11:57:36','2020-11-02 11:57:36'),(251,'en','Select Payment Type','Select Payment Type','2020-11-02 11:57:36','2020-11-02 11:57:36'),(252,'en','Payment Type','Payment Type','2020-11-02 11:57:36','2020-11-02 11:57:36'),(253,'en','Select One','Select One','2020-11-02 11:57:36','2020-11-02 11:57:36'),(254,'en','Online payment','Online payment','2020-11-02 11:57:37','2020-11-02 11:57:37'),(255,'en','Offline payment','Offline payment','2020-11-02 11:57:37','2020-11-02 11:57:37'),(256,'en','Purchase Your Package','Purchase Your Package','2020-11-02 11:57:37','2020-11-02 11:57:37'),(258,'en','Paypal','Paypal','2020-11-02 11:57:37','2020-11-02 11:57:37'),(259,'en','Stripe','Stripe','2020-11-02 11:57:37','2020-11-02 11:57:37'),(260,'en','sslcommerz','sslcommerz','2020-11-02 11:57:37','2020-11-02 11:57:37'),(265,'en','Confirm','Confirm','2020-11-02 11:57:37','2020-11-02 11:57:37'),(266,'en','Offline Package Payment','Offline Package Payment','2020-11-02 11:57:37','2020-11-02 11:57:37'),(267,'en','Transaction ID','Transaction ID','2020-11-02 12:30:12','2020-11-02 12:30:12'),(268,'en','Choose image','Choose image','2020-11-02 12:30:12','2020-11-02 12:30:12'),(269,'en','Code','Code','2020-11-02 12:42:00','2020-11-02 12:42:00'),(270,'en','Delivery Status','Delivery Status','2020-11-02 12:42:00','2020-11-02 12:42:00'),(271,'en','Payment Status','Payment Status','2020-11-02 12:42:00','2020-11-02 12:42:00'),(272,'en','Paid','Paid','2020-11-02 12:42:00','2020-11-02 12:42:00'),(273,'en','Order Details','Order Details','2020-11-02 12:42:00','2020-11-02 12:42:00'),(274,'en','Download Invoice','Download Invoice','2020-11-02 12:42:00','2020-11-02 12:42:00'),(275,'en','Unpaid','Unpaid','2020-11-02 12:42:00','2020-11-02 12:42:00'),(277,'en','Order placed','Order placed','2020-11-02 12:43:59','2020-11-02 12:43:59'),(278,'en','Confirmed','Confirmed','2020-11-02 12:43:59','2020-11-02 12:43:59'),(279,'en','On delivery','On delivery','2020-11-02 12:43:59','2020-11-02 12:43:59'),(280,'en','Delivered','Delivered','2020-11-02 12:43:59','2020-11-02 12:43:59'),(281,'en','Order Summary','Order Summary','2020-11-02 12:43:59','2020-11-02 12:43:59'),(282,'en','Order Code','Order Code','2020-11-02 12:43:59','2020-11-02 12:43:59'),(283,'en','Customer','Customer','2020-11-02 12:43:59','2020-11-02 12:43:59'),(287,'en','Total order amount','Total order amount','2020-11-02 12:43:59','2020-11-02 12:43:59'),(288,'en','Shipping metdod','Shipping metdod','2020-11-02 12:43:59','2020-11-02 12:43:59'),(289,'en','Flat shipping rate','Flat shipping rate','2020-11-02 12:44:00','2020-11-02 12:44:00'),(290,'en','Payment metdod','Payment metdod','2020-11-02 12:44:00','2020-11-02 12:44:00'),(291,'en','Variation','Variation','2020-11-02 12:44:00','2020-11-02 12:44:00'),(292,'en','Delivery Type','Delivery Type','2020-11-02 12:44:00','2020-11-02 12:44:00'),(293,'en','Home Delivery','Home Delivery','2020-11-02 12:44:00','2020-11-02 12:44:00'),(294,'en','Order Ammount','Order Ammount','2020-11-02 12:44:00','2020-11-02 12:44:00'),(295,'en','Subtotal','Subtotal','2020-11-02 12:44:00','2020-11-02 12:44:00'),(296,'en','Shipping','Shipping','2020-11-02 12:44:00','2020-11-02 12:44:00'),(298,'en','Coupon Discount','Coupon Discount','2020-11-02 12:44:00','2020-11-02 12:44:00'),(300,'en','N/A','N/A','2020-11-02 12:44:20','2020-11-02 12:44:20'),(301,'en','In stock','In stock','2020-11-02 12:54:52','2020-11-02 12:54:52'),(302,'en','Buy Now','Buy Now','2020-11-02 12:54:52','2020-11-02 12:54:52'),(303,'en','Item added to your cart!','Item added to your cart!','2020-11-02 12:56:46','2020-11-02 12:56:46'),(304,'en','Proceed to Checkout','Proceed to Checkout','2020-11-02 12:56:46','2020-11-02 12:56:46'),(305,'en','Cart Items','Cart Items','2020-11-02 12:56:46','2020-11-02 12:56:46'),(306,'en','1. My Cart','1. My Cart','2020-11-02 12:56:46','2020-11-02 12:56:46'),(307,'en','View cart','View cart','2020-11-02 12:56:46','2020-11-02 12:56:46'),(308,'en','2. Shipping info','2. Shipping info','2020-11-02 12:56:46','2020-11-02 12:56:46'),(309,'en','Checkout','Checkout','2020-11-02 12:56:46','2020-11-02 12:56:46'),(310,'en','3. Delivery info','3. Delivery info','2020-11-02 12:56:46','2020-11-02 12:56:46'),(311,'en','4. Payment','4. Payment','2020-11-02 12:56:46','2020-11-02 12:56:46'),(312,'en','5. Confirmation','5. Confirmation','2020-11-02 12:56:46','2020-11-02 12:56:46'),(313,'en','Remove','Remove','2020-11-02 12:56:46','2020-11-02 12:56:46'),(314,'en','Return to shop','Return to shop','2020-11-02 12:56:46','2020-11-02 12:56:46'),(315,'en','Continue to Shipping','Continue to Shipping','2020-11-02 12:56:46','2020-11-02 12:56:46'),(316,'en','Or','Or','2020-11-02 12:56:46','2020-11-02 12:56:46'),(317,'en','Guest Checkout','Guest Checkout','2020-11-02 12:56:46','2020-11-02 12:56:46'),(318,'en','Continue to Delivery Info','Continue to Delivery Info','2020-11-02 12:57:44','2020-11-02 12:57:44'),(319,'en','Postal Code','Postal Code','2020-11-02 13:01:01','2020-11-02 13:01:01'),(320,'en','Choose Delivery Type','Choose Delivery Type','2020-11-02 13:01:04','2020-11-02 13:01:04'),(321,'en','Local Pickup','Local Pickup','2020-11-02 13:01:04','2020-11-02 13:01:04'),(322,'en','Select your nearest pickup point','Select your nearest pickup point','2020-11-02 13:01:04','2020-11-02 13:01:04'),(323,'en','Continue to Payment','Continue to Payment','2020-11-02 13:01:04','2020-11-02 13:01:04'),(324,'en','Select a payment option','Select a payment option','2020-11-02 13:01:13','2020-11-02 13:01:13'),(325,'en','Razorpay','Razorpay','2020-11-02 13:01:13','2020-11-02 13:01:13'),(326,'en','Paystack','Paystack','2020-11-02 13:01:13','2020-11-02 13:01:13'),(327,'en','VoguePay','VoguePay','2020-11-02 13:01:13','2020-11-02 13:01:13'),(328,'en','payhere','payhere','2020-11-02 13:01:13','2020-11-02 13:01:13'),(329,'en','ngenius','ngenius','2020-11-02 13:01:13','2020-11-02 13:01:13'),(330,'en','Paytm','Paytm','2020-11-02 13:01:13','2020-11-02 13:01:13'),(331,'en','Cash on Delivery','Cash on Delivery','2020-11-02 13:01:13','2020-11-02 13:01:13'),(332,'en','Your wallet balance :','Your wallet balance :','2020-11-02 13:01:13','2020-11-02 13:01:13'),(333,'en','Insufficient balance','Insufficient balance','2020-11-02 13:01:13','2020-11-02 13:01:13'),(334,'en','I agree to the','I agree to the','2020-11-02 13:01:14','2020-11-02 13:01:14'),(338,'en','Complete Order','Complete Order','2020-11-02 13:01:14','2020-11-02 13:01:14'),(339,'en','Summary','Summary','2020-11-02 13:01:14','2020-11-02 13:01:14'),(340,'en','Items','Items','2020-11-02 13:01:14','2020-11-02 13:01:14'),(341,'en','Total Club point','Total Club point','2020-11-02 13:01:14','2020-11-02 13:01:14'),(342,'en','Total Shipping','Total Shipping','2020-11-02 13:01:14','2020-11-02 13:01:14'),(343,'en','Have coupon code? Enter here','Have coupon code? Enter here','2020-11-02 13:01:14','2020-11-02 13:01:14'),(344,'en','Apply','Apply','2020-11-02 13:01:14','2020-11-02 13:01:14'),(345,'en','You need to agree with our policies','You need to agree with our policies','2020-11-02 13:01:14','2020-11-02 13:01:14'),(346,'en','Forgot password','Forgot password','2020-11-02 13:01:25','2020-11-02 13:01:25'),(469,'en','SEO Setting','SEO Setting','2020-11-02 13:01:33','2020-11-02 13:01:33'),(474,'en','System Update','System Update','2020-11-02 13:01:34','2020-11-02 13:01:34'),(480,'en','Add New Payment Method','Add New Payment Method','2020-11-02 13:01:38','2020-11-02 13:01:38'),(481,'en','Manual Payment Method','Manual Payment Method','2020-11-02 13:01:38','2020-11-02 13:01:38'),(482,'en','Heading','Heading','2020-11-02 13:01:38','2020-11-02 13:01:38'),(483,'en','Logo','Logo','2020-11-02 13:01:38','2020-11-02 13:01:38'),(484,'en','Manual Payment Information','Manual Payment Information','2020-11-02 13:01:42','2020-11-02 13:01:42'),(485,'en','Type','Type','2020-11-02 13:01:42','2020-11-02 13:01:42'),(486,'en','Custom Payment','Custom Payment','2020-11-02 13:01:42','2020-11-02 13:01:42'),(487,'en','Check Payment','Check Payment','2020-11-02 13:01:42','2020-11-02 13:01:42'),(488,'en','Checkout Thumbnail','Checkout Thumbnail','2020-11-02 13:01:42','2020-11-02 13:01:42'),(489,'en','Payment Instruction','Payment Instruction','2020-11-02 13:01:42','2020-11-02 13:01:42'),(490,'en','Bank Information','Bank Information','2020-11-02 13:01:42','2020-11-02 13:01:42'),(491,'en','Select File','Select File','2020-11-02 13:01:53','2020-11-02 13:01:53'),(492,'en','Upload New','Upload New','2020-11-02 13:01:53','2020-11-02 13:01:53'),(493,'en','Sort by newest','Sort by newest','2020-11-02 13:01:53','2020-11-02 13:01:53'),(494,'en','Sort by oldest','Sort by oldest','2020-11-02 13:01:53','2020-11-02 13:01:53'),(495,'en','Sort by smallest','Sort by smallest','2020-11-02 13:01:53','2020-11-02 13:01:53'),(496,'en','Sort by largest','Sort by largest','2020-11-02 13:01:53','2020-11-02 13:01:53'),(497,'en','Selected Only','Selected Only','2020-11-02 13:01:53','2020-11-02 13:01:53'),(498,'en','No files found','No files found','2020-11-02 13:01:53','2020-11-02 13:01:53'),(499,'en','0 File selected','0 File selected','2020-11-02 13:01:53','2020-11-02 13:01:53'),(500,'en','Clear','Clear','2020-11-02 13:01:53','2020-11-02 13:01:53'),(501,'en','Prev','Prev','2020-11-02 13:01:53','2020-11-02 13:01:53'),(502,'en','Next','Next','2020-11-02 13:01:53','2020-11-02 13:01:53'),(503,'en','Add Files','Add Files','2020-11-02 13:01:53','2020-11-02 13:01:53'),(504,'en','Method has been inserted successfully','Method has been inserted successfully','2020-11-02 13:02:03','2020-11-02 13:02:03'),(506,'en','Order Date','Order Date','2020-11-02 13:02:42','2020-11-02 13:02:42'),(507,'en','Bill to','Bill to','2020-11-02 13:02:42','2020-11-02 13:02:42'),(510,'en','Sub Total','Sub Total','2020-11-02 13:02:42','2020-11-02 13:02:42'),(512,'en','Total Tax','Total Tax','2020-11-02 13:02:42','2020-11-02 13:02:42'),(513,'en','Grand Total','Grand Total','2020-11-02 13:02:42','2020-11-02 13:02:42'),(514,'en','Your order has been placed successfully. Please submit payment information from purchase history','Your order has been placed successfully. Please submit payment information from purchase history','2020-11-02 13:02:47','2020-11-02 13:02:47'),(515,'en','Thank You for Your Order!','Thank You for Your Order!','2020-11-02 13:02:48','2020-11-02 13:02:48'),(516,'en','Order Code:','Order Code:','2020-11-02 13:02:48','2020-11-02 13:02:48'),(517,'en','A copy or your order summary has been sent to','A copy or your order summary has been sent to','2020-11-02 13:02:48','2020-11-02 13:02:48'),(518,'en','Make Payment','Make Payment','2020-11-02 13:03:26','2020-11-02 13:03:26'),(519,'en','Payment screenshot','Payment screenshot','2020-11-02 13:03:29','2020-11-02 13:03:29'),(520,'en','Paypal Credential','Paypal Credential','2020-11-02 13:12:20','2020-11-02 13:12:20'),(522,'en','Paypal Client ID','Paypal Client ID','2020-11-02 13:12:20','2020-11-02 13:12:20'),(523,'en','Paypal Client Secret','Paypal Client Secret','2020-11-02 13:12:20','2020-11-02 13:12:20'),(524,'en','Paypal Sandbox Mode','Paypal Sandbox Mode','2020-11-02 13:12:20','2020-11-02 13:12:20'),(525,'en','Sslcommerz Credential','Sslcommerz Credential','2020-11-02 13:12:21','2020-11-02 13:12:21'),(526,'en','Sslcz Store Id','Sslcz Store Id','2020-11-02 13:12:21','2020-11-02 13:12:21'),(527,'en','Sslcz store password','Sslcz store password','2020-11-02 13:12:21','2020-11-02 13:12:21'),(528,'en','Sslcommerz Sandbox Mode','Sslcommerz Sandbox Mode','2020-11-02 13:12:21','2020-11-02 13:12:21'),(529,'en','Stripe Credential','Stripe Credential','2020-11-02 13:12:21','2020-11-02 13:12:21'),(531,'en','STRIPE KEY','STRIPE KEY','2020-11-02 13:12:21','2020-11-02 13:12:21'),(533,'en','STRIPE SECRET','STRIPE SECRET','2020-11-02 13:12:21','2020-11-02 13:12:21'),(534,'en','RazorPay Credential','RazorPay Credential','2020-11-02 13:12:21','2020-11-02 13:12:21'),(535,'en','RAZOR KEY','RAZOR KEY','2020-11-02 13:12:21','2020-11-02 13:12:21'),(536,'en','RAZOR SECRET','RAZOR SECRET','2020-11-02 13:12:21','2020-11-02 13:12:21'),(537,'en','Instamojo Credential','Instamojo Credential','2020-11-02 13:12:21','2020-11-02 13:12:21'),(538,'en','API KEY','API KEY','2020-11-02 13:12:21','2020-11-02 13:12:21'),(539,'en','IM API KEY','IM API KEY','2020-11-02 13:12:21','2020-11-02 13:12:21'),(540,'en','AUTH TOKEN','AUTH TOKEN','2020-11-02 13:12:21','2020-11-02 13:12:21'),(541,'en','IM AUTH TOKEN','IM AUTH TOKEN','2020-11-02 13:12:21','2020-11-02 13:12:21'),(542,'en','Instamojo Sandbox Mode','Instamojo Sandbox Mode','2020-11-02 13:12:21','2020-11-02 13:12:21'),(543,'en','PayStack Credential','PayStack Credential','2020-11-02 13:12:21','2020-11-02 13:12:21'),(544,'en','PUBLIC KEY','PUBLIC KEY','2020-11-02 13:12:21','2020-11-02 13:12:21'),(545,'en','SECRET KEY','SECRET KEY','2020-11-02 13:12:21','2020-11-02 13:12:21'),(546,'en','MERCHANT EMAIL','MERCHANT EMAIL','2020-11-02 13:12:21','2020-11-02 13:12:21'),(547,'en','VoguePay Credential','VoguePay Credential','2020-11-02 13:12:21','2020-11-02 13:12:21'),(548,'en','MERCHANT ID','MERCHANT ID','2020-11-02 13:12:21','2020-11-02 13:12:21'),(549,'en','Sandbox Mode','Sandbox Mode','2020-11-02 13:12:21','2020-11-02 13:12:21'),(550,'en','Payhere Credential','Payhere Credential','2020-11-02 13:12:21','2020-11-02 13:12:21'),(551,'en','PAYHERE MERCHANT ID','PAYHERE MERCHANT ID','2020-11-02 13:12:22','2020-11-02 13:12:22'),(552,'en','PAYHERE SECRET','PAYHERE SECRET','2020-11-02 13:12:22','2020-11-02 13:12:22'),(553,'en','PAYHERE CURRENCY','PAYHERE CURRENCY','2020-11-02 13:12:22','2020-11-02 13:12:22'),(554,'en','Payhere Sandbox Mode','Payhere Sandbox Mode','2020-11-02 13:12:22','2020-11-02 13:12:22'),(555,'en','Ngenius Credential','Ngenius Credential','2020-11-02 13:12:22','2020-11-02 13:12:22'),(556,'en','NGENIUS OUTLET ID','NGENIUS OUTLET ID','2020-11-02 13:12:22','2020-11-02 13:12:22'),(557,'en','NGENIUS API KEY','NGENIUS API KEY','2020-11-02 13:12:22','2020-11-02 13:12:22'),(558,'en','NGENIUS CURRENCY','NGENIUS CURRENCY','2020-11-02 13:12:22','2020-11-02 13:12:22'),(559,'en','Mpesa Credential','Mpesa Credential','2020-11-02 13:12:22','2020-11-02 13:12:22'),(560,'en','MPESA CONSUMER KEY','MPESA CONSUMER KEY','2020-11-02 13:12:22','2020-11-02 13:12:22'),(561,'en','MPESA_CONSUMER_KEY','MPESA_CONSUMER_KEY','2020-11-02 13:12:22','2020-11-02 13:12:22'),(562,'en','MPESA CONSUMER SECRET','MPESA CONSUMER SECRET','2020-11-02 13:12:22','2020-11-02 13:12:22'),(563,'en','MPESA_CONSUMER_SECRET','MPESA_CONSUMER_SECRET','2020-11-02 13:12:22','2020-11-02 13:12:22'),(564,'en','MPESA SHORT CODE','MPESA SHORT CODE','2020-11-02 13:12:22','2020-11-02 13:12:22'),(565,'en','MPESA_SHORT_CODE','MPESA_SHORT_CODE','2020-11-02 13:12:22','2020-11-02 13:12:22'),(566,'en','MPESA SANDBOX ACTIVATION','MPESA SANDBOX ACTIVATION','2020-11-02 13:12:22','2020-11-02 13:12:22'),(567,'en','Flutterwave Credential','Flutterwave Credential','2020-11-02 13:12:22','2020-11-02 13:12:22'),(568,'en','RAVE_PUBLIC_KEY','RAVE_PUBLIC_KEY','2020-11-02 13:12:22','2020-11-02 13:12:22'),(569,'en','RAVE_SECRET_KEY','RAVE_SECRET_KEY','2020-11-02 13:12:22','2020-11-02 13:12:22'),(570,'en','RAVE_TITLE','RAVE_TITLE','2020-11-02 13:12:22','2020-11-02 13:12:22'),(571,'en','STAGIN ACTIVATION','STAGIN ACTIVATION','2020-11-02 13:12:22','2020-11-02 13:12:22'),(573,'en','All Product','All Product','2020-11-02 13:15:01','2020-11-02 13:15:01'),(574,'en','Sort By','Sort By','2020-11-02 13:15:01','2020-11-02 13:15:01'),(575,'en','Rating (High > Low)','Rating (High > Low)','2020-11-02 13:15:01','2020-11-02 13:15:01'),(576,'en','Rating (Low > High)','Rating (Low > High)','2020-11-02 13:15:01','2020-11-02 13:15:01'),(577,'en','Num of Sale (High > Low)','Num of Sale (High > Low)','2020-11-02 13:15:01','2020-11-02 13:15:01'),(578,'en','Num of Sale (Low > High)','Num of Sale (Low > High)','2020-11-02 13:15:01','2020-11-02 13:15:01'),(579,'en','Base Price (High > Low)','Base Price (High > Low)','2020-11-02 13:15:01','2020-11-02 13:15:01'),(580,'en','Base Price (Low > High)','Base Price (Low > High)','2020-11-02 13:15:01','2020-11-02 13:15:01'),(581,'en','Type & Enter','Type & Enter','2020-11-02 13:15:01','2020-11-02 13:15:01'),(582,'en','Added By','Added By','2020-11-02 13:15:01','2020-11-02 13:15:01'),(583,'en','Num of Sale','Num of Sale','2020-11-02 13:15:01','2020-11-02 13:15:01'),(584,'en','Total Stock','Total Stock','2020-11-02 13:15:01','2020-11-02 13:15:01'),(585,'en','Todays Deal','Todays Deal','2020-11-02 13:15:01','2020-11-02 13:15:01'),(586,'en','Rating','Rating','2020-11-02 13:15:01','2020-11-02 13:15:01'),(587,'en','times','times','2020-11-02 13:15:01','2020-11-02 13:15:01'),(588,'en','Add Nerw Product','Add Nerw Product','2020-11-02 13:15:02','2020-11-02 13:15:02'),(589,'en','Product Information','Product Information','2020-11-02 13:15:02','2020-11-02 13:15:02'),(590,'en','Unit','Unit','2020-11-02 13:15:02','2020-11-02 13:15:02'),(591,'en','Unit (e.g. KG, Pc etc)','Unit (e.g. KG, Pc etc)','2020-11-02 13:15:03','2020-11-02 13:15:03'),(592,'en','Minimum Qty','Minimum Qty','2020-11-02 13:15:03','2020-11-02 13:15:03'),(593,'en','Tags','Tags','2020-11-02 13:15:03','2020-11-02 13:15:03'),(594,'en','Type and hit enter to add a tag','Type and hit enter to add a tag','2020-11-02 13:15:03','2020-11-02 13:15:03'),(595,'en','Barcode','Barcode','2020-11-02 13:15:03','2020-11-02 13:15:03'),(596,'en','Refundable','Refundable','2020-11-02 13:15:03','2020-11-02 13:15:03'),(597,'en','Product Images','Product Images','2020-11-02 13:15:03','2020-11-02 13:15:03'),(598,'en','Gallery Images','Gallery Images','2020-11-02 13:15:03','2020-11-02 13:15:03'),(599,'en','Todays Deal updated successfully','Todays Deal updated successfully','2020-11-02 13:15:03','2020-11-02 13:15:03'),(600,'en','Published products updated successfully','Published products updated successfully','2020-11-02 13:15:03','2020-11-02 13:15:03'),(601,'en','Thumbnail Image','Thumbnail Image','2020-11-02 13:15:03','2020-11-02 13:15:03'),(602,'en','Featured products updated successfully','Featured products updated successfully','2020-11-02 13:15:03','2020-11-02 13:15:03'),(603,'en','Product Videos','Product Videos','2020-11-02 13:15:03','2020-11-02 13:15:03'),(604,'en','Video Provider','Video Provider','2020-11-02 13:15:03','2020-11-02 13:15:03'),(605,'en','Youtube','Youtube','2020-11-02 13:15:03','2020-11-02 13:15:03'),(606,'en','Dailymotion','Dailymotion','2020-11-02 13:15:03','2020-11-02 13:15:03'),(607,'en','Vimeo','Vimeo','2020-11-02 13:15:03','2020-11-02 13:15:03'),(608,'en','Video Link','Video Link','2020-11-02 13:15:03','2020-11-02 13:15:03'),(609,'en','Product Variation','Product Variation','2020-11-02 13:15:03','2020-11-02 13:15:03'),(610,'en','Colors','Colors','2020-11-02 13:15:03','2020-11-02 13:15:03'),(611,'en','Attributes','Attributes','2020-11-02 13:15:03','2020-11-02 13:15:03'),(612,'en','Choose Attributes','Choose Attributes','2020-11-02 13:15:03','2020-11-02 13:15:03'),(613,'en','Choose the attributes of this product and then input values of each attribute','Choose the attributes of this product and then input values of each attribute','2020-11-02 13:15:03','2020-11-02 13:15:03'),(614,'en','Product price + stock','Product price + stock','2020-11-02 13:15:03','2020-11-02 13:15:03'),(616,'en','Unit price','Unit price','2020-11-02 13:15:03','2020-11-02 13:15:03'),(617,'en','Purchase price','Purchase price','2020-11-02 13:15:03','2020-11-02 13:15:03'),(618,'en','Flat','Flat','2020-11-02 13:15:04','2020-11-02 13:15:04'),(619,'en','Percent','Percent','2020-11-02 13:15:04','2020-11-02 13:15:04'),(620,'en','Discount','Discount','2020-11-02 13:15:04','2020-11-02 13:15:04'),(621,'en','Product Description','Product Description','2020-11-02 13:15:04','2020-11-02 13:15:04'),(622,'en','Product Shipping Cost','Product Shipping Cost','2020-11-02 13:15:04','2020-11-02 13:15:04'),(623,'en','Free Shipping','Free Shipping','2020-11-02 13:15:04','2020-11-02 13:15:04'),(624,'en','Flat Rate','Flat Rate','2020-11-02 13:15:04','2020-11-02 13:15:04'),(625,'en','Shipping cost','Shipping cost','2020-11-02 13:15:04','2020-11-02 13:15:04'),(626,'en','PDF Specification','PDF Specification','2020-11-02 13:15:04','2020-11-02 13:15:04'),(627,'en','SEO Meta Tags','SEO Meta Tags','2020-11-02 13:15:04','2020-11-02 13:15:04'),(628,'en','Meta Title','Meta Title','2020-11-02 13:15:04','2020-11-02 13:15:04'),(629,'en','Meta Image','Meta Image','2020-11-02 13:15:04','2020-11-02 13:15:04'),(630,'en','Choice Title','Choice Title','2020-11-02 13:15:04','2020-11-02 13:15:04'),(631,'en','Enter choice values','Enter choice values','2020-11-02 13:15:04','2020-11-02 13:15:04'),(632,'en','All categories','All categories','2020-11-03 07:12:19','2020-11-03 07:12:19'),(633,'en','Add New category','Add New category','2020-11-03 07:12:19','2020-11-03 07:12:19'),(634,'en','Type name & Enter','Type name & Enter','2020-11-03 07:12:19','2020-11-03 07:12:19'),(635,'en','Banner','Banner','2020-11-03 07:12:19','2020-11-03 07:12:19'),(637,'en','Commission','Commission','2020-11-03 07:12:19','2020-11-03 07:12:19'),(638,'en','icon','icon','2020-11-03 07:12:19','2020-11-03 07:12:19'),(639,'en','Featured categories updated successfully','Featured categories updated successfully','2020-11-03 07:12:20','2020-11-03 07:12:20'),(640,'en','Hot','Hot','2020-11-03 07:13:12','2020-11-03 07:13:12'),(641,'en','Filter by Payment Status','Filter by Payment Status','2020-11-03 07:15:15','2020-11-03 07:15:15'),(642,'en','Un-Paid','Un-Paid','2020-11-03 07:15:15','2020-11-03 07:15:15'),(643,'en','Filter by Deliver Status','Filter by Deliver Status','2020-11-03 07:15:15','2020-11-03 07:15:15'),(644,'en','Pending','Pending','2020-11-03 07:15:15','2020-11-03 07:15:15'),(645,'en','Type Order code & hit Enter','Type Order code & hit Enter','2020-11-03 07:15:15','2020-11-03 07:15:15'),(646,'en','Num. of Products','Num. of Products','2020-11-03 07:15:15','2020-11-03 07:15:15'),(647,'en','Walk In Customer','Walk In Customer','2020-11-03 10:03:20','2020-11-03 10:03:20'),(648,'en','QTY','QTY','2020-11-03 10:03:20','2020-11-03 10:03:20'),(649,'en','Without Shipping Charge','Without Shipping Charge','2020-11-03 10:03:20','2020-11-03 10:03:20'),(650,'en','With Shipping Charge','With Shipping Charge','2020-11-03 10:03:20','2020-11-03 10:03:20'),(651,'en','Pay With Cash','Pay With Cash','2020-11-03 10:03:20','2020-11-03 10:03:20'),(652,'en','Shipping Address','Shipping Address','2020-11-03 10:03:20','2020-11-03 10:03:20'),(653,'en','Close','Close','2020-11-03 10:03:20','2020-11-03 10:03:20'),(654,'en','Select country','Select country','2020-11-03 10:03:21','2020-11-03 10:03:21'),(655,'en','Order Confirmation','Order Confirmation','2020-11-03 10:03:21','2020-11-03 10:03:21'),(656,'en','Are you sure to confirm this order?','Are you sure to confirm this order?','2020-11-03 10:03:21','2020-11-03 10:03:21'),(657,'en','Comfirm Order','Comfirm Order','2020-11-03 10:03:21','2020-11-03 10:03:21'),(659,'en','Personal Info','Personal Info','2020-11-03 11:38:15','2020-11-03 11:38:15'),(660,'en','Repeat Password','Repeat Password','2020-11-03 11:38:15','2020-11-03 11:38:15'),(661,'en','Shop Name','Shop Name','2020-11-03 11:38:15','2020-11-03 11:38:15'),(662,'en','Register Your Shop','Register Your Shop','2020-11-03 11:38:15','2020-11-03 11:38:15'),(663,'en','Affiliate Informations','Affiliate Informations','2020-11-03 11:39:06','2020-11-03 11:39:06'),(664,'en','Affiliate','Affiliate','2020-11-03 11:39:06','2020-11-03 11:39:06'),(665,'en','User Info','User Info','2020-11-03 11:39:06','2020-11-03 11:39:06'),(667,'en','Installed Addon','Installed Addon','2020-11-03 11:48:13','2020-11-03 11:48:13'),(668,'en','Available Addon','Available Addon','2020-11-03 11:48:13','2020-11-03 11:48:13'),(669,'en','Install New Addon','Install New Addon','2020-11-03 11:48:13','2020-11-03 11:48:13'),(670,'en','Version','Version','2020-11-03 11:48:13','2020-11-03 11:48:13'),(671,'en','Activated','Activated','2020-11-03 11:48:13','2020-11-03 11:48:13'),(672,'en','Deactivated','Deactivated','2020-11-03 11:48:13','2020-11-03 11:48:13'),(673,'en','Activate OTP','Activate OTP','2020-11-03 11:48:20','2020-11-03 11:48:20'),(674,'en','OTP will be Used For','OTP will be Used For','2020-11-03 11:48:20','2020-11-03 11:48:20'),(675,'en','Settings updated successfully','Settings updated successfully','2020-11-03 11:48:20','2020-11-03 11:48:20'),(676,'en','Product Owner','Product Owner','2020-11-03 11:48:46','2020-11-03 11:48:46'),(677,'en','Point','Point','2020-11-03 11:48:46','2020-11-03 11:48:46'),(678,'en','Set Point for Product Within a Range','Set Point for Product Within a Range','2020-11-03 11:48:47','2020-11-03 11:48:47'),(679,'en','Set Point for multiple products','Set Point for multiple products','2020-11-03 11:48:47','2020-11-03 11:48:47'),(680,'en','Min Price','Min Price','2020-11-03 11:48:47','2020-11-03 11:48:47'),(681,'en','Max Price','Max Price','2020-11-03 11:48:47','2020-11-03 11:48:47'),(682,'en','Set Point for all Products','Set Point for all Products','2020-11-03 11:48:47','2020-11-03 11:48:47'),(683,'en','Set Point For ','Set Point For ','2020-11-03 11:48:47','2020-11-03 11:48:47'),(684,'en','Convert Status','Convert Status','2020-11-03 11:48:58','2020-11-03 11:48:58'),(685,'en','Earned At','Earned At','2020-11-03 11:48:59','2020-11-03 11:48:59'),(686,'en','Seller Based Selling Report','Seller Based Selling Report','2020-11-03 11:49:35','2020-11-03 11:49:35'),(687,'en','Sort by verificarion status','Sort by verificarion status','2020-11-03 11:49:35','2020-11-03 11:49:35'),(688,'en','Approved','Approved','2020-11-03 11:49:35','2020-11-03 11:49:35'),(689,'en','Non Approved','Non Approved','2020-11-03 11:49:35','2020-11-03 11:49:35'),(690,'en','Filter','Filter','2020-11-03 11:49:35','2020-11-03 11:49:35'),(691,'en','Seller Name','Seller Name','2020-11-03 11:49:35','2020-11-03 11:49:35'),(692,'en','Number of Product Sale','Number of Product Sale','2020-11-03 11:49:36','2020-11-03 11:49:36'),(693,'en','Order Amount','Order Amount','2020-11-03 11:49:36','2020-11-03 11:49:36'),(694,'en','Facebook Chat Setting','Facebook Chat Setting','2020-11-03 11:51:14','2020-11-03 11:51:14'),(695,'en','Facebook Page ID','Facebook Page ID','2020-11-03 11:51:14','2020-11-03 11:51:14'),(696,'en','Please be carefull when you are configuring Facebook chat. For incorrect configuration you will not get messenger icon on your user-end site.','Please be carefull when you are configuring Facebook chat. For incorrect configuration you will not get messenger icon on your user-end site.','2020-11-03 11:51:14','2020-11-03 11:51:14'),(697,'en','Login into your facebook page','Login into your facebook page','2020-11-03 11:51:14','2020-11-03 11:51:14'),(698,'en','Find the About option of your facebook page','Find the About option of your facebook page','2020-11-03 11:51:14','2020-11-03 11:51:14'),(699,'en','At the very bottom, you can find the \\“Facebook Page ID\\”','At the very bottom, you can find the \\“Facebook Page ID\\”','2020-11-03 11:51:14','2020-11-03 11:51:14'),(700,'en','Go to Settings of your page and find the option of \\\"Advance Messaging\\\"','Go to Settings of your page and find the option of \\\"Advance Messaging\\\"','2020-11-03 11:51:14','2020-11-03 11:51:14'),(701,'en','Scroll down that page and you will get \\\"white listed domain\\\"','Scroll down that page and you will get \\\"white listed domain\\\"','2020-11-03 11:51:14','2020-11-03 11:51:14'),(702,'en','Set your website domain name','Set your website domain name','2020-11-03 11:51:14','2020-11-03 11:51:14'),(703,'en','Google reCAPTCHA Setting','Google reCAPTCHA Setting','2020-11-03 11:51:25','2020-11-03 11:51:25'),(704,'en','Site KEY','Site KEY','2020-11-03 11:51:25','2020-11-03 11:51:25'),(705,'en','Select Shipping Method','Select Shipping Method','2020-11-03 11:51:32','2020-11-03 11:51:32'),(706,'en','Product Wise Shipping Cost','Product Wise Shipping Cost','2020-11-03 11:51:32','2020-11-03 11:51:32'),(707,'en','Flat Rate Shipping Cost','Flat Rate Shipping Cost','2020-11-03 11:51:32','2020-11-03 11:51:32'),(708,'en','Seller Wise Flat Shipping Cost','Seller Wise Flat Shipping Cost','2020-11-03 11:51:32','2020-11-03 11:51:32'),(709,'en','Note','Note','2020-11-03 11:51:32','2020-11-03 11:51:32'),(710,'en','Product Wise Shipping Cost calulation: Shipping cost is calculate by addition of each product shipping cost','Product Wise Shipping Cost calulation: Shipping cost is calculate by addition of each product shipping cost','2020-11-03 11:51:32','2020-11-03 11:51:32'),(711,'en','Flat Rate Shipping Cost calulation: How many products a customer purchase, doesn\'t matter. Shipping cost is fixed','Flat Rate Shipping Cost calulation: How many products a customer purchase, doesn\'t matter. Shipping cost is fixed','2020-11-03 11:51:32','2020-11-03 11:51:32'),(712,'en','Seller Wise Flat Shipping Cost calulation: Fixed rate for each seller. If a customer purchase 2 product from two seller shipping cost is calculate by addition of each seller flat shipping cost','Seller Wise Flat Shipping Cost calulation: Fixed rate for each seller. If a customer purchase 2 product from two seller shipping cost is calculate by addition of each seller flat shipping cost','2020-11-03 11:51:32','2020-11-03 11:51:32'),(713,'en','Flat Rate Cost','Flat Rate Cost','2020-11-03 11:51:32','2020-11-03 11:51:32'),(714,'en','Shipping Cost for Admin Products','Shipping Cost for Admin Products','2020-11-03 11:51:32','2020-11-03 11:51:32'),(715,'en','Countries','Countries','2020-11-03 11:52:02','2020-11-03 11:52:02'),(716,'en','Show/Hide','Show/Hide','2020-11-03 11:52:02','2020-11-03 11:52:02'),(717,'en','Country status updated successfully','Country status updated successfully','2020-11-03 11:52:02','2020-11-03 11:52:02'),(718,'en','All Subcategories','All Subcategories','2020-11-03 12:27:55','2020-11-03 12:27:55'),(719,'en','Add New Subcategory','Add New Subcategory','2020-11-03 12:27:55','2020-11-03 12:27:55'),(720,'en','Sub-Categories','Sub-Categories','2020-11-03 12:27:55','2020-11-03 12:27:55'),(721,'en','Sub Category Information','Sub Category Information','2020-11-03 12:28:07','2020-11-03 12:28:07'),(723,'en','Slug','Slug','2020-11-03 12:28:07','2020-11-03 12:28:07'),(724,'en','All Sub Subcategories','All Sub Subcategories','2020-11-03 12:29:12','2020-11-03 12:29:12'),(725,'en','Add New Sub Subcategory','Add New Sub Subcategory','2020-11-03 12:29:12','2020-11-03 12:29:12'),(726,'en','Sub-Sub-categories','Sub-Sub-categories','2020-11-03 12:29:12','2020-11-03 12:29:12'),(727,'en','Make This Default','Make This Default','2020-11-04 08:24:24','2020-11-04 08:24:24'),(728,'en','Shops','Shops','2020-11-04 11:17:10','2020-11-04 11:17:10'),(729,'en','Women Clothing & Fashion','Women Clothing & Fashion','2020-11-04 11:23:12','2020-11-04 11:23:12'),(730,'en','Cellphones & Tabs','Cellphones & Tabs','2020-11-04 12:10:41','2020-11-04 12:10:41'),(731,'en','Welcome to','Welcome to','2020-11-07 07:14:43','2020-11-07 07:14:43'),(732,'en','Create a New Account','Create a New Account','2020-11-07 07:32:15','2020-11-07 07:32:15'),(733,'en','Full Name','Full Name','2020-11-07 07:32:15','2020-11-07 07:32:15'),(734,'en','password','password','2020-11-07 07:32:15','2020-11-07 07:32:15'),(735,'en','Confrim Password','Confrim Password','2020-11-07 07:32:15','2020-11-07 07:32:15'),(736,'en','I agree with the','I agree with the','2020-11-07 07:32:15','2020-11-07 07:32:15'),(737,'en','Terms and Conditions','Terms and Conditions','2020-11-07 07:32:15','2020-11-07 07:32:15'),(738,'en','Register','Register','2020-11-07 07:32:15','2020-11-07 07:32:15'),(739,'en','Already have an account','Already have an account','2020-11-07 07:32:16','2020-11-07 07:32:16'),(741,'en','Sign Up with','Sign Up with','2020-11-07 07:32:16','2020-11-07 07:32:16'),(742,'en','I agree with the Terms and Conditions','I agree with the Terms and Conditions','2020-11-07 07:34:49','2020-11-07 07:34:49'),(745,'en','All Role','All Role','2020-11-07 07:44:28','2020-11-07 07:44:28'),(746,'en','Add New Role','Add New Role','2020-11-07 07:44:28','2020-11-07 07:44:28'),(747,'en','Roles','Roles','2020-11-07 07:44:28','2020-11-07 07:44:28'),(749,'en','Add New Staffs','Add New Staffs','2020-11-07 07:44:36','2020-11-07 07:44:36'),(750,'en','Role','Role','2020-11-07 07:44:36','2020-11-07 07:44:36'),(751,'en','Frontend Website Name','Frontend Website Name','2020-11-07 07:44:59','2020-11-07 07:44:59'),(752,'en','Website Name','Website Name','2020-11-07 07:44:59','2020-11-07 07:44:59'),(753,'en','Site Motto','Site Motto','2020-11-07 07:44:59','2020-11-07 07:44:59'),(754,'en','Best eCommerce Website','Best eCommerce Website','2020-11-07 07:44:59','2020-11-07 07:44:59'),(755,'en','Site Icon','Site Icon','2020-11-07 07:44:59','2020-11-07 07:44:59'),(756,'en','Website favicon. 32x32 .png','Website favicon. 32x32 .png','2020-11-07 07:44:59','2020-11-07 07:44:59'),(757,'en','Website Base Color','Website Base Color','2020-11-07 07:44:59','2020-11-07 07:44:59'),(758,'en','Hex Color Code','Hex Color Code','2020-11-07 07:44:59','2020-11-07 07:44:59'),(759,'en','Website Base Hover Color','Website Base Hover Color','2020-11-07 07:44:59','2020-11-07 07:44:59'),(760,'en','Update','Update','2020-11-07 07:45:00','2020-11-07 07:45:00'),(761,'en','Global Seo','Global Seo','2020-11-07 07:45:00','2020-11-07 07:45:00'),(762,'en','Meta description','Meta description','2020-11-07 07:45:00','2020-11-07 07:45:00'),(763,'en','Keywords','Keywords','2020-11-07 07:45:00','2020-11-07 07:45:00'),(764,'en','Separate with coma','Separate with coma','2020-11-07 07:45:00','2020-11-07 07:45:00'),(765,'en','Website Pages','Website Pages','2020-11-07 07:49:04','2020-11-07 07:49:04'),(766,'en','All Pages','All Pages','2020-11-07 07:49:04','2020-11-07 07:49:04'),(767,'en','Add New Page','Add New Page','2020-11-07 07:49:04','2020-11-07 07:49:04'),(768,'en','URL','URL','2020-11-07 07:49:04','2020-11-07 07:49:04'),(769,'en','Actions','Actions','2020-11-07 07:49:04','2020-11-07 07:49:04'),(770,'en','Edit Page Information','Edit Page Information','2020-11-07 07:49:22','2020-11-07 07:49:22'),(771,'en','Page Content','Page Content','2020-11-07 07:49:22','2020-11-07 07:49:22'),(772,'en','Title','Title','2020-11-07 07:49:22','2020-11-07 07:49:22'),(773,'en','Link','Link','2020-11-07 07:49:22','2020-11-07 07:49:22'),(774,'en','Use character, number, hypen only','Use character, number, hypen only','2020-11-07 07:49:22','2020-11-07 07:49:22'),(775,'en','Add Content','Add Content','2020-11-07 07:49:22','2020-11-07 07:49:22'),(776,'en','Seo Fields','Seo Fields','2020-11-07 07:49:22','2020-11-07 07:49:22'),(777,'en','Update Page','Update Page','2020-11-07 07:49:22','2020-11-07 07:49:22'),(778,'en','Default Language','Default Language','2020-11-07 07:50:09','2020-11-07 07:50:09'),(779,'en','Add New Language','Add New Language','2020-11-07 07:50:09','2020-11-07 07:50:09'),(780,'en','RTL','RTL','2020-11-07 07:50:09','2020-11-07 07:50:09'),(781,'en','Translation','Translation','2020-11-07 07:50:09','2020-11-07 07:50:09'),(782,'en','Language Information','Language Information','2020-11-07 07:50:23','2020-11-07 07:50:23'),(783,'en','Save Page','Save Page','2020-11-07 07:51:27','2020-11-07 07:51:27'),(784,'en','Home Page Settings','Home Page Settings','2020-11-07 07:51:35','2020-11-07 07:51:35'),(785,'en','Home Slider','Home Slider','2020-11-07 07:51:35','2020-11-07 07:51:35'),(786,'en','Photos & Links','Photos & Links','2020-11-07 07:51:35','2020-11-07 07:51:35'),(787,'en','Add New','Add New','2020-11-07 07:51:35','2020-11-07 07:51:35'),(788,'en','Home Categories','Home Categories','2020-11-07 07:51:35','2020-11-07 07:51:35'),(789,'en','Home Banner 1 (Max 3)','Home Banner 1 (Max 3)','2020-11-07 07:51:35','2020-11-07 07:51:35'),(790,'en','Banner & Links','Banner & Links','2020-11-07 07:51:35','2020-11-07 07:51:35'),(791,'en','Home Banner 2 (Max 3)','Home Banner 2 (Max 3)','2020-11-07 07:51:36','2020-11-07 07:51:36'),(792,'en','Top 10','Top 10','2020-11-07 07:51:36','2020-11-07 07:51:36'),(793,'en','Top Categories (Max 10)','Top Categories (Max 10)','2020-11-07 07:51:36','2020-11-07 07:51:36'),(794,'en','Top Brands (Max 10)','Top Brands (Max 10)','2020-11-07 07:51:36','2020-11-07 07:51:36'),(795,'en','System Name','System Name','2020-11-07 07:54:22','2020-11-07 07:54:22'),(796,'en','System Logo - White','System Logo - White','2020-11-07 07:54:22','2020-11-07 07:54:22'),(797,'en','Choose Files','Choose Files','2020-11-07 07:54:22','2020-11-07 07:54:22'),(798,'en','Will be used in admin panel side menu','Will be used in admin panel side menu','2020-11-07 07:54:23','2020-11-07 07:54:23'),(799,'en','System Logo - Black','System Logo - Black','2020-11-07 07:54:23','2020-11-07 07:54:23'),(800,'en','Will be used in admin panel topbar in mobile + Admin login page','Will be used in admin panel topbar in mobile + Admin login page','2020-11-07 07:54:23','2020-11-07 07:54:23'),(801,'en','System Timezone','System Timezone','2020-11-07 07:54:23','2020-11-07 07:54:23'),(802,'en','Admin login page background','Admin login page background','2020-11-07 07:54:23','2020-11-07 07:54:23'),(803,'en','Website Header','Website Header','2020-11-07 08:21:36','2020-11-07 08:21:36'),(804,'en','Header Setting','Header Setting','2020-11-07 08:21:36','2020-11-07 08:21:36'),(805,'en','Header Logo','Header Logo','2020-11-07 08:21:36','2020-11-07 08:21:36'),(806,'en','Show Language Switcher?','Show Language Switcher?','2020-11-07 08:21:36','2020-11-07 08:21:36'),(807,'en','Show Currency Switcher?','Show Currency Switcher?','2020-11-07 08:21:36','2020-11-07 08:21:36'),(808,'en','Enable stikcy header?','Enable stikcy header?','2020-11-07 08:21:36','2020-11-07 08:21:36'),(809,'en','Website Footer','Website Footer','2020-11-07 08:21:56','2020-11-07 08:21:56'),(810,'en','Footer Widget','Footer Widget','2020-11-07 08:21:56','2020-11-07 08:21:56'),(811,'en','About Widget','About Widget','2020-11-07 08:21:56','2020-11-07 08:21:56'),(812,'en','Footer Logo','Footer Logo','2020-11-07 08:21:56','2020-11-07 08:21:56'),(813,'en','About description','About description','2020-11-07 08:21:56','2020-11-07 08:21:56'),(814,'en','Contact Info Widget','Contact Info Widget','2020-11-07 08:21:56','2020-11-07 08:21:56'),(815,'en','Footer contact address','Footer contact address','2020-11-07 08:21:56','2020-11-07 08:21:56'),(816,'en','Footer contact phone','Footer contact phone','2020-11-07 08:21:56','2020-11-07 08:21:56'),(817,'en','Footer contact email','Footer contact email','2020-11-07 08:21:56','2020-11-07 08:21:56'),(818,'en','Link Widget One','Link Widget One','2020-11-07 08:21:56','2020-11-07 08:21:56'),(819,'en','Links','Links','2020-11-07 08:21:56','2020-11-07 08:21:56'),(820,'en','Footer Bottom','Footer Bottom','2020-11-07 08:21:56','2020-11-07 08:21:56'),(821,'en','Copyright Widget ','Copyright Widget ','2020-11-07 08:21:57','2020-11-07 08:21:57'),(822,'en','Copyright Text','Copyright Text','2020-11-07 08:21:57','2020-11-07 08:21:57'),(823,'en','Social Link Widget ','Social Link Widget ','2020-11-07 08:21:57','2020-11-07 08:21:57'),(824,'en','Show Social Links?','Show Social Links?','2020-11-07 08:21:57','2020-11-07 08:21:57'),(825,'en','Social Links','Social Links','2020-11-07 08:21:57','2020-11-07 08:21:57'),(826,'en','Payment Methods Widget ','Payment Methods Widget ','2020-11-07 08:21:57','2020-11-07 08:21:57'),(827,'en','RTL status updated successfully','RTL status updated successfully','2020-11-07 08:36:11','2020-11-07 08:36:11'),(828,'en','Language changed to ','Language changed to ','2020-11-07 08:36:27','2020-11-07 08:36:27'),(829,'en','Inhouse Product sale report','Inhouse Product sale report','2020-11-07 09:30:25','2020-11-07 09:30:25'),(830,'en','Sort by Category','Sort by Category','2020-11-07 09:30:25','2020-11-07 09:30:25'),(831,'en','Product wise stock report','Product wise stock report','2020-11-07 09:31:02','2020-11-07 09:31:02'),(832,'en','Currency changed to ','Currency changed to ','2020-11-07 12:36:28','2020-11-07 12:36:28'),(833,'en','Avatar','Avatar','2020-11-08 09:32:35','2020-11-08 09:32:35'),(834,'en','Copy','Copy','2020-11-08 10:03:42','2020-11-08 10:03:42'),(835,'en','Variant','Variant','2020-11-08 10:43:02','2020-11-08 10:43:02'),(836,'en','Variant Price','Variant Price','2020-11-08 10:43:03','2020-11-08 10:43:03'),(837,'en','SKU','SKU','2020-11-08 10:43:03','2020-11-08 10:43:03'),(838,'en','Key','Key','2020-11-08 12:35:09','2020-11-08 12:35:09'),(839,'en','Value','Value','2020-11-08 12:35:09','2020-11-08 12:35:09'),(840,'en','Copy Translations','Copy Translations','2020-11-08 12:35:10','2020-11-08 12:35:10'),(841,'en','All Pick-up Points','All Pick-up Points','2020-11-08 12:35:43','2020-11-08 12:35:43'),(842,'en','Add New Pick-up Point','Add New Pick-up Point','2020-11-08 12:35:43','2020-11-08 12:35:43'),(843,'en','Manager','Manager','2020-11-08 12:35:43','2020-11-08 12:35:43'),(844,'en','Location','Location','2020-11-08 12:35:43','2020-11-08 12:35:43'),(845,'en','Pickup Station Contact','Pickup Station Contact','2020-11-08 12:35:43','2020-11-08 12:35:43'),(846,'en','Open','Open','2020-11-08 12:35:43','2020-11-08 12:35:43'),(847,'en','POS Activation for Seller','POS Activation for Seller','2020-11-08 12:35:55','2020-11-08 12:35:55'),(848,'en','Order Completed Successfully.','Order Completed Successfully.','2020-11-08 12:36:02','2020-11-08 12:36:02'),(849,'en','Text Input','Text Input','2020-11-08 12:38:40','2020-11-08 12:38:40'),(850,'en','Select','Select','2020-11-08 12:38:40','2020-11-08 12:38:40'),(851,'en','Multiple Select','Multiple Select','2020-11-08 12:38:40','2020-11-08 12:38:40'),(852,'en','Radio','Radio','2020-11-08 12:38:40','2020-11-08 12:38:40'),(853,'en','File','File','2020-11-08 12:38:40','2020-11-08 12:38:40'),(854,'en','Email Address','Email Address','2020-11-08 12:39:32','2020-11-08 12:39:32'),(855,'en','Verification Info','Verification Info','2020-11-08 12:39:32','2020-11-08 12:39:32'),(856,'en','Approval','Approval','2020-11-08 12:39:32','2020-11-08 12:39:32'),(857,'en','Due Amount','Due Amount','2020-11-08 12:39:32','2020-11-08 12:39:32'),(858,'en','Show','Show','2020-11-08 12:39:32','2020-11-08 12:39:32'),(859,'en','Pay Now','Pay Now','2020-11-08 12:39:32','2020-11-08 12:39:32'),(860,'en','Affiliate User Verification','Affiliate User Verification','2020-11-08 12:40:01','2020-11-08 12:40:01'),(861,'en','Reject','Reject','2020-11-08 12:40:01','2020-11-08 12:40:01'),(862,'en','Accept','Accept','2020-11-08 12:40:01','2020-11-08 12:40:01'),(863,'en','Beauty, Health & Hair','Beauty, Health & Hair','2020-11-08 12:54:17','2020-11-08 12:54:17'),(864,'en','Comparison','Comparison','2020-11-08 12:54:33','2020-11-08 12:54:33'),(865,'en','Reset Compare List','Reset Compare List','2020-11-08 12:54:33','2020-11-08 12:54:33'),(866,'en','Your comparison list is empty','Your comparison list is empty','2020-11-08 12:54:33','2020-11-08 12:54:33'),(867,'en','Convert Point To Wallet','Convert Point To Wallet','2020-11-08 13:04:42','2020-11-08 13:04:42'),(868,'en','Note: You need to activate wallet option first before using club point addon.','Note: You need to activate wallet option first before using club point addon.','2020-11-08 13:04:43','2020-11-08 13:04:43'),(869,'en','Create an account.','Create an account.','2020-11-09 06:17:11','2020-11-09 06:17:11'),(870,'en','Use Email Instead','Use Email Instead','2020-11-09 06:17:11','2020-11-09 06:17:11'),(871,'en','By signing up you agree to our terms and conditions.','By signing up you agree to our terms and conditions.','2020-11-09 06:17:11','2020-11-09 06:17:11'),(872,'en','Create Account','Create Account','2020-11-09 06:17:11','2020-11-09 06:17:11'),(873,'en','Or Join With','Or Join With','2020-11-09 06:17:11','2020-11-09 06:17:11'),(874,'en','Already have an account?','Already have an account?','2020-11-09 06:17:11','2020-11-09 06:17:11'),(875,'en','Log In','Log In','2020-11-09 06:17:11','2020-11-09 06:17:11'),(876,'en','Computer & Accessories','Computer & Accessories','2020-11-09 07:52:05','2020-11-09 07:52:05'),(878,'en','Product(s)','Product(s)','2020-11-09 07:52:23','2020-11-09 07:52:23'),(879,'en','in your cart','in your cart','2020-11-09 07:52:23','2020-11-09 07:52:23'),(880,'en','in your wishlist','in your wishlist','2020-11-09 07:52:23','2020-11-09 07:52:23'),(881,'en','you ordered','you ordered','2020-11-09 07:52:24','2020-11-09 07:52:24'),(882,'en','Default Shipping Address','Default Shipping Address','2020-11-09 07:52:24','2020-11-09 07:52:24'),(883,'en','Sports & outdoor','Sports & outdoor','2020-11-09 07:53:32','2020-11-09 07:53:32'),(884,'en','Copied','Copied','2020-11-09 07:54:19','2020-11-09 07:54:19'),(885,'en','Copy the Promote Link','Copy the Promote Link','2020-11-09 07:54:19','2020-11-09 07:54:19'),(886,'en','Write a review','Write a review','2020-11-09 07:54:20','2020-11-09 07:54:20'),(887,'en','Your name','Your name','2020-11-09 07:54:20','2020-11-09 07:54:20'),(888,'en','Comment','Comment','2020-11-09 07:54:20','2020-11-09 07:54:20'),(889,'en','Your review','Your review','2020-11-09 07:54:20','2020-11-09 07:54:20'),(890,'en','Submit review','Submit review','2020-11-09 07:54:20','2020-11-09 07:54:20'),(891,'en','Claire Willis','Claire Willis','2020-11-09 08:05:00','2020-11-09 08:05:00'),(892,'en','Germaine Greene','Germaine Greene','2020-11-09 08:05:00','2020-11-09 08:05:00'),(893,'en','Product File','Product File','2020-11-09 08:07:08','2020-11-09 08:07:08'),(894,'en','Choose file','Choose file','2020-11-09 08:07:08','2020-11-09 08:07:08'),(895,'en','Type to add a tag','Type to add a tag','2020-11-09 08:07:08','2020-11-09 08:07:08'),(896,'en','Images','Images','2020-11-09 08:07:08','2020-11-09 08:07:08'),(897,'en','Main Images','Main Images','2020-11-09 08:07:08','2020-11-09 08:07:08'),(898,'en','Meta Tags','Meta Tags','2020-11-09 08:07:08','2020-11-09 08:07:08'),(899,'en','Digital Product has been inserted successfully','Digital Product has been inserted successfully','2020-11-09 08:14:25','2020-11-09 08:14:25'),(900,'en','Edit Digital Product','Edit Digital Product','2020-11-09 08:14:34','2020-11-09 08:14:34'),(901,'en','Select an option','Select an option','2020-11-09 08:14:34','2020-11-09 08:14:34'),(902,'en','tax','tax','2020-11-09 08:14:35','2020-11-09 08:14:35'),(903,'en','Any question about this product?','Any question about this product?','2020-11-09 08:15:11','2020-11-09 08:15:11'),(904,'en','Sign in','Sign in','2020-11-09 08:15:11','2020-11-09 08:15:11'),(905,'en','Login with Google','Login with Google','2020-11-09 08:15:11','2020-11-09 08:15:11'),(906,'en','Login with Facebook','Login with Facebook','2020-11-09 08:15:11','2020-11-09 08:15:11'),(907,'en','Login with Twitter','Login with Twitter','2020-11-09 08:15:11','2020-11-09 08:15:11'),(908,'en','Click to show phone number','Click to show phone number','2020-11-09 08:15:51','2020-11-09 08:15:51'),(909,'en','Other Ads of','Other Ads of','2020-11-09 08:15:52','2020-11-09 08:15:52'),(910,'en','Store Home','Store Home','2020-11-09 08:54:23','2020-11-09 08:54:23'),(911,'en','Top Selling','Top Selling','2020-11-09 08:54:23','2020-11-09 08:54:23'),(912,'en','Shop Settings','Shop Settings','2020-11-09 08:55:38','2020-11-09 08:55:38'),(913,'en','Visit Shop','Visit Shop','2020-11-09 08:55:38','2020-11-09 08:55:38'),(914,'en','Pickup Points','Pickup Points','2020-11-09 08:55:38','2020-11-09 08:55:38'),(915,'en','Select Pickup Point','Select Pickup Point','2020-11-09 08:55:38','2020-11-09 08:55:38'),(916,'en','Slider Settings','Slider Settings','2020-11-09 08:55:39','2020-11-09 08:55:39'),(917,'en','Social Media Link','Social Media Link','2020-11-09 08:55:39','2020-11-09 08:55:39'),(918,'en','Facebook','Facebook','2020-11-09 08:55:39','2020-11-09 08:55:39'),(919,'en','Twitter','Twitter','2020-11-09 08:55:39','2020-11-09 08:55:39'),(920,'en','Google','Google','2020-11-09 08:55:39','2020-11-09 08:55:39'),(921,'en','New Arrival Products','New Arrival Products','2020-11-09 08:56:26','2020-11-09 08:56:26'),(922,'en','Check Your Order Status','Check Your Order Status','2020-11-09 09:23:32','2020-11-09 09:23:32'),(923,'en','Shipping method','Shipping method','2020-11-09 09:27:40','2020-11-09 09:27:40'),(924,'en','Shipped By','Shipped By','2020-11-09 09:27:41','2020-11-09 09:27:41'),(925,'en','Image','Image','2020-11-09 09:29:37','2020-11-09 09:29:37'),(926,'en','Sub Sub Category','Sub Sub Category','2020-11-09 09:29:37','2020-11-09 09:29:37'),(927,'en','Inhouse Products','Inhouse Products','2020-11-09 10:22:32','2020-11-09 10:22:32'),(928,'en','Forgot Password?','Forgot Password?','2020-11-09 10:33:21','2020-11-09 10:33:21'),(929,'en','Enter your email address to recover your password.','Enter your email address to recover your password.','2020-11-09 10:33:21','2020-11-09 10:33:21'),(930,'en','Email or Phone','Email or Phone','2020-11-09 10:33:21','2020-11-09 10:33:21'),(931,'en','Send Password Reset Link','Send Password Reset Link','2020-11-09 10:33:21','2020-11-09 10:33:21'),(932,'en','Back to Login','Back to Login','2020-11-09 10:33:21','2020-11-09 10:33:21'),(933,'en','index','index','2020-11-09 10:35:29','2020-11-09 10:35:29'),(934,'en','Download Your Product','Download Your Product','2020-11-09 10:35:30','2020-11-09 10:35:30'),(935,'en','Option','Option','2020-11-09 10:35:30','2020-11-09 10:35:30'),(936,'en','Applied Refund Request','Applied Refund Request','2020-11-09 10:35:39','2020-11-09 10:35:39'),(937,'en','Item has been renoved from wishlist','Item has been renoved from wishlist','2020-11-09 10:36:04','2020-11-09 10:36:04'),(938,'en','Bulk Products Upload','Bulk Products Upload','2020-11-09 10:39:24','2020-11-09 10:39:24'),(939,'en','Upload CSV','Upload CSV','2020-11-09 10:39:25','2020-11-09 10:39:25'),(940,'en','Create a Ticket','Create a Ticket','2020-11-09 10:40:25','2020-11-09 10:40:25'),(941,'en','Tickets','Tickets','2020-11-09 10:40:25','2020-11-09 10:40:25'),(942,'en','Ticket ID','Ticket ID','2020-11-09 10:40:25','2020-11-09 10:40:25'),(943,'en','Sending Date','Sending Date','2020-11-09 10:40:25','2020-11-09 10:40:25'),(944,'en','Subject','Subject','2020-11-09 10:40:25','2020-11-09 10:40:25'),(945,'en','View Details','View Details','2020-11-09 10:40:25','2020-11-09 10:40:25'),(946,'en','Provide a detailed description','Provide a detailed description','2020-11-09 10:40:26','2020-11-09 10:40:26'),(947,'en','Type your reply','Type your reply','2020-11-09 10:40:26','2020-11-09 10:40:26'),(948,'en','Send Ticket','Send Ticket','2020-11-09 10:40:26','2020-11-09 10:40:26'),(949,'en','Load More','Load More','2020-11-09 10:40:57','2020-11-09 10:40:57'),(950,'en','Jewelry & Watches','Jewelry & Watches','2020-11-09 10:47:38','2020-11-09 10:47:38'),(951,'en','Filters','Filters','2020-11-09 10:53:54','2020-11-09 10:53:54'),(952,'en','Contact address','Contact address','2020-11-09 10:58:46','2020-11-09 10:58:46'),(953,'en','Contact phone','Contact phone','2020-11-09 10:58:47','2020-11-09 10:58:47'),(954,'en','Contact email','Contact email','2020-11-09 10:58:47','2020-11-09 10:58:47'),(955,'en','Filter by','Filter by','2020-11-09 11:00:03','2020-11-09 11:00:03'),(956,'en','Condition','Condition','2020-11-09 11:56:13','2020-11-09 11:56:13'),(957,'en','All Type','All Type','2020-11-09 11:56:13','2020-11-09 11:56:13'),(960,'en','Pay with wallet','Pay with wallet','2020-11-09 12:56:34','2020-11-09 12:56:34'),(961,'en','Select variation','Select variation','2020-11-10 07:54:29','2020-11-10 07:54:29'),(962,'en','No Product Added','No Product Added','2020-11-10 08:07:53','2020-11-10 08:07:53'),(963,'en','Status has been updated successfully','Status has been updated successfully','2020-11-10 08:41:23','2020-11-10 08:41:23'),(964,'en','All Seller Packages','All Seller Packages','2020-11-10 09:14:10','2020-11-10 09:14:10'),(965,'en','Add New Package','Add New Package','2020-11-10 09:14:10','2020-11-10 09:14:10'),(966,'en','Package Logo','Package Logo','2020-11-10 09:14:10','2020-11-10 09:14:10'),(967,'en','days','days','2020-11-10 09:14:10','2020-11-10 09:14:10'),(968,'en','Create New Seller Package','Create New Seller Package','2020-11-10 09:14:31','2020-11-10 09:14:31'),(969,'en','Package Name','Package Name','2020-11-10 09:14:31','2020-11-10 09:14:31'),(970,'en','Duration','Duration','2020-11-10 09:14:31','2020-11-10 09:14:31'),(971,'en','Validity in number of days','Validity in number of days','2020-11-10 09:14:31','2020-11-10 09:14:31'),(972,'en','Update Package Information','Update Package Information','2020-11-10 09:14:59','2020-11-10 09:14:59'),(973,'en','Package has been inserted successfully','Package has been inserted successfully','2020-11-10 09:15:14','2020-11-10 09:15:14'),(974,'en','Refund Request','Refund Request','2020-11-10 09:17:25','2020-11-10 09:17:25'),(975,'en','Reason','Reason','2020-11-10 09:17:25','2020-11-10 09:17:25'),(976,'en','Label','Label','2020-11-10 09:20:13','2020-11-10 09:20:13'),(977,'en','Select Label','Select Label','2020-11-10 09:20:13','2020-11-10 09:20:13'),(978,'en','Multiple Select Label','Multiple Select Label','2020-11-10 09:20:13','2020-11-10 09:20:13'),(979,'en','Radio Label','Radio Label','2020-11-10 09:20:13','2020-11-10 09:20:13'),(980,'en','Pickup Point Orders','Pickup Point Orders','2020-11-10 09:25:40','2020-11-10 09:25:40'),(981,'en','View','View','2020-11-10 09:25:40','2020-11-10 09:25:40'),(982,'en','Order #','Order #','2020-11-10 09:25:48','2020-11-10 09:25:48'),(983,'en','Order Status','Order Status','2020-11-10 09:25:48','2020-11-10 09:25:48'),(984,'en','Total amount','Total amount','2020-11-10 09:25:48','2020-11-10 09:25:48'),(986,'en','TOTAL','TOTAL','2020-11-10 09:25:49','2020-11-10 09:25:49'),(987,'en','Delivery status has been updated','Delivery status has been updated','2020-11-10 09:25:49','2020-11-10 09:25:49'),(988,'en','Payment status has been updated','Payment status has been updated','2020-11-10 09:25:49','2020-11-10 09:25:49'),(989,'en','INVOICE','INVOICE','2020-11-10 09:25:58','2020-11-10 09:25:58'),(990,'en','Set Refund Time','Set Refund Time','2020-11-10 09:34:04','2020-11-10 09:34:04'),(991,'en','Set Time for sending Refund Request','Set Time for sending Refund Request','2020-11-10 09:34:04','2020-11-10 09:34:04'),(992,'en','Set Refund Sticker','Set Refund Sticker','2020-11-10 09:34:05','2020-11-10 09:34:05'),(993,'en','Sticker','Sticker','2020-11-10 09:34:05','2020-11-10 09:34:05'),(994,'en','Refund Request All','Refund Request All','2020-11-10 09:34:12','2020-11-10 09:34:12'),(995,'en','Order Id','Order Id','2020-11-10 09:34:12','2020-11-10 09:34:12'),(996,'en','Seller Approval','Seller Approval','2020-11-10 09:34:12','2020-11-10 09:34:12'),(997,'en','Admin Approval','Admin Approval','2020-11-10 09:34:12','2020-11-10 09:34:12'),(998,'en','Refund Status','Refund Status','2020-11-10 09:34:12','2020-11-10 09:34:12'),(1000,'en','No Refund','No Refund','2020-11-10 09:35:27','2020-11-10 09:35:27'),(1001,'en','Status updated successfully','Status updated successfully','2020-11-10 09:54:20','2020-11-10 09:54:20'),(1002,'en','User Search Report','User Search Report','2020-11-11 06:43:24','2020-11-11 06:43:24'),(1003,'en','Search By','Search By','2020-11-11 06:43:24','2020-11-11 06:43:24'),(1004,'en','Number searches','Number searches','2020-11-11 06:43:24','2020-11-11 06:43:24'),(1005,'en','Sender','Sender','2020-11-11 06:51:49','2020-11-11 06:51:49'),(1006,'en','Receiver','Receiver','2020-11-11 06:51:49','2020-11-11 06:51:49'),(1007,'en','Verification form updated successfully','Verification form updated successfully','2020-11-11 06:53:29','2020-11-11 06:53:29'),(1008,'en','Invalid email or password','Invalid email or password','2020-11-11 07:07:49','2020-11-11 07:07:49'),(1009,'en','All Coupons','All Coupons','2020-11-11 07:14:04','2020-11-11 07:14:04'),(1010,'en','Add New Coupon','Add New Coupon','2020-11-11 07:14:04','2020-11-11 07:14:04'),(1011,'en','Coupon Information','Coupon Information','2020-11-11 07:14:04','2020-11-11 07:14:04'),(1012,'en','Start Date','Start Date','2020-11-11 07:14:04','2020-11-11 07:14:04'),(1013,'en','End Date','End Date','2020-11-11 07:14:05','2020-11-11 07:14:05'),(1014,'en','Product Base','Product Base','2020-11-11 07:14:05','2020-11-11 07:14:05'),(1015,'en','Send Newsletter','Send Newsletter','2020-11-11 07:14:10','2020-11-11 07:14:10'),(1016,'en','Mobile Users','Mobile Users','2020-11-11 07:14:10','2020-11-11 07:14:10'),(1017,'en','SMS subject','SMS subject','2020-11-11 07:14:10','2020-11-11 07:14:10'),(1018,'en','SMS content','SMS content','2020-11-11 07:14:10','2020-11-11 07:14:10'),(1019,'en','All Flash Delas','All Flash Delas','2020-11-11 07:16:06','2020-11-11 07:16:06'),(1020,'en','Create New Flash Dela','Create New Flash Dela','2020-11-11 07:16:06','2020-11-11 07:16:06'),(1022,'en','Page Link','Page Link','2020-11-11 07:16:06','2020-11-11 07:16:06'),(1023,'en','Flash Deal Information','Flash Deal Information','2020-11-11 07:16:14','2020-11-11 07:16:14'),(1024,'en','Background Color','Background Color','2020-11-11 07:16:14','2020-11-11 07:16:14'),(1025,'en','#0000ff','#0000ff','2020-11-11 07:16:14','2020-11-11 07:16:14'),(1026,'en','Text Color','Text Color','2020-11-11 07:16:14','2020-11-11 07:16:14'),(1027,'en','White','White','2020-11-11 07:16:14','2020-11-11 07:16:14'),(1028,'en','Dark','Dark','2020-11-11 07:16:15','2020-11-11 07:16:15'),(1029,'en','Choose Products','Choose Products','2020-11-11 07:16:15','2020-11-11 07:16:15'),(1030,'en','Discounts','Discounts','2020-11-11 07:16:20','2020-11-11 07:16:20'),(1031,'en','Discount Type','Discount Type','2020-11-11 07:16:20','2020-11-11 07:16:20'),(1032,'en','Twillo Credential','Twillo Credential','2020-11-11 07:17:35','2020-11-11 07:17:35'),(1033,'en','TWILIO SID','TWILIO SID','2020-11-11 07:17:35','2020-11-11 07:17:35'),(1034,'en','TWILIO AUTH TOKEN','TWILIO AUTH TOKEN','2020-11-11 07:17:35','2020-11-11 07:17:35'),(1035,'en','TWILIO VERIFY SID','TWILIO VERIFY SID','2020-11-11 07:17:35','2020-11-11 07:17:35'),(1036,'en','VALID TWILLO NUMBER','VALID TWILLO NUMBER','2020-11-11 07:17:35','2020-11-11 07:17:35'),(1037,'en','Nexmo Credential','Nexmo Credential','2020-11-11 07:17:35','2020-11-11 07:17:35'),(1038,'en','NEXMO KEY','NEXMO KEY','2020-11-11 07:17:35','2020-11-11 07:17:35'),(1039,'en','NEXMO SECRET','NEXMO SECRET','2020-11-11 07:17:35','2020-11-11 07:17:35'),(1040,'en','SSL Wireless Credential','SSL Wireless Credential','2020-11-11 07:17:35','2020-11-11 07:17:35'),(1041,'en','SSL SMS API TOKEN','SSL SMS API TOKEN','2020-11-11 07:17:35','2020-11-11 07:17:35'),(1042,'en','SSL SMS SID','SSL SMS SID','2020-11-11 07:17:35','2020-11-11 07:17:35'),(1043,'en','SSL SMS URL','SSL SMS URL','2020-11-11 07:17:35','2020-11-11 07:17:35'),(1044,'en','Fast2SMS Credential','Fast2SMS Credential','2020-11-11 07:17:35','2020-11-11 07:17:35'),(1045,'en','AUTH KEY','AUTH KEY','2020-11-11 07:17:35','2020-11-11 07:17:35'),(1046,'en','ROUTE','ROUTE','2020-11-11 07:17:35','2020-11-11 07:17:35'),(1047,'en','Promotional Use','Promotional Use','2020-11-11 07:17:35','2020-11-11 07:17:35'),(1048,'en','Transactional Use','Transactional Use','2020-11-11 07:17:35','2020-11-11 07:17:35'),(1050,'en','SENDER ID','SENDER ID','2020-11-11 07:17:35','2020-11-11 07:17:35'),(1051,'en','Nexmo OTP','Nexmo OTP','2020-11-11 07:17:42','2020-11-11 07:17:42'),(1052,'en','Twillo OTP','Twillo OTP','2020-11-11 07:17:43','2020-11-11 07:17:43'),(1053,'en','SSL Wireless OTP','SSL Wireless OTP','2020-11-11 07:17:43','2020-11-11 07:17:43'),(1054,'en','Fast2SMS OTP','Fast2SMS OTP','2020-11-11 07:17:43','2020-11-11 07:17:43'),(1055,'en','Order Placement','Order Placement','2020-11-11 07:17:43','2020-11-11 07:17:43'),(1056,'en','Delivery Status Changing Time','Delivery Status Changing Time','2020-11-11 07:17:43','2020-11-11 07:17:43'),(1057,'en','Paid Status Changing Time','Paid Status Changing Time','2020-11-11 07:17:43','2020-11-11 07:17:43'),(1058,'en','Send Bulk SMS','Send Bulk SMS','2020-11-11 07:19:14','2020-11-11 07:19:14'),(1059,'en','All Subscribers','All Subscribers','2020-11-11 07:21:51','2020-11-11 07:21:51'),(1060,'en','Coupon Information Adding','Coupon Information Adding','2020-11-11 07:22:25','2020-11-11 07:22:25'),(1061,'en','Coupon Type','Coupon Type','2020-11-11 07:22:25','2020-11-11 07:22:25'),(1062,'en','For Products','For Products','2020-11-11 07:22:25','2020-11-11 07:22:25'),(1063,'en','For Total Orders','For Total Orders','2020-11-11 07:22:25','2020-11-11 07:22:25'),(1064,'en','Add Your Product Base Coupon','Add Your Product Base Coupon','2020-11-11 07:22:42','2020-11-11 07:22:42'),(1065,'en','Coupon code','Coupon code','2020-11-11 07:22:42','2020-11-11 07:22:42'),(1066,'en','Sub Category','Sub Category','2020-11-11 07:22:42','2020-11-11 07:22:42'),(1067,'en','Add More','Add More','2020-11-11 07:22:43','2020-11-11 07:22:43'),(1068,'en','Add Your Cart Base Coupon','Add Your Cart Base Coupon','2020-11-11 07:29:40','2020-11-11 07:29:40'),(1069,'en','Minimum Shopping','Minimum Shopping','2020-11-11 07:29:40','2020-11-11 07:29:40'),(1070,'en','Maximum Discount Amount','Maximum Discount Amount','2020-11-11 07:29:41','2020-11-11 07:29:41'),(1071,'en','Coupon Information Update','Coupon Information Update','2020-11-11 08:18:34','2020-11-11 08:18:34'),(1073,'en','Please Configure SMTP Setting to work all email sending funtionality','Please Configure SMTP Setting to work all email sending funtionality','2020-11-11 13:10:18','2020-11-11 13:10:18'),(1074,'en','Configure Now','Configure Now','2020-11-11 13:10:18','2020-11-11 13:10:18'),(1076,'en','Total published products','Total published products','2020-11-11 13:10:18','2020-11-11 13:10:18'),(1077,'en','Total sellers products','Total sellers products','2020-11-11 13:10:18','2020-11-11 13:10:18'),(1078,'en','Total admin products','Total admin products','2020-11-11 13:10:18','2020-11-11 13:10:18'),(1079,'en','Manage Products','Manage Products','2020-11-11 13:10:18','2020-11-11 13:10:18'),(1080,'en','Total product category','Total product category','2020-11-11 13:10:18','2020-11-11 13:10:18'),(1081,'en','Create Category','Create Category','2020-11-11 13:10:18','2020-11-11 13:10:18'),(1082,'en','Total product sub sub category','Total product sub sub category','2020-11-11 13:10:18','2020-11-11 13:10:18'),(1083,'en','Create Sub Sub Category','Create Sub Sub Category','2020-11-11 13:10:18','2020-11-11 13:10:18'),(1084,'en','Total product sub category','Total product sub category','2020-11-11 13:10:18','2020-11-11 13:10:18'),(1085,'en','Create Sub Category','Create Sub Category','2020-11-11 13:10:18','2020-11-11 13:10:18'),(1086,'en','Total product brand','Total product brand','2020-11-11 13:10:18','2020-11-11 13:10:18'),(1087,'en','Create Brand','Create Brand','2020-11-11 13:10:18','2020-11-11 13:10:18'),(1089,'en','Total sellers','Total sellers','2020-11-11 13:10:19','2020-11-11 13:10:19'),(1091,'en','Total approved sellers','Total approved sellers','2020-11-11 13:10:19','2020-11-11 13:10:19'),(1093,'en','Total pending sellers','Total pending sellers','2020-11-11 13:10:19','2020-11-11 13:10:19'),(1094,'en','Manage Sellers','Manage Sellers','2020-11-11 13:10:19','2020-11-11 13:10:19'),(1095,'en','Category wise product sale','Category wise product sale','2020-11-11 13:10:19','2020-11-11 13:10:19'),(1097,'en','Sale','Sale','2020-11-11 13:10:19','2020-11-11 13:10:19'),(1098,'en','Category wise product stock','Category wise product stock','2020-11-11 13:10:19','2020-11-11 13:10:19'),(1099,'en','Category Name','Category Name','2020-11-11 13:10:19','2020-11-11 13:10:19'),(1100,'en','Stock','Stock','2020-11-11 13:10:19','2020-11-11 13:10:19'),(1101,'en','Frontend','Frontend','2020-11-11 13:10:19','2020-11-11 13:10:19'),(1103,'en','Home page','Home page','2020-11-11 13:10:19','2020-11-11 13:10:19'),(1104,'en','setting','setting','2020-11-11 13:10:19','2020-11-11 13:10:19'),(1106,'en','Policy page','Policy page','2020-11-11 13:10:20','2020-11-11 13:10:20'),(1107,'en','setting','setting','2020-11-11 13:10:20','2020-11-11 13:10:20'),(1109,'en','General','General','2020-11-11 13:10:20','2020-11-11 13:10:20'),(1110,'en','setting','setting','2020-11-11 13:10:20','2020-11-11 13:10:20'),(1111,'en','Click Here','Click Here','2020-11-11 13:10:20','2020-11-11 13:10:20'),(1112,'en','Useful link','Useful link','2020-11-11 13:10:20','2020-11-11 13:10:20'),(1113,'en','setting','setting','2020-11-11 13:10:20','2020-11-11 13:10:20'),(1114,'en','Click Here','Click Here','2020-11-11 13:10:20','2020-11-11 13:10:20'),(1115,'en','Activation','Activation','2020-11-11 13:10:20','2020-11-11 13:10:20'),(1116,'en','setting','setting','2020-11-11 13:10:20','2020-11-11 13:10:20'),(1117,'en','Click Here','Click Here','2020-11-11 13:10:20','2020-11-11 13:10:20'),(1118,'en','SMTP','SMTP','2020-11-11 13:10:20','2020-11-11 13:10:20'),(1119,'en','setting','setting','2020-11-11 13:10:20','2020-11-11 13:10:20'),(1120,'en','Click Here','Click Here','2020-11-11 13:10:20','2020-11-11 13:10:20'),(1121,'en','Payment method','Payment method','2020-11-11 13:10:20','2020-11-11 13:10:20'),(1122,'en','setting','setting','2020-11-11 13:10:20','2020-11-11 13:10:20'),(1123,'en','Click Here','Click Here','2020-11-11 13:10:20','2020-11-11 13:10:20'),(1124,'en','Social media','Social media','2020-11-11 13:10:20','2020-11-11 13:10:20'),(1125,'en','setting','setting','2020-11-11 13:10:20','2020-11-11 13:10:20'),(1126,'en','Click Here','Click Here','2020-11-11 13:10:21','2020-11-11 13:10:21'),(1127,'en','Business','Business','2020-11-11 13:10:21','2020-11-11 13:10:21'),(1128,'en','setting','setting','2020-11-11 13:10:21','2020-11-11 13:10:21'),(1130,'en','setting','setting','2020-11-11 13:10:21','2020-11-11 13:10:21'),(1131,'en','Click Here','Click Here','2020-11-11 13:10:21','2020-11-11 13:10:21'),(1132,'en','Seller verification','Seller verification','2020-11-11 13:10:21','2020-11-11 13:10:21'),(1133,'en','form setting','form setting','2020-11-11 13:10:21','2020-11-11 13:10:21'),(1134,'en','Click Here','Click Here','2020-11-11 13:10:21','2020-11-11 13:10:21'),(1135,'en','Language','Language','2020-11-11 13:10:21','2020-11-11 13:10:21'),(1136,'en','setting','setting','2020-11-11 13:10:21','2020-11-11 13:10:21'),(1137,'en','Click Here','Click Here','2020-11-11 13:10:21','2020-11-11 13:10:21'),(1139,'en','setting','setting','2020-11-11 13:10:21','2020-11-11 13:10:21'),(1140,'en','Click Here','Click Here','2020-11-11 13:10:21','2020-11-11 13:10:21'),(1141,'en','Dashboard','Dashboard','2020-11-11 13:10:21','2020-11-11 13:10:21'),(1142,'en','POS System','POS System','2020-11-11 13:10:21','2020-11-11 13:10:21'),(1143,'en','POS Manager','POS Manager','2020-11-11 13:10:21','2020-11-11 13:10:21'),(1144,'en','POS Configuration','POS Configuration','2020-11-11 13:10:21','2020-11-11 13:10:21'),(1145,'en','Products','Products','2020-11-11 13:10:21','2020-11-11 13:10:21'),(1146,'en','Add New product','Add New product','2020-11-11 13:10:22','2020-11-11 13:10:22'),(1147,'en','All Products','All Products','2020-11-11 13:10:22','2020-11-11 13:10:22'),(1148,'en','In House Products','In House Products','2020-11-11 13:10:22','2020-11-11 13:10:22'),(1149,'en','Seller Products','Seller Products','2020-11-11 13:10:22','2020-11-11 13:10:22'),(1150,'en','Digital Products','Digital Products','2020-11-11 13:10:22','2020-11-11 13:10:22'),(1151,'en','Bulk Import','Bulk Import','2020-11-11 13:10:22','2020-11-11 13:10:22'),(1152,'en','Bulk Export','Bulk Export','2020-11-11 13:10:22','2020-11-11 13:10:22'),(1153,'en','Category','Category','2020-11-11 13:10:22','2020-11-11 13:10:22'),(1154,'en','Subcategory','Subcategory','2020-11-11 13:10:22','2020-11-11 13:10:22'),(1155,'en','Sub Subcategory','Sub Subcategory','2020-11-11 13:10:22','2020-11-11 13:10:22'),(1156,'en','Brand','Brand','2020-11-11 13:10:22','2020-11-11 13:10:22'),(1157,'en','Attribute','Attribute','2020-11-11 13:10:22','2020-11-11 13:10:22'),(1158,'en','Product Reviews','Product Reviews','2020-11-11 13:10:22','2020-11-11 13:10:22'),(1159,'en','Sales','Sales','2020-11-11 13:10:22','2020-11-11 13:10:22'),(1160,'en','All Orders','All Orders','2020-11-11 13:10:22','2020-11-11 13:10:22'),(1161,'en','Inhouse orders','Inhouse orders','2020-11-11 13:10:22','2020-11-11 13:10:22'),(1162,'en','Seller Orders','Seller Orders','2020-11-11 13:10:22','2020-11-11 13:10:22'),(1163,'en','Pick-up Point Order','Pick-up Point Order','2020-11-11 13:10:22','2020-11-11 13:10:22'),(1164,'en','Refunds','Refunds','2020-11-11 13:10:22','2020-11-11 13:10:22'),(1165,'en','Refund Requests','Refund Requests','2020-11-11 13:10:22','2020-11-11 13:10:22'),(1166,'en','Approved Refund','Approved Refund','2020-11-11 13:10:23','2020-11-11 13:10:23'),(1167,'en','Refund Configuration','Refund Configuration','2020-11-11 13:10:23','2020-11-11 13:10:23'),(1168,'en','Customers','Customers','2020-11-11 13:10:23','2020-11-11 13:10:23'),(1169,'en','Customer list','Customer list','2020-11-11 13:10:23','2020-11-11 13:10:23'),(1170,'en','Classified Products','Classified Products','2020-11-11 13:10:23','2020-11-11 13:10:23'),(1171,'en','Classified Packages','Classified Packages','2020-11-11 13:10:23','2020-11-11 13:10:23'),(1172,'en','Sellers','Sellers','2020-11-11 13:10:23','2020-11-11 13:10:23'),(1173,'en','All Seller','All Seller','2020-11-11 13:10:23','2020-11-11 13:10:23'),(1174,'en','Payouts','Payouts','2020-11-11 13:10:23','2020-11-11 13:10:23'),(1175,'en','Payout Requests','Payout Requests','2020-11-11 13:10:23','2020-11-11 13:10:23'),(1176,'en','Seller Commission','Seller Commission','2020-11-11 13:10:23','2020-11-11 13:10:23'),(1177,'en','Seller Packages','Seller Packages','2020-11-11 13:10:23','2020-11-11 13:10:23'),(1178,'en','Seller Verification Form','Seller Verification Form','2020-11-11 13:10:23','2020-11-11 13:10:23'),(1179,'en','Reports','Reports','2020-11-11 13:10:23','2020-11-11 13:10:23'),(1180,'en','In House Product Sale','In House Product Sale','2020-11-11 13:10:23','2020-11-11 13:10:23'),(1181,'en','Seller Products Sale','Seller Products Sale','2020-11-11 13:10:23','2020-11-11 13:10:23'),(1182,'en','Products Stock','Products Stock','2020-11-11 13:10:23','2020-11-11 13:10:23'),(1183,'en','Products wishlist','Products wishlist','2020-11-11 13:10:23','2020-11-11 13:10:23'),(1184,'en','User Searches','User Searches','2020-11-11 13:10:23','2020-11-11 13:10:23'),(1185,'en','Marketing','Marketing','2020-11-11 13:10:24','2020-11-11 13:10:24'),(1186,'en','Flash deals','Flash deals','2020-11-11 13:10:24','2020-11-11 13:10:24'),(1187,'en','Newsletters','Newsletters','2020-11-11 13:10:24','2020-11-11 13:10:24'),(1188,'en','Bulk SMS','Bulk SMS','2020-11-11 13:10:24','2020-11-11 13:10:24'),(1189,'en','Subscribers','Subscribers','2020-11-11 13:10:24','2020-11-11 13:10:24'),(1190,'en','Coupon','Coupon','2020-11-11 13:10:24','2020-11-11 13:10:24'),(1191,'en','Support','Support','2020-11-11 13:10:24','2020-11-11 13:10:24'),(1192,'en','Ticket','Ticket','2020-11-11 13:10:24','2020-11-11 13:10:24'),(1193,'en','Product Queries','Product Queries','2020-11-11 13:10:24','2020-11-11 13:10:24'),(1194,'en','Website Setup','Website Setup','2020-11-11 13:10:24','2020-11-11 13:10:24'),(1195,'en','Header','Header','2020-11-11 13:10:24','2020-11-11 13:10:24'),(1196,'en','Footer','Footer','2020-11-11 13:10:24','2020-11-11 13:10:24'),(1197,'en','Pages','Pages','2020-11-11 13:10:24','2020-11-11 13:10:24'),(1198,'en','Appearance','Appearance','2020-11-11 13:10:24','2020-11-11 13:10:24'),(1199,'en','Setup & Configurations','Setup & Configurations','2020-11-11 13:10:24','2020-11-11 13:10:24'),(1200,'en','General Settings','General Settings','2020-11-11 13:10:24','2020-11-11 13:10:24'),(1201,'en','Features activation','Features activation','2020-11-11 13:10:24','2020-11-11 13:10:24'),(1202,'en','Languages','Languages','2020-11-11 13:10:24','2020-11-11 13:10:24'),(1203,'en','Currency','Currency','2020-11-11 13:10:25','2020-11-11 13:10:25'),(1204,'en','Pickup point','Pickup point','2020-11-11 13:10:25','2020-11-11 13:10:25'),(1205,'en','SMTP Settings','SMTP Settings','2020-11-11 13:10:25','2020-11-11 13:10:25'),(1206,'en','Payment Methods','Payment Methods','2020-11-11 13:10:25','2020-11-11 13:10:25'),(1207,'en','File System Configuration','File System Configuration','2020-11-11 13:10:25','2020-11-11 13:10:25'),(1208,'en','Social media Logins','Social media Logins','2020-11-11 13:10:25','2020-11-11 13:10:25'),(1209,'en','Analytics Tools','Analytics Tools','2020-11-11 13:10:25','2020-11-11 13:10:25'),(1210,'en','Facebook Chat','Facebook Chat','2020-11-11 13:10:25','2020-11-11 13:10:25'),(1211,'en','Google reCAPTCHA','Google reCAPTCHA','2020-11-11 13:10:25','2020-11-11 13:10:25'),(1212,'en','Shipping Configuration','Shipping Configuration','2020-11-11 13:10:25','2020-11-11 13:10:25'),(1213,'en','Shipping Countries','Shipping Countries','2020-11-11 13:10:25','2020-11-11 13:10:25'),(1214,'en','Affiliate System','Affiliate System','2020-11-11 13:10:25','2020-11-11 13:10:25'),(1215,'en','Affiliate Registration Form','Affiliate Registration Form','2020-11-11 13:10:25','2020-11-11 13:10:25'),(1216,'en','Affiliate Configurations','Affiliate Configurations','2020-11-11 13:10:25','2020-11-11 13:10:25'),(1217,'en','Affiliate Users','Affiliate Users','2020-11-11 13:10:25','2020-11-11 13:10:25'),(1218,'en','Referral Users','Referral Users','2020-11-11 13:10:25','2020-11-11 13:10:25'),(1219,'en','Affiliate Withdraw Requests','Affiliate Withdraw Requests','2020-11-11 13:10:26','2020-11-11 13:10:26'),(1220,'en','Offline Payment System','Offline Payment System','2020-11-11 13:10:26','2020-11-11 13:10:26'),(1221,'en','Manual Payment Methods','Manual Payment Methods','2020-11-11 13:10:26','2020-11-11 13:10:26'),(1222,'en','Offline Wallet Recharge','Offline Wallet Recharge','2020-11-11 13:10:26','2020-11-11 13:10:26'),(1223,'en','Offline Customer Package Payments','Offline Customer Package Payments','2020-11-11 13:10:26','2020-11-11 13:10:26'),(1224,'en','Offline Seller Package Payments','Offline Seller Package Payments','2020-11-11 13:10:26','2020-11-11 13:10:26'),(1225,'en','Paytm Payment Gateway','Paytm Payment Gateway','2020-11-11 13:10:26','2020-11-11 13:10:26'),(1226,'en','Set Paytm Credentials','Set Paytm Credentials','2020-11-11 13:10:26','2020-11-11 13:10:26'),(1227,'en','Club Point System','Club Point System','2020-11-11 13:10:26','2020-11-11 13:10:26'),(1228,'en','Club Point Configurations','Club Point Configurations','2020-11-11 13:10:26','2020-11-11 13:10:26'),(1229,'en','Set Product Point','Set Product Point','2020-11-11 13:10:26','2020-11-11 13:10:26'),(1230,'en','User Points','User Points','2020-11-11 13:10:26','2020-11-11 13:10:26'),(1231,'en','OTP System','OTP System','2020-11-11 13:10:26','2020-11-11 13:10:26'),(1232,'en','OTP Configurations','OTP Configurations','2020-11-11 13:10:26','2020-11-11 13:10:26'),(1233,'en','Set OTP Credentials','Set OTP Credentials','2020-11-11 13:10:26','2020-11-11 13:10:26'),(1234,'en','Staffs','Staffs','2020-11-11 13:10:26','2020-11-11 13:10:26'),(1235,'en','All staffs','All staffs','2020-11-11 13:10:27','2020-11-11 13:10:27'),(1236,'en','Staff permissions','Staff permissions','2020-11-11 13:10:27','2020-11-11 13:10:27'),(1237,'en','Addon Manager','Addon Manager','2020-11-11 13:10:27','2020-11-11 13:10:27'),(1238,'en','Browse Website','Browse Website','2020-11-11 13:10:27','2020-11-11 13:10:27'),(1239,'en','POS','POS','2020-11-11 13:10:27','2020-11-11 13:10:27'),(1240,'en','Notifications','Notifications','2020-11-11 13:10:27','2020-11-11 13:10:27'),(1241,'en','new orders','new orders','2020-11-11 13:10:27','2020-11-11 13:10:27'),(1242,'en','user-image','user-image','2020-11-11 13:10:27','2020-11-11 13:10:27'),(1243,'en','Profile','Profile','2020-11-11 13:10:27','2020-11-11 13:10:27'),(1244,'en','Logout','Logout','2020-11-11 13:10:27','2020-11-11 13:10:27'),(1247,'en','Page Not Found!','Page Not Found!','2020-11-11 13:10:28','2020-11-11 13:10:28'),(1249,'en','The page you are looking for has not been found on our server.','The page you are looking for has not been found on our server.','2020-11-11 13:10:28','2020-11-11 13:10:28'),(1253,'en','Registration','Registration','2020-11-11 13:10:29','2020-11-11 13:10:29'),(1255,'en','I am shopping for...','I am shopping for...','2020-11-11 13:10:29','2020-11-11 13:10:29'),(1257,'en','Compare','Compare','2020-11-11 13:10:29','2020-11-11 13:10:29'),(1259,'en','Wishlist','Wishlist','2020-11-11 13:10:29','2020-11-11 13:10:29'),(1261,'en','Cart','Cart','2020-11-11 13:10:29','2020-11-11 13:10:29'),(1263,'en','Your Cart is empty','Your Cart is empty','2020-11-11 13:10:29','2020-11-11 13:10:29'),(1265,'en','Categories','Categories','2020-11-11 13:10:29','2020-11-11 13:10:29'),(1267,'en','See All','See All','2020-11-11 13:10:29','2020-11-11 13:10:29'),(1269,'en','Seller Policy','Seller Policy','2020-11-11 13:10:29','2020-11-11 13:10:29'),(1271,'en','Return Policy','Return Policy','2020-11-11 13:10:29','2020-11-11 13:10:29'),(1273,'en','Support Policy','Support Policy','2020-11-11 13:10:29','2020-11-11 13:10:29'),(1275,'en','Privacy Policy','Privacy Policy','2020-11-11 13:10:29','2020-11-11 13:10:29'),(1277,'en','Your Email Address','Your Email Address','2020-11-11 13:10:29','2020-11-11 13:10:29'),(1279,'en','Subscribe','Subscribe','2020-11-11 13:10:29','2020-11-11 13:10:29'),(1281,'en','Contact Info','Contact Info','2020-11-11 13:10:29','2020-11-11 13:10:29'),(1283,'en','Address','Address','2020-11-11 13:10:29','2020-11-11 13:10:29'),(1285,'en','Phone','Phone','2020-11-11 13:10:30','2020-11-11 13:10:30'),(1287,'en','Email','Email','2020-11-11 13:10:30','2020-11-11 13:10:30'),(1288,'en','Login','Login','2020-11-11 13:10:30','2020-11-11 13:10:30'),(1289,'en','My Account','My Account','2020-11-11 13:10:30','2020-11-11 13:10:30'),(1291,'en','Login','Login','2020-11-11 13:10:30','2020-11-11 13:10:30'),(1293,'en','Order History','Order History','2020-11-11 13:10:30','2020-11-11 13:10:30'),(1295,'en','My Wishlist','My Wishlist','2020-11-11 13:10:30','2020-11-11 13:10:30'),(1297,'en','Track Order','Track Order','2020-11-11 13:10:30','2020-11-11 13:10:30'),(1299,'en','Be an affiliate partner','Be an affiliate partner','2020-11-11 13:10:30','2020-11-11 13:10:30'),(1301,'en','Be a Seller','Be a Seller','2020-11-11 13:10:30','2020-11-11 13:10:30'),(1303,'en','Apply Now','Apply Now','2020-11-11 13:10:30','2020-11-11 13:10:30'),(1305,'en','Confirmation','Confirmation','2020-11-11 13:10:30','2020-11-11 13:10:30'),(1307,'en','Delete confirmation message','Delete confirmation message','2020-11-11 13:10:30','2020-11-11 13:10:30'),(1309,'en','Cancel','Cancel','2020-11-11 13:10:30','2020-11-11 13:10:30'),(1312,'en','Delete','Delete','2020-11-11 13:10:30','2020-11-11 13:10:30'),(1313,'en','Item has been added to compare list','Item has been added to compare list','2020-11-11 13:10:30','2020-11-11 13:10:30'),(1314,'en','Please login first','Please login first','2020-11-11 13:10:30','2020-11-11 13:10:30'),(1315,'en','Total Earnings From','Total Earnings From','2020-11-12 08:01:11','2020-11-12 08:01:11'),(1316,'en','Client Subscription','Client Subscription','2020-11-12 08:01:12','2020-11-12 08:01:12'),(1317,'en','Product category','Product category','2020-11-12 08:03:46','2020-11-12 08:03:46'),(1318,'en','Product sub sub category','Product sub sub category','2020-11-12 08:03:46','2020-11-12 08:03:46'),(1319,'en','Product sub category','Product sub category','2020-11-12 08:03:46','2020-11-12 08:03:46'),(1320,'en','Product brand','Product brand','2020-11-12 08:03:46','2020-11-12 08:03:46'),(1321,'en','Top Client Packages','Top Client Packages','2020-11-12 08:05:21','2020-11-12 08:05:21'),(1322,'en','Top Freelancer Packages','Top Freelancer Packages','2020-11-12 08:05:21','2020-11-12 08:05:21'),(1323,'en','Number of sale','Number of sale','2020-11-12 09:13:09','2020-11-12 09:13:09'),(1324,'en','Number of Stock','Number of Stock','2020-11-12 09:16:02','2020-11-12 09:16:02'),(1325,'en','Top 10 Products','Top 10 Products','2020-11-12 10:02:29','2020-11-12 10:02:29'),(1326,'en','Top 12 Products','Top 12 Products','2020-11-12 10:02:39','2020-11-12 10:02:39'),(1327,'en','Admin can not be a seller','Admin can not be a seller','2020-11-12 11:30:19','2020-11-12 11:30:19'),(1328,'en','Filter by Rating','Filter by Rating','2020-11-15 08:01:15','2020-11-15 08:01:15'),(1329,'en','Published reviews updated successfully','Published reviews updated successfully','2020-11-15 08:01:15','2020-11-15 08:01:15'),(1330,'en','Refund Sticker has been updated successfully','Refund Sticker has been updated successfully','2020-11-15 08:17:12','2020-11-15 08:17:12'),(1331,'en','Edit Product','Edit Product','2020-11-15 10:31:54','2020-11-15 10:31:54'),(1332,'en','Meta Images','Meta Images','2020-11-15 10:32:12','2020-11-15 10:32:12'),(1333,'en','Update Product','Update Product','2020-11-15 10:32:12','2020-11-15 10:32:12'),(1334,'en','Product has been deleted successfully','Product has been deleted successfully','2020-11-15 10:32:57','2020-11-15 10:32:57'),(1335,'en','Your Profile has been updated successfully!','Your Profile has been updated successfully!','2020-11-15 11:10:42','2020-11-15 11:10:42'),(1336,'en','Upload limit has been reached. Please upgrade your package.','Upload limit has been reached. Please upgrade your package.','2020-11-15 11:13:45','2020-11-15 11:13:45'),(1337,'en','Add Your Product','Add Your Product','2020-11-15 11:17:56','2020-11-15 11:17:56'),(1338,'en','Select a category','Select a category','2020-11-15 11:17:56','2020-11-15 11:17:56'),(1339,'en','Select a brand','Select a brand','2020-11-15 11:17:56','2020-11-15 11:17:56'),(1340,'en','Product Unit','Product Unit','2020-11-15 11:17:56','2020-11-15 11:17:56'),(1341,'en','Minimum Qty.','Minimum Qty.','2020-11-15 11:17:56','2020-11-15 11:17:56'),(1342,'en','Product Tag','Product Tag','2020-11-15 11:17:56','2020-11-15 11:17:56'),(1343,'en','Type & hit enter','Type & hit enter','2020-11-15 11:17:56','2020-11-15 11:17:56'),(1344,'en','Videos','Videos','2020-11-15 11:17:56','2020-11-15 11:17:56'),(1345,'en','Video From','Video From','2020-11-15 11:17:56','2020-11-15 11:17:56'),(1346,'en','Video URL','Video URL','2020-11-15 11:17:56','2020-11-15 11:17:56'),(1347,'en','Customer Choice','Customer Choice','2020-11-15 11:17:56','2020-11-15 11:17:56'),(1348,'en','PDF','PDF','2020-11-15 11:17:56','2020-11-15 11:17:56'),(1349,'en','Choose PDF','Choose PDF','2020-11-15 11:17:56','2020-11-15 11:17:56'),(1350,'en','Select Category','Select Category','2020-11-15 11:17:56','2020-11-15 11:17:56'),(1351,'en','Target Category','Target Category','2020-11-15 11:17:56','2020-11-15 11:17:56'),(1352,'en','subsubcategory','subsubcategory','2020-11-15 11:17:56','2020-11-15 11:17:56'),(1353,'en','Search Category','Search Category','2020-11-15 11:17:56','2020-11-15 11:17:56'),(1354,'en','Search SubCategory','Search SubCategory','2020-11-15 11:17:56','2020-11-15 11:17:56'),(1355,'en','Search SubSubCategory','Search SubSubCategory','2020-11-15 11:17:56','2020-11-15 11:17:56'),(1356,'en','Update your product','Update your product','2020-11-15 11:39:14','2020-11-15 11:39:14'),(1357,'en','Product has been updated successfully','Product has been updated successfully','2020-11-15 11:51:36','2020-11-15 11:51:36'),(1358,'en','Add Your Digital Product','Add Your Digital Product','2020-11-15 12:24:21','2020-11-15 12:24:21'),(1359,'en','Active eCommerce CMS Update Process','Active eCommerce CMS Update Process','2020-11-16 07:53:31','2020-11-16 07:53:31'),(1360,'en','You will need to know the following items before\r\n        proceeding','You will need to know the following items before\r\n        proceeding','2020-11-16 07:53:31','2020-11-16 07:53:31'),(1361,'en','Codecanyon purchase code','Codecanyon purchase code','2020-11-16 07:53:31','2020-11-16 07:53:31'),(1362,'en','Database Name','Database Name','2020-11-16 07:53:31','2020-11-16 07:53:31'),(1363,'en','Database Username','Database Username','2020-11-16 07:53:31','2020-11-16 07:53:31'),(1364,'en','Database Password','Database Password','2020-11-16 07:53:31','2020-11-16 07:53:31'),(1365,'en','Database Hostname','Database Hostname','2020-11-16 07:53:31','2020-11-16 07:53:31'),(1366,'en','Update Now','Update Now','2020-11-16 07:53:31','2020-11-16 07:53:31'),(1367,'en','You will need to know the following items before\r\n                            proceeding','You will need to know the following items before\r\n                            proceeding','2020-11-16 07:54:20','2020-11-16 07:54:20'),(1368,'en','Congratulations','Congratulations','2020-11-16 07:55:14','2020-11-16 07:55:14'),(1369,'en','You have successfully completed the updating process. Please Login to continue','You have successfully completed the updating process. Please Login to continue','2020-11-16 07:55:14','2020-11-16 07:55:14'),(1370,'en','Go to Home','Go to Home','2020-11-16 07:55:14','2020-11-16 07:55:14'),(1371,'en','Login to Admin panel','Login to Admin panel','2020-11-16 07:55:14','2020-11-16 07:55:14'),(1372,'en','S3 File System Credentials','S3 File System Credentials','2020-11-16 12:59:57','2020-11-16 12:59:57'),(1373,'en','AWS_ACCESS_KEY_ID','AWS_ACCESS_KEY_ID','2020-11-16 12:59:57','2020-11-16 12:59:57'),(1374,'en','AWS_SECRET_ACCESS_KEY','AWS_SECRET_ACCESS_KEY','2020-11-16 12:59:57','2020-11-16 12:59:57'),(1375,'en','AWS_DEFAULT_REGION','AWS_DEFAULT_REGION','2020-11-16 12:59:57','2020-11-16 12:59:57'),(1376,'en','AWS_BUCKET','AWS_BUCKET','2020-11-16 12:59:57','2020-11-16 12:59:57'),(1377,'en','AWS_URL','AWS_URL','2020-11-16 12:59:57','2020-11-16 12:59:57'),(1378,'en','S3 File System Activation','S3 File System Activation','2020-11-16 12:59:57','2020-11-16 12:59:57'),(1379,'en','Your phone number','Your phone number','2020-11-17 05:50:10','2020-11-17 05:50:10'),(1380,'en','Zip File','Zip File','2020-11-17 06:58:45','2020-11-17 06:58:45'),(1381,'en','Install','Install','2020-11-17 06:58:45','2020-11-17 06:58:45'),(1382,'en','This version is not capable of installing Addons, Please update.','This version is not capable of installing Addons, Please update.','2020-11-17 06:59:11','2020-11-17 06:59:11'),(1383,'en','Something went wrong!','Something went wrong!','2021-01-07 03:03:13','2021-01-07 03:03:13'),(1384,'en','Sorry for the inconvenience, but we\'re working on it.','Sorry for the inconvenience, but we\'re working on it.','2021-01-07 03:03:13','2021-01-07 03:03:13'),(1385,'en','Error code','Error code','2021-01-07 03:03:13','2021-01-07 03:03:13'),(1386,'en','Please Configure SMTP Setting to work all email sending functionality','Please Configure SMTP Setting to work all email sending functionality','2021-01-07 03:05:20','2021-01-07 03:05:20'),(1387,'en','Order','Order','2021-01-07 03:05:20','2021-01-07 03:05:20'),(1388,'en','Search in menu','Search in menu','2021-01-07 03:05:20','2021-01-07 03:05:20'),(1389,'en','Uploaded Files','Uploaded Files','2021-01-07 03:05:20','2021-01-07 03:05:20'),(1390,'en','System','System','2021-01-07 03:05:20','2021-01-07 03:05:20'),(1391,'en','Server status','Server status','2021-01-07 03:05:20','2021-01-07 03:05:20'),(1392,'en','Nothing Found','Nothing Found','2021-01-07 03:05:20','2021-01-07 03:05:20'),(1393,'en','System Default Currency','System Default Currency','2021-01-07 03:48:54','2021-01-07 03:48:54'),(1394,'en','Set Currency Formats','Set Currency Formats','2021-01-07 03:48:54','2021-01-07 03:48:54'),(1395,'en','Symbol Format','Symbol Format','2021-01-07 03:48:54','2021-01-07 03:48:54'),(1396,'en','Decimal Separator','Decimal Separator','2021-01-07 03:48:54','2021-01-07 03:48:54'),(1397,'en','No of decimals','No of decimals','2021-01-07 03:48:54','2021-01-07 03:48:54'),(1398,'en','All Currencies','All Currencies','2021-01-07 03:48:54','2021-01-07 03:48:54'),(1399,'en','Add New Currency','Add New Currency','2021-01-07 03:48:54','2021-01-07 03:48:54'),(1400,'en','Currency name','Currency name','2021-01-07 03:48:54','2021-01-07 03:48:54'),(1401,'en','Currency symbol','Currency symbol','2021-01-07 03:48:54','2021-01-07 03:48:54'),(1402,'en','Currency code','Currency code','2021-01-07 03:48:54','2021-01-07 03:48:54'),(1403,'en','Currency Status updated successfully','Currency Status updated successfully','2021-01-07 03:48:54','2021-01-07 03:48:54'),(1404,'en','Symbol','Symbol','2021-01-07 03:49:02','2021-01-07 03:49:02'),(1405,'en','Currency updated successfully','Currency updated successfully','2021-01-07 03:49:21','2021-01-07 03:49:21'),(1406,'en','Filter by date','Filter by date','2021-01-07 03:49:59','2021-01-07 03:49:59'),(1407,'en','Install/Update Addon','Install/Update Addon','2021-01-07 03:50:38','2021-01-07 03:50:38'),(1408,'en','No Addon Installed','No Addon Installed','2021-01-07 03:50:38','2021-01-07 03:50:38'),(1409,'en','Install/Update','Install/Update','2021-01-07 03:50:42','2021-01-07 03:50:42'),(1410,'en','Addon nstalled successfully','Addon nstalled successfully','2021-01-07 03:50:57','2021-01-07 03:50:57'),(1411,'en','This is used for search. Input those words by which cutomer can find this product.','This is used for search. Input those words by which cutomer can find this product.','2021-01-07 03:51:06','2021-01-07 03:51:06'),(1412,'en','These images are visible in product details page gallery. Use 600x600 sizes images.','These images are visible in product details page gallery. Use 600x600 sizes images.','2021-01-07 03:51:06','2021-01-07 03:51:06'),(1413,'en','This image is visible in all product box. Use 300x300 sizes image. Keep some blank space around main object of your image as we had to crop some edge in different devices to make it responsive.','This image is visible in all product box. Use 300x300 sizes image. Keep some blank space around main object of your image as we had to crop some edge in different devices to make it responsive.','2021-01-07 03:51:06','2021-01-07 03:51:06'),(1414,'en','Use proper link without extra parameter. Don\'t use short share link/embeded iframe code.','Use proper link without extra parameter. Don\'t use short share link/embeded iframe code.','2021-01-07 03:51:06','2021-01-07 03:51:06'),(1415,'en','Save Product','Save Product','2021-01-07 03:51:06','2021-01-07 03:51:06'),(1416,'en','Product has been inserted successfully','Product has been inserted successfully','2021-01-07 03:51:30','2021-01-07 03:51:30'),(1417,'en','Translatable','Translatable','2021-01-07 03:51:36','2021-01-07 03:51:36'),(1418,'en','Search your files','Search your files','2021-01-07 03:51:57','2021-01-07 03:51:57'),(1419,'en','Use Phone Instead','Use Phone Instead','2021-01-07 06:23:36','2021-01-07 06:23:36'),(1420,'en','Parent Category','Parent Category','2021-01-08 03:04:52','2021-01-08 03:04:52'),(1421,'en','Category Information','Category Information','2021-01-08 03:04:57','2021-01-08 03:04:57'),(1422,'en','No Parent','No Parent','2021-01-08 03:04:57','2021-01-08 03:04:57'),(1423,'en','Physical','Physical','2021-01-08 03:04:57','2021-01-08 03:04:57'),(1424,'en','Digital','Digital','2021-01-08 03:04:57','2021-01-08 03:04:57'),(1425,'en','200x200','200x200','2021-01-08 03:04:57','2021-01-08 03:04:57'),(1426,'en','32x32','32x32','2021-01-08 03:04:57','2021-01-08 03:04:57'),(1427,'en','Category has been updated successfully','Category has been updated successfully','2021-01-08 03:05:16','2021-01-08 03:05:16'),(1428,'en','Category has been inserted successfully','Category has been inserted successfully','2021-01-08 04:21:05','2021-01-08 04:21:05'),(1429,'en','Step 1','Step 1','2021-01-08 04:50:52','2021-01-08 04:50:52'),(1430,'en','Download the skeleton file and fill it with proper data','Download the skeleton file and fill it with proper data','2021-01-08 04:50:52','2021-01-08 04:50:52'),(1431,'en','You can download the example file to understand how the data must be filled','You can download the example file to understand how the data must be filled','2021-01-08 04:50:52','2021-01-08 04:50:52'),(1432,'en','Once you have downloaded and filled the skeleton file, upload it in the form below and submit','Once you have downloaded and filled the skeleton file, upload it in the form below and submit','2021-01-08 04:50:52','2021-01-08 04:50:52'),(1433,'en','After uploading products you need to edit them and set product\'s images and choices','After uploading products you need to edit them and set product\'s images and choices','2021-01-08 04:50:52','2021-01-08 04:50:52'),(1434,'en','Step 2','Step 2','2021-01-08 04:50:52','2021-01-08 04:50:52'),(1435,'en','Category and Brand should be in numerical id','Category and Brand should be in numerical id','2021-01-08 04:50:52','2021-01-08 04:50:52'),(1436,'en','You can download the pdf to get Category and Brand id','You can download the pdf to get Category and Brand id','2021-01-08 04:50:52','2021-01-08 04:50:52'),(1437,'en','Upload Product File','Upload Product File','2021-01-08 04:50:52','2021-01-08 04:50:52'),(1438,'en','Products imported successfully','Products imported successfully','2021-01-08 05:07:16','2021-01-08 05:07:16'),(1439,'en','Product has been duplicated successfully','Product has been duplicated successfully','2021-01-08 09:31:36','2021-01-08 09:31:36'),(1440,'en','Iyzico','Iyzico','2021-01-10 02:59:08','2021-01-10 02:59:08'),(1441,'en','Your order has been placed','Your order has been placed','2021-01-10 02:59:38','2021-01-10 02:59:38'),(1442,'en','Your order has been placed successfully','Your order has been placed successfully','2021-01-10 02:59:38','2021-01-10 02:59:38'),(1443,'en','Page has been updated successfully','Page has been updated successfully','2021-01-11 01:45:02','2021-01-11 01:45:02'),(1444,'en','Cookies Agreement','Cookies Agreement','2021-01-11 01:48:36','2021-01-11 01:48:36'),(1445,'en','Cookies Agreement Text','Cookies Agreement Text','2021-01-11 01:48:36','2021-01-11 01:48:36'),(1446,'en','Show Cookies Agreement?','Show Cookies Agreement?','2021-01-11 01:48:36','2021-01-11 01:48:36'),(1447,'en','HTTPS Activation','HTTPS Activation','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1448,'en','Maintenance Mode','Maintenance Mode','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1449,'en','Maintenance Mode Activation','Maintenance Mode Activation','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1450,'en','Classified Product Activate','Classified Product Activate','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1451,'en','Classified Product','Classified Product','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1452,'en','Business Related','Business Related','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1453,'en','Vendor System Activation','Vendor System Activation','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1454,'en','Wallet System Activation','Wallet System Activation','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1455,'en','Coupon System Activation','Coupon System Activation','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1456,'en','Pickup Point Activation','Pickup Point Activation','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1457,'en','Conversation Activation','Conversation Activation','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1458,'en','Guest Checkout Activation','Guest Checkout Activation','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1459,'en','Category-based Commission','Category-based Commission','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1460,'en','After activate this option Seller commision will be disabled and You need to set commission on each category otherwise Admin will not get any commision','After activate this option Seller commision will be disabled and You need to set commission on each category otherwise Admin will not get any commision','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1461,'en','Set Commisssion Now','Set Commisssion Now','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1462,'en','Email Verification','Email Verification','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1463,'en','Payment Related','Payment Related','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1464,'en','Paypal Payment Activation','Paypal Payment Activation','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1465,'en','You need to configure Paypal correctly to enable this feature','You need to configure Paypal correctly to enable this feature','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1466,'en','Stripe Payment Activation','Stripe Payment Activation','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1467,'en','SSlCommerz Activation','SSlCommerz Activation','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1468,'en','Instamojo Payment Activation','Instamojo Payment Activation','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1469,'en','You need to configure Instamojo Payment correctly to enable this feature','You need to configure Instamojo Payment correctly to enable this feature','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1470,'en','Razor Pay Activation','Razor Pay Activation','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1471,'en','You need to configure Razor correctly to enable this feature','You need to configure Razor correctly to enable this feature','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1472,'en','PayStack Activation','PayStack Activation','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1473,'en','You need to configure PayStack correctly to enable this feature','You need to configure PayStack correctly to enable this feature','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1474,'en','VoguePay Activation','VoguePay Activation','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1475,'en','You need to configure VoguePay correctly to enable this feature','You need to configure VoguePay correctly to enable this feature','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1476,'en','Payhere Activation','Payhere Activation','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1477,'en','Ngenius Activation','Ngenius Activation','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1478,'en','You need to configure Ngenius correctly to enable this feature','You need to configure Ngenius correctly to enable this feature','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1479,'en','Iyzico Activation','Iyzico Activation','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1480,'en','You need to configure iyzico correctly to enable this feature','You need to configure iyzico correctly to enable this feature','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1481,'en','Cash Payment Activation','Cash Payment Activation','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1482,'en','Social Media Login','Social Media Login','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1483,'en','Facebook login','Facebook login','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1484,'en','You need to configure Facebook Client correctly to enable this feature','You need to configure Facebook Client correctly to enable this feature','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1485,'en','Google login','Google login','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1486,'en','You need to configure Google Client correctly to enable this feature','You need to configure Google Client correctly to enable this feature','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1487,'en','Twitter login','Twitter login','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1488,'en','You need to configure Twitter Client correctly to enable this feature','You need to configure Twitter Client correctly to enable this feature','2021-01-11 07:23:16','2021-01-11 07:23:16'),(1489,'en','We have limited banner height to maintain UI. We had to crop from both left & right side in view for different devices to make it responsive. Before designing banner keep these points in mind.','We have limited banner height to maintain UI. We had to crop from both left & right side in view for different devices to make it responsive. Before designing banner keep these points in mind.','2021-01-11 07:24:03','2021-01-11 07:24:03'),(1490,'en','All Flash Deals','All Flash Deals','2021-01-13 01:24:48','2021-01-13 01:24:48'),(1491,'en','Create New Flash Deal','Create New Flash Deal','2021-01-13 01:24:48','2021-01-13 01:24:48'),(1492,'en','#FFFFFF','#FFFFFF','2021-01-13 01:24:51','2021-01-13 01:24:51'),(1493,'en','This image is shown as cover banner in flash deal details page.','This image is shown as cover banner in flash deal details page.','2021-01-13 01:24:51','2021-01-13 01:24:51'),(1494,'en','Flash Deal has been inserted successfully','Flash Deal has been inserted successfully','2021-01-13 01:26:14','2021-01-13 01:26:14'),(1495,'en','Flash deal status updated successfully','Flash deal status updated successfully','2021-01-13 01:26:26','2021-01-13 01:26:26'),(1496,'en','Flash Deal has been updated successfully','Flash Deal has been updated successfully','2021-01-13 01:28:01','2021-01-13 01:28:01'),(1497,'en','Language has been deleted successfully','Language has been deleted successfully','2021-01-13 01:33:16','2021-01-13 01:33:16'),(1498,'en','Category has been deleted successfully','Category has been deleted successfully','2021-01-13 06:11:32','2021-01-13 06:11:32'),(1499,'en','All uploaded files','All uploaded files','2021-01-14 02:24:50','2021-01-14 02:24:50'),(1500,'en','Upload New File','Upload New File','2021-01-14 02:24:50','2021-01-14 02:24:50'),(1501,'en','All files','All files','2021-01-14 02:24:50','2021-01-14 02:24:50'),(1502,'en','Search','Search','2021-01-14 02:24:50','2021-01-14 02:24:50'),(1503,'en','Details Info','Details Info','2021-01-14 02:24:50','2021-01-14 02:24:50'),(1504,'en','Copy Link','Copy Link','2021-01-14 02:24:50','2021-01-14 02:24:50'),(1505,'en','Are you sure to delete this file?','Are you sure to delete this file?','2021-01-14 02:24:51','2021-01-14 02:24:51'),(1506,'en','File Info','File Info','2021-01-14 02:24:51','2021-01-14 02:24:51'),(1507,'en','Link copied to clipboard','Link copied to clipboard','2021-01-14 02:24:51','2021-01-14 02:24:51'),(1508,'en','Oops, unable to copy','Oops, unable to copy','2021-01-14 02:24:51','2021-01-14 02:24:51'),(1509,'en','Sendmail','Sendmail','2021-01-14 03:38:07','2021-01-14 03:38:07'),(1510,'en','Mailgun','Mailgun','2021-01-14 03:38:07','2021-01-14 03:38:07'),(1511,'en','MAIL HOST','MAIL HOST','2021-01-14 03:38:07','2021-01-14 03:38:07'),(1512,'en','MAIL PORT','MAIL PORT','2021-01-14 03:38:07','2021-01-14 03:38:07'),(1513,'en','MAIL USERNAME','MAIL USERNAME','2021-01-14 03:38:07','2021-01-14 03:38:07'),(1514,'en','MAIL PASSWORD','MAIL PASSWORD','2021-01-14 03:38:07','2021-01-14 03:38:07'),(1515,'en','MAIL ENCRYPTION','MAIL ENCRYPTION','2021-01-14 03:38:07','2021-01-14 03:38:07'),(1516,'en','MAIL FROM ADDRESS','MAIL FROM ADDRESS','2021-01-14 03:38:07','2021-01-14 03:38:07'),(1517,'en','MAIL FROM NAME','MAIL FROM NAME','2021-01-14 03:38:07','2021-01-14 03:38:07'),(1518,'en','MAILGUN DOMAIN','MAILGUN DOMAIN','2021-01-14 03:38:07','2021-01-14 03:38:07'),(1519,'en','MAILGUN SECRET','MAILGUN SECRET','2021-01-14 03:38:07','2021-01-14 03:38:07'),(1520,'en','Save Configuration','Save Configuration','2021-01-14 03:38:07','2021-01-14 03:38:07'),(1521,'en','Test SMTP configuration','Test SMTP configuration','2021-01-14 03:38:07','2021-01-14 03:38:07'),(1522,'en','Enter your email address','Enter your email address','2021-01-14 03:38:07','2021-01-14 03:38:07'),(1523,'en','Send test email','Send test email','2021-01-14 03:38:07','2021-01-14 03:38:07'),(1524,'en','Instruction','Instruction','2021-01-14 03:38:07','2021-01-14 03:38:07'),(1525,'en','Please be carefull when you are configuring SMTP. For incorrect configuration you will get error at the time of order place, new registration, sending newsletter.','Please be carefull when you are configuring SMTP. For incorrect configuration you will get error at the time of order place, new registration, sending newsletter.','2021-01-14 03:38:07','2021-01-14 03:38:07'),(1526,'en','For Non-SSL','For Non-SSL','2021-01-14 03:38:07','2021-01-14 03:38:07'),(1527,'en','Select sendmail for Mail Driver if you face any issue after configuring smtp as Mail Driver ','Select sendmail for Mail Driver if you face any issue after configuring smtp as Mail Driver ','2021-01-14 03:38:07','2021-01-14 03:38:07'),(1528,'en','Set Mail Host according to your server Mail Client Manual Settings','Set Mail Host according to your server Mail Client Manual Settings','2021-01-14 03:38:07','2021-01-14 03:38:07'),(1529,'en','Set Mail port as 587','Set Mail port as 587','2021-01-14 03:38:07','2021-01-14 03:38:07'),(1530,'en','Set Mail Encryption as ssl if you face issue with tls','Set Mail Encryption as ssl if you face issue with tls','2021-01-14 03:38:07','2021-01-14 03:38:07'),(1531,'en','For SSL','For SSL','2021-01-14 03:38:07','2021-01-14 03:38:07'),(1532,'en','Set Mail port as 465','Set Mail port as 465','2021-01-14 03:38:07','2021-01-14 03:38:07'),(1533,'en','Set Mail Encryption as ssl','Set Mail Encryption as ssl','2021-01-14 03:38:07','2021-01-14 03:38:07'),(1534,'en','New page has been created successfully','New page has been created successfully','2021-01-14 03:55:45','2021-01-14 03:55:45'),(1535,'en','Page has been deleted successfully','Page has been deleted successfully','2021-01-14 04:03:59','2021-01-14 04:03:59'),(1536,'en','Iyzico Credential','Iyzico Credential','2021-01-14 08:05:14','2021-01-14 08:05:14'),(1537,'en','IYZICO_API_KEY','IYZICO_API_KEY','2021-01-14 08:05:14','2021-01-14 08:05:14'),(1538,'en','IYZICO API KEY','IYZICO API KEY','2021-01-14 08:05:14','2021-01-14 08:05:14'),(1539,'en','IYZICO_SECRET_KEY','IYZICO_SECRET_KEY','2021-01-14 08:05:14','2021-01-14 08:05:14'),(1540,'en','IYZICO SECRET KEY','IYZICO SECRET KEY','2021-01-14 08:05:14','2021-01-14 08:05:14'),(1541,'en','IYZICO Sandbox Mode','IYZICO Sandbox Mode','2021-01-14 08:05:14','2021-01-14 08:05:14'),(1542,'en','Update Currency','Update Currency','2021-01-14 08:12:48','2021-01-14 08:12:48'),(1543,'en','All Customers','All Customers','2021-01-16 01:49:41','2021-01-16 01:49:41'),(1544,'en','Type email or name & Enter','Type email or name & Enter','2021-01-16 01:49:41','2021-01-16 01:49:41'),(1545,'en','Package','Package','2021-01-16 01:49:41','2021-01-16 01:49:41'),(1546,'en','Wallet Balance','Wallet Balance','2021-01-16 01:49:41','2021-01-16 01:49:41'),(1547,'en','Log in as this Customer','Log in as this Customer','2021-01-16 01:49:41','2021-01-16 01:49:41'),(1548,'en','Ban this Customer','Ban this Customer','2021-01-16 01:49:41','2021-01-16 01:49:41'),(1549,'en','Do you really want to ban this Customer?','Do you really want to ban this Customer?','2021-01-16 01:49:41','2021-01-16 01:49:41'),(1550,'en','Proceed!','Proceed!','2021-01-16 01:49:41','2021-01-16 01:49:41'),(1551,'en','Do you really want to unban this Customer?','Do you really want to unban this Customer?','2021-01-16 01:49:41','2021-01-16 01:49:41'),(1552,'en','Google Login Credential','Google Login Credential','2021-01-21 06:07:18','2021-01-21 06:07:18'),(1553,'en','Client ID','Client ID','2021-01-21 06:07:18','2021-01-21 06:07:18'),(1554,'en','Google Client ID','Google Client ID','2021-01-21 06:07:18','2021-01-21 06:07:18'),(1555,'en','Client Secret','Client Secret','2021-01-21 06:07:18','2021-01-21 06:07:18'),(1556,'en','Google Client Secret','Google Client Secret','2021-01-21 06:07:18','2021-01-21 06:07:18'),(1557,'en','Facebook Login Credential','Facebook Login Credential','2021-01-21 06:07:18','2021-01-21 06:07:18'),(1558,'en','App ID','App ID','2021-01-21 06:07:18','2021-01-21 06:07:18'),(1559,'en','Facebook Client ID','Facebook Client ID','2021-01-21 06:07:18','2021-01-21 06:07:18'),(1560,'en','App Secret','App Secret','2021-01-21 06:07:18','2021-01-21 06:07:18'),(1561,'en','Facebook Client Secret','Facebook Client Secret','2021-01-21 06:07:18','2021-01-21 06:07:18'),(1562,'en','Twitter Login Credential','Twitter Login Credential','2021-01-21 06:07:18','2021-01-21 06:07:18'),(1563,'en','Twitter Client ID','Twitter Client ID','2021-01-21 06:07:18','2021-01-21 06:07:18'),(1564,'en','Twitter Client Secret','Twitter Client Secret','2021-01-21 06:07:18','2021-01-21 06:07:18'),(1565,'en','Cod','Cod','2021-01-21 09:47:31','2021-01-21 09:47:31');
/*!40000 ALTER TABLE `translations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `uploads`
--

DROP TABLE IF EXISTS `uploads`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `uploads` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `file_original_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `file_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_id` int(11) DEFAULT NULL,
  `file_size` int(11) DEFAULT NULL,
  `extension` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `type` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `deleted_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2069 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `uploads`
--

LOCK TABLES `uploads` WRITE;
/*!40000 ALTER TABLE `uploads` DISABLE KEYS */;
INSERT INTO `uploads` (`id`, `file_original_name`, `file_name`, `user_id`, `file_size`, `extension`, `type`, `created_at`, `updated_at`, `deleted_at`) VALUES (1,'shawls','uploads/all/2sBnhzojmIeuOPC50d8zd4JqTDvliqT306Ed5NTa.jpg',9,1218404,'jpg','image','2021-01-07 03:53:14','2021-01-07 03:53:14',NULL),(2,'placeholder','uploads/all/o68n9j5kBxU9y6qICszFRNj9syvmaKNsl5rf5u4L.jpg',9,4065,'jpg','image','2021-01-08 03:01:47','2021-01-08 03:01:47',NULL),(3,'HU-4-ORANGE','uploads/all/1xo3bVQwxijTm1yHsGDJJsXWAYT32W1PTdpbZqVG.jpg',9,107546,'jpg','image','2021-01-08 09:34:15','2021-01-08 09:34:15',NULL),(4,'HU-4-GREEN','uploads/all/Oy5B8djfcQjVwPSADgmwoDB88l65a5YOiJalpbwd.jpg',9,102274,'jpg','image','2021-01-08 09:35:13','2021-01-08 09:35:13',NULL),(5,'HU-5-ORANGE','uploads/all/4ZegnwAyxt9ly5rlajQNvUzZEhBQ6AuREDYk3dKP.jpg',9,96984,'jpg','image','2021-01-08 09:43:17','2021-01-08 09:43:17',NULL),(6,'HU-5-GREEN','uploads/all/9sBhCCSJnSpyIL4u0psvR285Gq03tmaagSjFfnYt.jpg',9,100253,'jpg','image','2021-01-08 09:43:17','2021-01-08 09:43:17',NULL),(7,'water bottels grid 3-01','uploads/all/oU7qUQQoZD901nEOdR1BST4EuvpwI8lLJpcnaUva.jpg',9,1021507,'jpg','image','2021-01-09 02:06:56','2021-01-09 02:06:56',NULL),(8,'water bottels grid 3-04','uploads/all/N7lfqxqt04Yl24W97ZjyP6Rs5SR8KtGzcjJYIeOy.jpg',9,1012351,'jpg','image','2021-01-09 02:06:57','2021-01-09 02:06:57',NULL),(9,'water bottels grid 3-03','uploads/all/h3KC2rzzz2apQkAJwKsli2c2e0Jl70sEamowGjHh.jpg',9,880940,'jpg','image','2021-01-09 02:11:31','2021-01-09 02:11:31',NULL),(10,'water bottels grid 3-06','uploads/all/rSoTuY9kTZKm8qIATtH1LhxakLiElJnPp8qjJpUI.jpg',9,817928,'jpg','image','2021-01-09 02:11:33','2021-01-09 02:11:33',NULL),(11,'water bottels grid 4-05','uploads/all/6fUbcw890h7k3H3DI3qpygLoRqlRcIHG1TJ9w1yE.jpg',9,750864,'jpg','image','2021-01-09 02:14:20','2021-01-09 02:14:20',NULL),(12,'water bottels grid 4-02','uploads/all/yeaB8fiGButRVnxdpGpRe1rSDQJeaiiR4PCGGM17.jpg',9,1270185,'jpg','image','2021-01-09 02:14:28','2021-01-09 02:14:28',NULL),(13,'water bottels grid 4-01','uploads/all/AptxRd5z3iOL8TJ1S8jUgbRufxNjnNWar8JJDYBI.jpg',9,881400,'jpg','image','2021-01-09 02:16:41','2021-01-09 02:16:41',NULL),(14,'water bottels grid 4-04','uploads/all/QIJtEK28vrwJsWKRJ5MLqMzF07gFsCHpp7SkyfKS.jpg',9,855160,'jpg','image','2021-01-09 02:16:43','2021-01-09 02:16:43',NULL),(15,'water bottels grid 4-07','uploads/all/YjOwYzeoGHi0c4YlcypV9uCWsackRei2dmQg3XX8.jpg',9,813676,'jpg','image','2021-01-09 02:16:45','2021-01-09 02:16:45',NULL),(16,'water bottels grid 4-03','uploads/all/GuXW5Iw4ZC8ANXuE5Cyh5vOBcsUIzV4iAYVi1uyB.jpg',9,798162,'jpg','image','2021-01-09 02:19:58','2021-01-09 02:19:58',NULL),(17,'water bottels grid 4-06','uploads/all/VcB9N22Yv9WrfLJSTs0fJ5H7OryaNkBakgXk5Yru.jpg',9,593349,'jpg','image','2021-01-09 02:20:00','2021-01-09 02:20:00',NULL),(18,'water bottels grid 4-08','uploads/all/sdIOPPvnOtkIRvvztlenkukcqbS3OulrUeikxeNZ.jpg',9,699680,'jpg','image','2021-01-09 02:20:01','2021-01-09 02:20:01',NULL),(19,'water bottels grid 4-09','uploads/all/S4Le2mUKeF0IOKY4yrb5kTHj62izg3u2ZtIHT261.jpg',9,847792,'jpg','image','2021-01-09 02:20:01','2021-01-09 02:20:01',NULL),(20,'HU-15-BLUE','uploads/all/pXrpz8H0f5YZ44O0MK40Swg7eNv8P7jTDLp0qnaw.jpg',9,77819,'jpg','image','2021-01-09 02:28:34','2021-01-09 02:28:34',NULL),(21,'HU-15-GREEN','uploads/all/Ssy2UkV7GEp7v68UCFnhQUX9AhcyHNEuYvevWvsg.jpg',9,76502,'jpg','image','2021-01-09 02:28:34','2021-01-09 02:28:34',NULL),(22,'HU-15-PINK','uploads/all/E7OLI8gAFQTCZJQyN4Lg1moqI4XwTZHU6HBi0U0m.jpg',9,74484,'jpg','image','2021-01-09 02:28:35','2021-01-09 02:28:35',NULL),(23,'HU-15-PURPLE','uploads/all/rnJU2AJr3hZDIyiJtKFhyZzHU4Uj4CoitYOygWKF.jpg',9,70850,'jpg','image','2021-01-09 02:28:35','2021-01-09 02:28:35',NULL),(24,'water bottels grid 5-06','uploads/all/TjOoV2vuSg27rFUTnRq5Qeu9IHdyJQdSnRmE9e9S.jpg',9,821869,'jpg','image','2021-01-09 02:32:24','2021-01-09 02:32:24',NULL),(25,'water bottels grid 5-08','uploads/all/CRySTTdRkVfa9nM5X5APEDxYA9YhWl8ESwUNXi0d.jpg',9,901148,'jpg','image','2021-01-09 02:32:33','2021-01-09 02:32:33',NULL),(26,'water bottels grid 5-03','uploads/all/0bnFvAiePgcj4NRT5WujuEURTpyEPN8l6iDCFhwO.jpg',9,774053,'jpg','image','2021-01-09 02:33:08','2021-01-09 02:33:08',NULL),(27,'water bottels grid 5-09','uploads/all/VmhumsRTVnEtsohUzA0z138b6hBKCtdBWd68f5DN.jpg',9,868693,'jpg','image','2021-01-09 02:33:16','2021-01-09 02:33:16',NULL),(28,'water bottels grid 5-05','uploads/all/Prq4hNIdm63WosaSRq7M0ZLzaRNoDd4QQtpGfRz8.jpg',9,791778,'jpg','image','2021-01-09 02:35:55','2021-01-09 02:35:55',NULL),(29,'water bottels grid 5-02','uploads/all/XB5PawPrBjvBBG13wlc0xb4CgFuR3ZiwwIZ4TzVJ.jpg',9,1210043,'jpg','image','2021-01-09 02:35:56','2021-01-09 02:35:56',NULL),(30,'water bottels grid 5-11','uploads/all/bN5rWIzl1ysdjY65c4oa8j8WYloxlMX0HbC1TPpn.jpg',9,839483,'jpg','image','2021-01-09 02:35:58','2021-01-09 02:35:58',NULL),(31,'water bottels grid 5-10','uploads/all/VF4eMbeM7tXegQ88HvP9zF4haiCJvxgkjTg3Dsj4.jpg',9,793835,'jpg','image','2021-01-09 02:36:04','2021-01-09 02:36:04',NULL),(32,'water bottels grid 6-06','uploads/all/xvhFtIh04qjzyLH2pwdepmbpFbZXcaXqQxdvEGvf.jpg',9,673249,'jpg','image','2021-01-09 02:38:39','2021-01-09 02:38:39',NULL),(33,'water bottels grid 6-09','uploads/all/ZZ2Cqmgh2qn4ldDgelA5RoebVpgnSMOs5xiXZLlF.jpg',9,827631,'jpg','image','2021-01-09 02:38:42','2021-01-09 02:38:42',NULL),(34,'water bottels grid 6-08','uploads/all/2SjeoEbhhGF0v2jmtOTwcqbvTktzU1iT7CjTOV9g.jpg',9,679033,'jpg','image','2021-01-09 02:38:42','2021-01-09 02:38:42',NULL),(35,'water bottels grid 6-03','uploads/all/zv0IjpWE5Ml8SWoh6cAOJbYmwhwSJ0mcHB1arBuv.jpg',9,798004,'jpg','image','2021-01-09 02:41:04','2021-01-09 02:41:04',NULL),(36,'water bottels grid 6-04','uploads/all/NCVpoNIgz6YEYX7XweB42tPxQgkFMTcMNOsEiH44.jpg',9,741531,'jpg','image','2021-01-09 03:07:51','2021-01-09 03:07:51',NULL),(37,'water bottels grid 6-12','uploads/all/HX9RTYegbfuOor0PIU1rzdESvJAadMXR71XVNyIF.jpg',9,720557,'jpg','image','2021-01-09 03:07:51','2021-01-09 03:07:51',NULL),(38,'water bottels grid 6-01','uploads/all/ohjIWTj4tlKIbdwR3KmstWmroQXBPGmS27YSTV7D.jpg',9,805482,'jpg','image','2021-01-09 03:07:51','2021-01-09 03:07:51',NULL),(39,'water bottels grid 6-07','uploads/all/YLSoQJUWtGJCc0JPBdtzzGqOpitan7n15DivdkYD.jpg',9,721390,'jpg','image','2021-01-09 03:07:54','2021-01-09 03:07:54',NULL),(40,'water bottels grid 7-07','uploads/all/4kVkW4H8Es6bAyyXWTpWITsOJvpHZ2ZeD4etO6RN.jpg',9,1085085,'jpg','image','2021-01-09 03:12:46','2021-01-09 03:12:46',NULL),(41,'water bottels grid 7-01','uploads/all/p0bKfw7rZ1XmEura8N9gtLNDM6eU9MtltVRKU93H.jpg',9,1183242,'jpg','image','2021-01-09 03:12:47','2021-01-09 03:12:47',NULL),(42,'water bottels grid 7-04','uploads/all/CXLTpjH9fomdbfu1A9BDocX98YH9iQNo5qo4TVcG.jpg',9,1211962,'jpg','image','2021-01-09 03:12:50','2021-01-09 03:12:50',NULL),(43,'water bottels grid 7-05','uploads/all/r7k1gjpSf7reWAiIpNPapsoxYmaJcrN5JAs80JIm.jpg',9,1310307,'jpg','image','2021-01-09 03:15:45','2021-01-09 03:15:45',NULL),(44,'water bottels grid 7-10','uploads/all/WWLiaBky2VLxR4AVoeJIqpcITQZTnNK9GNGt3ZzE.jpg',9,1208802,'jpg','image','2021-01-09 03:15:47','2021-01-09 03:15:47',NULL),(45,'water bottels grid 7-02','uploads/all/uatlhrJfX1fWoSK0QpiJ3HaBWGezeDrngUEBpzEh.jpg',9,1528186,'jpg','image','2021-01-09 03:15:48','2021-01-09 03:15:48',NULL),(46,'HU-24-BLUE','uploads/all/7HHn1i9Z09wPrihOb7OXvCMesOZgFC2Yjw0F2vps.jpg',9,82211,'jpg','image','2021-01-09 03:21:10','2021-01-09 03:21:10',NULL),(47,'HU-24-GREEN','uploads/all/wSbDT1Bt5Z0Wz7lPAlz5XjtZWskUL2QXQNqYffx2.jpg',9,71655,'jpg','image','2021-01-09 03:21:10','2021-01-09 03:21:10',NULL),(48,'HU-24-PINK','uploads/all/m5H34bg1ghdDspaVRB6XVLLOiYzUFyI0Eakj8ice.jpg',9,77031,'jpg','image','2021-01-09 03:21:10','2021-01-09 03:21:10',NULL),(49,'HU-24-PURPLE','uploads/all/TBHorILhhLnbYSJoNt4hXEhCHBobmoY1cFWDD3eC.jpg',9,70520,'jpg','image','2021-01-09 03:21:11','2021-01-09 03:21:11',NULL),(50,'water bottels grid 6-05','uploads/all/kSZ4S7gvpB9hKT6zZPC9ok8waq0O3Xrer3T8gLtV.jpg',9,772489,'jpg','image','2021-01-09 03:23:10','2021-01-09 03:23:10',NULL),(51,'water bottels grid 6-10','uploads/all/WkDH4UOp6iYssW0S6tvKqrAyFbKW5tBnPakFb32q.jpg',9,811230,'jpg','image','2021-01-09 03:23:10','2021-01-09 03:23:10',NULL),(52,'water bottels grid 6-11','uploads/all/YLozeAglAjpGAAxmyb1uXR7kBZvdcaqKNFcTivir.jpg',9,840075,'jpg','image','2021-01-09 03:23:12','2021-01-09 03:23:12',NULL),(53,'water bottels grid 6-02','uploads/all/AugUytGxUWjJOq4xCboGmtenUXHYHRm4ZTTSTGnz.jpg',9,985765,'jpg','image','2021-01-09 03:23:17','2021-01-09 03:23:17',NULL),(54,'HU-27-BLUE','uploads/all/Q2gOWB24sdKEuuKEaQM43p9KRYWcfZNwV3y7eho5.jpg',9,61686,'jpg','image','2021-01-09 03:28:41','2021-01-09 03:28:41',NULL),(55,'HU-27-PINK','uploads/all/P33wb9IbeA65eC7bqrs8j99vYPgQNf3aTm344tBH.jpg',9,52746,'jpg','image','2021-01-09 03:28:41','2021-01-09 03:28:41',NULL),(56,'HU-27-GREEN','uploads/all/ctaEbaz71LxmlDvVzwpJZnmWezIoXTzEuWGjTtU4.jpg',9,56503,'jpg','image','2021-01-09 03:28:41','2021-01-09 03:28:41',NULL),(57,'HU-27-PURPLE','uploads/all/vK9C7uoKgmk3i98taVU8JaqgKO1UCa6FR2p8k29i.jpg',9,54520,'jpg','image','2021-01-09 03:28:41','2021-01-09 03:28:41',NULL),(58,'water bottels grid-01','uploads/all/YzpJ0Nw4QQUps0a3ifoNWzRgAYRKRprsX2xXN6NJ.jpg',9,683545,'jpg','image','2021-01-09 03:32:49','2021-01-09 03:32:49',NULL),(59,'water bottels grid-02','uploads/all/KX8e2k6hTJtIcZVW5dnF5PUULOPYKsr8RDdfs5XY.jpg',9,918698,'jpg','image','2021-01-09 03:32:50','2021-01-09 03:32:50',NULL),(60,'HU-28-GREEN','uploads/all/SKLqL9teWzXFOlsmnxhxBsKjqSWbwbhWrNI5VOad.jpg',9,58462,'jpg','image','2021-01-09 03:33:27','2021-01-09 03:33:27',NULL),(61,'HU-28-PINK','uploads/all/pWQbTDhhShB2ergq6o5qfDBghKPDqbZnYMGyuhS5.jpg',9,58586,'jpg','image','2021-01-09 03:33:28','2021-01-09 03:33:28',NULL),(62,'HU-28-PURPLE','uploads/all/JrY9SFk5GyTUCEEeRt14NCzeZY6birLVWAyJvVLk.jpg',9,56244,'jpg','image','2021-01-09 03:33:28','2021-01-09 03:33:28',NULL),(63,'water bottels grid-02','uploads/all/0yNtprUUUg4TZjiCXoKdHvxusrvF98FHlue3A0sv.jpg',9,918698,'jpg','image','2021-01-09 03:37:02','2021-01-09 03:37:02',NULL),(64,'HU-29-GREEN','uploads/all/wqmCkSJpAKf8IiWxDIWdgmZDofCJ2iWFjy76QQwR.jpg',9,70340,'jpg','image','2021-01-09 03:37:36','2021-01-09 03:37:36',NULL),(65,'HU-29-PINK','uploads/all/CXiaFloCj1EjoYzJ2JoKsERXp08gLIgLS0rap4Yc.jpg',9,71785,'jpg','image','2021-01-09 03:37:36','2021-01-09 03:37:36',NULL),(66,'HU-29-PURPLE','uploads/all/yEHSID3fV3lTG53kaNOWRed6pSR15oqG3IiO2X2K.jpg',9,67409,'jpg','image','2021-01-09 03:37:36','2021-01-09 03:37:36',NULL),(67,'water bottels grid-09','uploads/all/xU32hZcd8hivahU5vkxn52gSPbZ6LhVrB3m6PIh1.jpg',9,639210,'jpg','image','2021-01-09 03:40:41','2021-01-09 03:40:41',NULL),(68,'water bottels grid-03','uploads/all/uFZkWSbBBWwcQpAggyc87VYXgZ6q9q7D9QwQkfJ3.jpg',9,703157,'jpg','image','2021-01-09 03:40:41','2021-01-09 03:40:41',NULL),(69,'water bottels grid-08','uploads/all/uk0HAC2BSFIJstNFgSC2yq8wEpdmxuFWZEqLuXPO.jpg',9,611518,'jpg','image','2021-01-09 03:40:44','2021-01-09 03:40:44',NULL),(70,'water bottels grid-06','uploads/all/SakqrEBdSq7wxsEZg9tQIuP5rG5TOPioPxjP4eRX.jpg',9,631141,'jpg','image','2021-01-09 03:40:44','2021-01-09 03:40:44',NULL),(71,'SB-4-BLUE','uploads/all/PMGRKgXe4tOU0VoVzQDVTHdCdqkDHsw2ob7ED28S.jpg',9,90213,'jpg','image','2021-01-09 03:46:51','2021-01-09 03:46:51',NULL),(72,'SB-4-PINK','uploads/all/KcaOTC1yAjekC3g5nTZlWu8mdYXVH2siqWOtbM6y.jpg',9,86015,'jpg','image','2021-01-09 03:46:51','2021-01-09 03:46:51',NULL),(73,'SB-4-GREEN','uploads/all/EdguzL9ZLreRc4DOTWTxGiYXklzA7vL9SZ20BEbe.jpg',9,88837,'jpg','image','2021-01-09 03:46:51','2021-01-09 03:46:51',NULL),(74,'SB-4-PURPLE','uploads/all/Te6FOW7HeFbaC8Y1fyLokSQDMbqctVkcIntW1fVs.jpg',9,86045,'jpg','image','2021-01-09 03:46:51','2021-01-09 03:46:51',NULL),(75,'SB-12-BLUE','uploads/all/AKR6ccighcOgTacoXoLnYimEnknKDIubDMCPmyEI.jpg',9,59164,'jpg','image','2021-01-09 03:50:33','2021-01-09 03:50:33',NULL),(76,'SB-12-PINK','uploads/all/nUesL4B1SQRFPE82pKgRUtdHGi8WeafjsLEHQ64n.jpg',9,42168,'jpg','image','2021-01-09 03:50:33','2021-01-09 03:50:33',NULL),(77,'SB-12-GREEN','uploads/all/2z3S9YqDcMWGmYlLg8zLcbfBbdjfWLz8rdy0708H.jpg',9,56591,'jpg','image','2021-01-09 03:50:33','2021-01-09 03:50:33',NULL),(78,'SB-12-PURPLE','uploads/all/ZUxZjRsHFSvo9ML9rFMH2ulqdCfKUevXR4E0fnPg.jpg',9,50314,'jpg','image','2021-01-09 03:50:33','2021-01-09 03:50:33',NULL),(79,'SB-5-GREEN','uploads/all/hWtWElHf55Zg9KG7ZizVv4tvWczTAAzU2OMQXmSE.jpg',9,77353,'jpg','image','2021-01-09 03:52:52','2021-01-09 03:52:52',NULL),(80,'SB-5-PINK','uploads/all/kUQFK5J22Ilo4TNGE9cUpfWI2dQCvleE8py6kYeG.jpg',9,68227,'jpg','image','2021-01-09 03:52:53','2021-01-09 03:52:53',NULL),(81,'SB-5-BLUE','uploads/all/w4wPdScrIvbfMGPJUCUMykjiwmUrMQU92iTa9zxY.jpg',9,72012,'jpg','image','2021-01-09 03:52:53','2021-01-09 03:52:53',NULL),(82,'SB-21-PINK','uploads/all/B35r92EttLEn9SfdIjXnjQ8ajGhRWYHhHiRElkBN.jpg',9,85235,'jpg','image','2021-01-09 03:54:09','2021-01-09 03:54:09',NULL),(83,'SB-21-BLUE','uploads/all/QM65vyugmGj9bBvc9uCiFZhGlNg5L6QutWs5F7PM.jpg',9,89412,'jpg','image','2021-01-09 03:54:09','2021-01-09 03:54:09',NULL),(84,'SB-21-GREEN','uploads/all/GevWK9Ruw2sYHcfMasL2qxALoVrfUu2PsPR2w1bL.jpg',9,88085,'jpg','image','2021-01-09 03:54:09','2021-01-09 03:54:09',NULL),(85,'SB-21-PURPLE','uploads/all/KrACCMXRJVaEDaPKwI3rzY2rfHPecgsNt3bLaqpA.jpg',9,88644,'jpg','image','2021-01-09 03:54:09','2021-01-09 03:54:09',NULL),(86,'SB-11-PINK','uploads/all/6GOQs1RSnKRuRzNOlgyoqtLJbQn0HFkpi2c65Z16.jpg',9,86522,'jpg','image','2021-01-09 04:03:09','2021-01-09 04:03:09',NULL),(87,'SB-11-GREEN','uploads/all/86b5NrNIT4B7Jkf22ROfg8vF67PA0TYWicFFYtyS.jpg',9,86475,'jpg','image','2021-01-09 04:03:09','2021-01-09 04:03:09',NULL),(88,'SB-11-PURPLE','uploads/all/jmkzAQ9cm4Q4flkBbhbeYf93qokL5pRz5cJFNU0K.jpg',9,91225,'jpg','image','2021-01-09 04:03:09','2021-01-09 04:03:09',NULL),(89,'SB-11-BLUE','uploads/all/xQTwzuRBywguGPzxenX5VddaZCRCnuKgs1yngkyH.jpg',9,89468,'jpg','image','2021-01-09 04:03:09','2021-01-09 04:03:09',NULL),(90,'SB-22-GREEN','uploads/all/AIomxbIzLca21IkBo4Dp4J4Q0hZAcsmbDONqTiTk.jpg',9,71963,'jpg','image','2021-01-09 04:05:49','2021-01-09 04:05:49',NULL),(91,'SB-22-PINK','uploads/all/qv9KU7mWDNchXPXrT0n7tidiIsbAC4AD9Nz6dEsG.jpg',9,70528,'jpg','image','2021-01-09 04:05:49','2021-01-09 04:05:49',NULL),(92,'SB-22-BLUE','uploads/all/WxUjvEvYG6ryHay1XJRUnbSxBDnJFVEUv5vdrmce.jpg',9,75737,'jpg','image','2021-01-09 04:05:49','2021-01-09 04:05:49',NULL),(93,'SB-22-PURPLE','uploads/all/xFUG05ZcUwQn5umVVwLTwsfIBznYhhwNLCW7mq2O.jpg',9,72375,'jpg','image','2021-01-09 04:05:49','2021-01-09 04:05:49',NULL),(94,'2030-24','uploads/all/HTuvokqLUXF5cwBxcWXyZqkm6DZ42qAAmglHpuAE.jpg',9,655961,'jpg','image','2021-01-09 04:16:33','2021-01-09 04:16:33',NULL),(95,'2030.2','uploads/all/T0OJt7l9QoNwP42dqog3G0GcaeGB93A1BSJN03SK.jpg',9,51500,'jpg','image','2021-01-09 04:17:53','2021-01-09 04:17:53',NULL),(96,'2030','uploads/all/kMNQ6c44cd2VTqF8aOl4rbAwCkjqHFSEGKCXD5rM.jpg',9,46274,'jpg','image','2021-01-09 04:17:53','2021-01-09 04:17:53',NULL),(97,'2030.1','uploads/all/4tGB9y3aIATMYTkFLCJq4t4VPMP161AusGN4phEd.jpg',9,167823,'jpg','image','2021-01-09 04:17:54','2021-01-09 04:17:54',NULL),(98,'2031-25','uploads/all/bjV8GdKagJtEb56Q6QGiUnHkKOTP6yaos1Yry5ZB.jpg',9,768466,'jpg','image','2021-01-09 04:20:12','2021-01-09 04:20:12',NULL),(99,'2031.1','uploads/all/j2tYTsvfmy2W9sqePAFGbKW1gZLvTMgHSo7pRlro.png',9,1803,'png','image','2021-01-09 04:21:23','2021-01-09 04:21:23',NULL),(100,'2031-25','uploads/all/zZ7Q4eiLKRkcFwvhkeiuTUKj0UQh7YgaxKNWdcHu.jpg',9,768466,'jpg','image','2021-01-10 10:14:40','2021-01-10 10:14:40',NULL),(101,'2044-04','uploads/all/gb4v0je0aCHbypgojvj2wbBqXnXYbBT5Hcie7cJH.jpg',9,842234,'jpg','image','2021-01-10 10:17:20','2021-01-10 10:17:20',NULL),(102,'2044.1','uploads/all/3SRlfIA76GnIvuinj052wWc4XunYqvyIB7r6WHW9.jpg',9,20577,'jpg','image','2021-01-10 10:17:52','2021-01-10 10:17:52',NULL),(103,'2044.2','uploads/all/wMjLQSxy9fyh7elTCkyMwyKnu6kMUJj2YeGs667w.jpg',9,30856,'jpg','image','2021-01-10 10:17:52','2021-01-10 10:17:52',NULL),(104,'2044','uploads/all/8fWpqa1QLxvr7VjItbufPASCkKsWaLvNIvl2aQMJ.jpg',9,19663,'jpg','image','2021-01-10 10:17:52','2021-01-10 10:17:52',NULL),(105,'2044.3','uploads/all/a1sqzxgZuq5kBv9Wb7amcmUuvUnmPAxsemuvd3f6.jpg',9,110391,'jpg','image','2021-01-10 10:17:57','2021-01-10 10:17:57',NULL),(106,'2032-28','uploads/all/ZwSIsRajtEkwomILnb8L4ZbZ1jzu7AyhQrQvr4Qx.jpg',9,826585,'jpg','image','2021-01-10 10:19:42','2021-01-10 10:19:42',NULL),(107,'2032.2','uploads/all/nyoaKGgc1CZyQiDQRG0eA7qdhTdVFMgjhPFx3TO9.jpg',9,11323,'jpg','image','2021-01-10 10:20:11','2021-01-10 10:20:11',NULL),(108,'2032.1','uploads/all/dgkzMG31GRzG7sMZT3sJgRCGyKIvaN9Eq3z5eHQB.jpg',9,69592,'jpg','image','2021-01-10 10:20:12','2021-01-10 10:20:12',NULL),(109,'2032','uploads/all/WwcAn2YG526csiCO0IMqtFj7EcBKT5no8DAe70gf.jpg',9,80623,'jpg','image','2021-01-10 10:20:13','2021-01-10 10:20:13',NULL),(110,'2033-29','uploads/all/I6TB5dqud91plQe0zhKZZJWAaejv0Ct5cCfazwQC.jpg',9,693102,'jpg','image','2021-01-10 10:22:19','2021-01-10 10:22:19',NULL),(111,'2033.1','uploads/all/yTWcMozBWEgmWSaqjHKubeJemERL7iobCt54mWUf.jpg',9,28830,'jpg','image','2021-01-10 10:22:57','2021-01-10 10:22:57',NULL),(112,'2033','uploads/all/WFALBWDqE7Tix1hGrZaJlxtkxCiH5KUcj1F9TD23.jpg',9,24762,'jpg','image','2021-01-10 10:22:57','2021-01-10 10:22:57',NULL),(113,'2033.2','uploads/all/Q7Lm5dPVfkFe3qGpbtJPZ0FwxicSSPVykLB0kIdL.jpg',9,55737,'jpg','image','2021-01-10 10:22:57','2021-01-10 10:22:57',NULL),(114,'2045-05','uploads/all/BTLH3ez98Sa57kbQZ1bjzWrelyIm3CiDzMQmchZc.jpg',9,1036371,'jpg','image','2021-01-10 10:24:54','2021-01-10 10:24:54',NULL),(115,'2045.1','uploads/all/KdRMSnC5mEKJCJwGKbK3Q7odXl6bx3FYvezJKpB4.jpg',9,31864,'jpeg','image','2021-01-10 10:25:31','2021-01-10 10:25:31',NULL),(116,'2045','uploads/all/xHfbd4ZamCk2otBAwIX7JBtp4TzKEVIhounDmUHb.jpg',9,61996,'jpeg','image','2021-01-10 10:25:33','2021-01-10 10:25:33',NULL),(117,'2045.2','uploads/all/RFjXwFTBzmPgObarKXfq03Vog43KXBSKEwyQXvDj.jpg',9,61909,'jpeg','image','2021-01-10 10:26:17','2021-01-10 10:26:17',NULL),(118,'2034-30','uploads/all/1HketC1iJGn3GAyKOLBTqxfDFzLy2la2RdxghLth.jpg',9,1160621,'jpg','image','2021-01-10 10:27:30','2021-01-10 10:27:30',NULL),(119,'2045.2','uploads/all/VCssVaD0lrjFRhXCxvqAPJfW0jWJOb9ErNMyLPWh.jpg',9,61909,'jpeg','image','2021-01-10 10:27:39','2021-01-10 10:27:39',NULL),(120,'2034.1','uploads/all/ck50nCIlipwo04kDmv9EdhYA1dRSYoqoIG9tBX2t.jpg',9,427872,'jpg','image','2021-01-10 10:27:57','2021-01-10 10:27:57',NULL),(121,'2034.2','uploads/all/o5L3K8hOLds3hDU9MzazLO55uUEpqtXAPre6W5V4.jpg',9,157011,'jpg','image','2021-01-10 10:27:57','2021-01-10 10:27:57',NULL),(122,'2034','uploads/all/WzNClyjOiSXk4Hv93gkvf8CQTpGlrGe7kfxRJmeP.jpg',9,66549,'jpg','image','2021-01-10 10:28:29','2021-01-10 10:28:29',NULL),(123,'2046-06','uploads/all/BM5fHoeKJUH2LhCwgvrFsWE3TWxnjApOJuEXW4Lz.jpg',9,1219771,'jpg','image','2021-01-10 10:30:56','2021-01-10 10:30:56',NULL),(124,'2034','uploads/all/M2KAxZgd8l3TuQUPDcSzgTSX7J1ylEhKtvY83HyT.jpg',9,66549,'jpg','image','2021-01-10 10:31:07','2021-01-10 10:31:07',NULL),(125,'2046.1','uploads/all/qMxL5b835ubivcpxQartg3OBTjZDLTrRwjWwLrA7.jpg',9,33184,'jpg','image','2021-01-10 10:31:45','2021-01-10 10:31:45',NULL),(126,'2046.2','uploads/all/gkrL9TgEsPpVdpfIijCOKC53yL46wgs5frlnNaOp.jpg',9,81332,'jpg','image','2021-01-10 10:31:45','2021-01-10 10:31:45',NULL),(127,'2046','uploads/all/LtlLdHZBD4TJluMNNoeuWEHgZUbeEJaz1XinI2KD.jpg',9,44865,'jpg','image','2021-01-10 10:31:45','2021-01-10 10:31:45',NULL),(128,'2047-07','uploads/all/nm5pYTQOJBzkhnb6mPl46gbBbUOl7MiQ81yjyC4I.jpg',9,904715,'jpg','image','2021-01-10 10:33:18','2021-01-10 10:33:18',NULL),(129,'2047','uploads/all/vLg2H65LR5mnQcdRcPTvlMSfEQzAafpQoUg041it.jpg',9,20206,'jpeg','image','2021-01-10 10:33:49','2021-01-10 10:33:49',NULL),(130,'2047.1','uploads/all/NPJwjjbzwnQzPm4jVaXT2tcERZXkT4iu1sMQulNw.png',9,146988,'png','image','2021-01-10 10:33:54','2021-01-10 10:33:54',NULL),(131,'2035-31','uploads/all/NF07Ua46whaKBTcxMBzTz5VtXPDh9VFCIXSgbmxO.jpg',9,954196,'jpg','image','2021-01-10 10:34:48','2021-01-10 10:34:48',NULL),(132,'2035.2','uploads/all/JKiO1ElgcZUzbPAuUv8GhfuwgDBUzdYKVltS0B3g.jpg',9,3020,'jpg','image','2021-01-10 10:35:12','2021-01-10 10:35:12',NULL),(133,'2035.1','uploads/all/5F4eO4o8N2uXZjr75dqIxjNCWGEHdFw2Qp6WAQTc.jpg',9,23134,'jpg','image','2021-01-10 10:35:12','2021-01-10 10:35:12',NULL),(134,'2035','uploads/all/qW1u08kBPutUaSElmcl2Yv2yn0PLloS1H3eCfItO.jpg',9,62998,'jpg','image','2021-01-10 10:35:13','2021-01-10 10:35:13',NULL),(135,'2048-08','uploads/all/v8pK9qhifKyY6ZNY6yUzpZPWbVfUvo8CgoH5icig.jpg',9,1162389,'jpg','image','2021-01-10 10:37:42','2021-01-10 10:37:42',NULL),(136,'2048.3','uploads/all/cXUIM7rXETXlpqnGbr5miwlAPddNfQfYfTtiv7mG.jpg',9,32809,'jpg','image','2021-01-10 10:38:16','2021-01-10 10:38:16',NULL),(137,'2048.2','uploads/all/RAKc8bRELr8Dcaf2EyulrWEurI3nVXixqKKodRzG.jpg',9,45628,'jpg','image','2021-01-10 10:38:17','2021-01-10 10:38:17',NULL),(138,'2048.1','uploads/all/MkUZND19Atp8TJxrDbX4J1OFuaOQpaBHK5ozAnV7.jpg',9,69591,'jpg','image','2021-01-10 10:38:17','2021-01-10 10:38:17',NULL),(139,'2048','uploads/all/hZ01hGmCLYViyqo3KPbTc1no0rzP7L6VTXO1mBGA.jpg',9,35940,'jpg','image','2021-01-10 10:38:19','2021-01-10 10:38:19',NULL),(140,'2049-09','uploads/all/e3tPqzohrKe5WkmASpgnaPiwrfRcaJpBSt2Psv7u.jpg',9,329207,'jpg','image','2021-01-10 10:39:21','2021-01-10 10:39:21',NULL),(141,'2049.1','uploads/all/PHQSFmMBrvXUOJvdLiCqTZPlBuykhc6o6MTx7x2n.jpg',9,26547,'jpg','image','2021-01-10 10:39:44','2021-01-10 10:39:44',NULL),(142,'2049.2','uploads/all/eZYypodML5wrSfPqu1Q7ovL52hhUNmtf0aBGRVcY.jpg',9,35296,'jpg','image','2021-01-10 10:39:45','2021-01-10 10:39:45',NULL),(143,'2049.3','uploads/all/P5PeFKzxNK0SAIDnJS8Y4EicznsCI84Rjm34r048.jpg',9,97990,'jpg','image','2021-01-10 10:39:46','2021-01-10 10:39:46',NULL),(144,'2049','uploads/all/lNU0mRPWZqPdRKxQRs2XOQTzHe2wFai79lRZG5gk.jpg',9,47276,'jpg','image','2021-01-10 10:39:48','2021-01-10 10:39:48',NULL),(145,'2050-10','uploads/all/qAroNcB6TMiIVYfsQsei7urR22nVT88mXxuHdrD0.jpg',9,717672,'jpg','image','2021-01-10 10:41:08','2021-01-10 10:41:08',NULL),(146,'2050.1','uploads/all/wriSfkhhyiJCwTGNCmszSv6Q3G8heKZoImBhU9EG.jpg',9,59442,'jpg','image','2021-01-10 10:41:30','2021-01-10 10:41:30',NULL),(147,'2050.2','uploads/all/xySy0jfWZBV2NVkjqv2yaei8UzRO9STBFOVk2onM.jpg',9,80321,'jpg','image','2021-01-10 10:41:32','2021-01-10 10:41:32',NULL),(148,'2050','uploads/all/V7Hk2i0dIXqVXB0MR3wODQ3dhxkc9t94N827TebV.jpg',9,51839,'jpg','image','2021-01-10 10:41:35','2021-01-10 10:41:35',NULL),(149,'2051-11','uploads/all/TbDcOFxcSObabrYUTWKbFSHrPirsJrBJDSfZet9H.jpg',9,924951,'jpg','image','2021-01-10 10:43:21','2021-01-10 10:43:21',NULL),(150,'2051','uploads/all/0IbeDlm49Yl0PN8KCX4l53aLTcWpKTyBcwWvL9nM.jpg',9,28213,'jpg','image','2021-01-10 10:43:54','2021-01-10 10:43:54',NULL),(151,'2052-12','uploads/all/Wi14qGZL6FLdMOo71ybd1pEz32rU1P73eWmnexkx.jpg',9,926972,'jpg','image','2021-01-10 10:44:46','2021-01-10 10:44:46',NULL),(152,'2052.1','uploads/all/Zg4z2Ob1DmRhC3ibOqxOsDosdI0grCsBiEWr2cQs.jpg',9,32276,'jpg','image','2021-01-10 10:45:07','2021-01-10 10:45:07',NULL),(153,'2052','uploads/all/jaPhIH2rzWIyBtv7vQJI2pY3dBfnsuHFd3nAOdjR.jpg',9,32987,'jpg','image','2021-01-10 10:45:07','2021-01-10 10:45:07',NULL),(154,'2036-32','uploads/all/tEXLM9KxdTSrgSrguELCXC4c0WO5iDnLIOpkLwYl.jpg',9,983186,'jpg','image','2021-01-10 10:46:42','2021-01-10 10:46:42',NULL),(155,'2036.2','uploads/all/zRI8xF6P6R2vPxDFcwNNGdwsQwA8LEuyaI1jM5yg.jpg',9,1658,'jpg','image','2021-01-10 10:47:07','2021-01-10 10:47:07',NULL),(156,'2036.1','uploads/all/HYtSsiRVyBLX0wEeeCkcxHS8iUg76vP6YuwnVieY.jpg',9,25803,'jpg','image','2021-01-10 10:47:07','2021-01-10 10:47:07',NULL),(157,'2036','uploads/all/1MfdIPVg7kNFZW7OkvS0N31mJI4FNGlSyX6xvYDS.jpg',9,62642,'jpg','image','2021-01-10 10:47:08','2021-01-10 10:47:08',NULL),(158,'2053-13','uploads/all/thAXw3AyZwfXXQDxgmJo9uy5NyqLdEHZDlHSQIbO.jpg',9,1621665,'jpg','image','2021-01-10 10:48:28','2021-01-10 10:48:28',NULL),(159,'2053.2','uploads/all/5f2dzBUSJugS676cEQN6xCTN6GMdlJkvZ8ecUDKm.jpg',9,37702,'jpg','image','2021-01-10 10:48:51','2021-01-10 10:48:51',NULL),(160,'2053','uploads/all/KlNDLnG4YOMosRfv8vcHFilxlpWXAGQVDMF85fsu.jpg',9,53421,'jpg','image','2021-01-10 10:48:52','2021-01-10 10:48:52',NULL),(161,'2053.1','uploads/all/WJimhfO01FSIdZnRje3QL4fT4ozpGCzOdjwuuwhA.jpg',9,145477,'jpg','image','2021-01-10 10:48:54','2021-01-10 10:48:54',NULL),(162,'2037-33','uploads/all/Lim5HM2jJL1CeTHEdoR6ziruy99i0duSUcIwdssY.jpg',9,1135332,'jpg','image','2021-01-10 10:51:31','2021-01-10 10:51:31',NULL),(163,'2037.1','uploads/all/GXDQgXLBfh308xQrYIGDpP8jm2MA0DyvTtQ7zEQU.jpg',9,34929,'jpg','image','2021-01-10 10:51:57','2021-01-10 10:51:57',NULL),(164,'2037.2','uploads/all/hfAk5AXpC59A5TYPaAWp2yVQwhU2b7FxHzVEEeST.jpg',9,38322,'jpg','image','2021-01-10 10:51:58','2021-01-10 10:51:58',NULL),(165,'2037.3','uploads/all/dECmQap7sGIv1P3vhJoP2Q4NiCdHz4ey9x5kxbAW.jpg',9,51028,'jpg','image','2021-01-10 10:51:59','2021-01-10 10:51:59',NULL),(166,'2037','uploads/all/Pgar3Rr7foCzOb5go1ZX8BdTenpDPQbOuwdOhzs8.jpg',9,164966,'jpg','image','2021-01-10 10:52:01','2021-01-10 10:52:01',NULL),(167,'2038-34','uploads/all/heZzSUbXelRiKNLuPO9WwsJzHGmHfNBllrrd6oUl.jpg',9,1007980,'jpg','image','2021-01-10 10:53:49','2021-01-10 10:53:49',NULL),(168,'2038.1','uploads/all/DAkdcsBp9sJQym2JoiJhjkQ6XBjyjwiWV24geZkZ.jpg',9,169734,'jpg','image','2021-01-10 10:54:11','2021-01-10 10:54:11',NULL),(169,'2038','uploads/all/92aF1ZqJlFDxIP1gNheee0SOn9FxPv6rOWTf4QCV.jpg',9,50938,'jpg','image','2021-01-10 10:54:13','2021-01-10 10:54:13',NULL),(170,'2038.2','uploads/all/zrymlsLMqnEheAyICHlQ2n5aNIk4xQU3yQOvLc5a.jpg',9,177217,'jpg','image','2021-01-10 10:54:25','2021-01-10 10:54:25',NULL),(171,'2054-14','uploads/all/mZwjjcxa9x3WZxF4qr0byGdft0RoyktvFmwwtVZX.jpg',9,1206148,'jpg','image','2021-01-10 10:55:28','2021-01-10 10:55:28',NULL),(172,'2054.1','uploads/all/82e1MbFRUBYdToh22GCaBazW4uKXYWRRVeyXEWPZ.jpg',9,101222,'jpg','image','2021-01-10 10:55:48','2021-01-10 10:55:48',NULL),(173,'2054','uploads/all/RHiHwpdXsWZPvbOkyTpzJPfMBFJ7YVzaz2aKkDhu.jpg',9,38377,'jpg','image','2021-01-10 10:55:51','2021-01-10 10:55:51',NULL),(174,'2039-35','uploads/all/jGPIkZXsAcuLBLLKtitVORxVihEDv9GU966QMxjb.jpg',9,2072020,'jpg','image','2021-01-10 11:00:58','2021-01-10 11:00:58',NULL),(175,'2039.1','uploads/all/BwagzyHcSA19FXyytPLyX41WKPqfg6Vizog4rA6R.jpg',9,78787,'jpg','image','2021-01-10 11:01:29','2021-01-10 11:01:29',NULL),(176,'2039.2','uploads/all/PcmVOQmfmTQqVEWvjc0av3BtEjdAIcD34oBQBlg4.jpg',9,103924,'jpg','image','2021-01-10 11:01:29','2021-01-10 11:01:29',NULL),(177,'2039','uploads/all/koSbRgQCGphxKKJeTW27pErYhNQG11xjbUrwwH7G.jpg',9,60356,'jpg','image','2021-01-10 11:01:30','2021-01-10 11:01:30',NULL),(178,'2039.3','uploads/all/Hh5jPuLpq3MdMqg4KcEGbTJV42HXAIk0mI3WdU7u.jpg',9,50494,'jpg','image','2021-01-10 11:01:30','2021-01-10 11:01:30',NULL),(179,'2040-36','uploads/all/80mjqbqgOtrTEyMSJktGXZv429tOENpAHEkgMhbo.jpg',9,1855214,'jpg','image','2021-01-10 11:03:13','2021-01-10 11:03:13',NULL),(180,'2040.3','uploads/all/0e1qKV2aei7IhXEivGSwedq333vDApLq0YijjQHx.jpg',9,109578,'jpg','image','2021-01-10 11:03:39','2021-01-10 11:03:39',NULL),(181,'2040.2','uploads/all/U24rdzZADF2scqS5HcI0A36TgKNn25axFKR2o04P.jpg',9,157094,'jpg','image','2021-01-10 11:03:40','2021-01-10 11:03:40',NULL),(182,'2040','uploads/all/COOjBbvO665AANze8VaQQkfJerwqXThskkHFkhbQ.jpg',9,206421,'jpg','image','2021-01-10 11:03:40','2021-01-10 11:03:40',NULL),(183,'2040.1','uploads/all/1lsh1Zyyxr3WTQ2atgZagPijVkYCfY4qfdGtze29.jpg',9,179099,'jpg','image','2021-01-10 11:03:40','2021-01-10 11:03:40',NULL),(184,'2055-15','uploads/all/tBEO0jhC6vMf0IXH1h7hWVGnYXrxHqNhqdpvWLXb.jpg',9,1173430,'jpg','image','2021-01-10 11:05:03','2021-01-10 11:05:03',NULL),(185,'2055','uploads/all/irCOC2JZTbqEsdNHxsXRlkuaOGSo9RSz2XnAXSpg.jpg',9,62274,'jpg','image','2021-01-10 11:05:21','2021-01-10 11:05:21',NULL),(186,'2055.1','uploads/all/FFzIrfpzM3blqFEnmWCgdK5Algc9Z4AkiYnGhCVD.jpg',9,106458,'jpg','image','2021-01-10 11:05:21','2021-01-10 11:05:21',NULL),(187,'2041-01','uploads/all/IRHghhwYuqcuWtH5YJmONgBLTx3uvjPz1nE00cfN.jpg',9,1939826,'jpg','image','2021-01-10 11:07:23','2021-01-10 11:07:23',NULL),(188,'2042-02','uploads/all/SRD4Oi2MENZZTD1ToXtWSswfVoLVawoi3aovZqpv.jpg',9,1235398,'jpg','image','2021-01-10 11:10:14','2021-01-10 11:10:14',NULL),(189,'2042.2','uploads/all/z7x9afOyMgljIBzGcmxVnRkdAGHLrW5Bome2dlqL.jpg',9,22856,'jpg','image','2021-01-10 11:10:41','2021-01-10 11:10:41',NULL),(190,'2042.1','uploads/all/ssx96kku5zJmmiMN8vGgptqWE4cHtB0WL7m4JImZ.jpg',9,116662,'jpg','image','2021-01-10 11:10:44','2021-01-10 11:10:44',NULL),(191,'2042','uploads/all/1atlZO3Y8OJYotSe4SHLH4K96kQHQyCun95wbkgo.jpg',9,75215,'jpg','image','2021-01-10 11:10:45','2021-01-10 11:10:45',NULL),(192,'2056-16','uploads/all/d4eOlOZQMRGnQmhYqPxpfKjiHGDsJPzpqeiBq7U8.jpg',9,978499,'jpg','image','2021-01-10 11:12:10','2021-01-10 11:12:10',NULL),(193,'2056.1','uploads/all/H7knGhCIdJDvaCGPAQ27kBwCoQNmgyOKUuYLzTgL.png',9,220463,'png','image','2021-01-10 11:12:32','2021-01-10 11:12:32',NULL),(194,'2056','uploads/all/TMkLcs3CGDH21OEfkZoPftYVKy3H9aYpb5XiPyVp.jpg',9,134497,'jpg','image','2021-01-10 11:12:32','2021-01-10 11:12:32',NULL),(195,'2043-03','uploads/all/o6njM1luHYpO3IFHAEzeLZhJH4CzPcwEAFwiKqvp.jpg',9,912902,'jpg','image','2021-01-10 11:13:46','2021-01-10 11:13:46',NULL),(196,'2043.1','uploads/all/YL6sIVgOLMytBnB0aMmanCi659irvon7KSUX8hLp.jpg',9,14280,'jpg','image','2021-01-10 11:14:03','2021-01-10 11:14:03',NULL),(197,'2043.2','uploads/all/HqwAdERjjk1grrCSplEEbt9fSmHfRyCzFZUjzDT2.jpg',9,7790,'jpg','image','2021-01-10 11:14:04','2021-01-10 11:14:04',NULL),(198,'2043','uploads/all/Htd99JsY2ExI3xKDMWrqw2CLkrynsaA1HAJIF5RZ.jpg',9,230661,'jpg','image','2021-01-10 11:14:14','2021-01-10 11:14:14',NULL),(199,'2057-17','uploads/all/JBa8XXAw38jpbU31071hZZXvxAyxKZ1r3gZt4JVl.jpg',9,999700,'jpg','image','2021-01-10 11:16:01','2021-01-10 11:16:01',NULL),(200,'2057.2','uploads/all/ntbsmlqtoiYpztkWcpyVar9cFUTKvxvGFX1ZtyrJ.jpg',9,6022,'jpg','image','2021-01-10 11:16:22','2021-01-10 11:16:22',NULL),(201,'2057.1','uploads/all/P1EHhu9ulmBIpAR6UeCURRnPGjRVl3SvqNd1mrcj.jpg',9,88186,'jpg','image','2021-01-10 11:16:23','2021-01-10 11:16:23',NULL),(202,'2057','uploads/all/qqFdjPtTzF6IYci7tlj6jK4oLKiWp9MBHXS1y3mg.png',9,223073,'png','image','2021-01-10 11:16:28','2021-01-10 11:16:28',NULL),(203,'2058-18','uploads/all/pZTV5HHDEuNGLVmp7Xyjf9rzDe3UboaqCncMcOuS.jpg',9,790364,'jpg','image','2021-01-10 11:17:15','2021-01-10 11:17:15',NULL),(204,'2058.1','uploads/all/rjXG0ZdgrWmwZwNNppAcIg9kFNbD5UOwKnHMqWcg.jpg',9,46052,'jpg','image','2021-01-10 11:17:34','2021-01-10 11:17:34',NULL),(205,'2058','uploads/all/0KF6FYpIqEzWHyeY2oe2YkUhBvsuO3NEIfMpaLiQ.jpg',9,56494,'jpg','image','2021-01-10 11:17:34','2021-01-10 11:17:34',NULL),(206,'2059-19','uploads/all/emy19g75efGZoe1CT07eD56X8IILksk8HDxSObP8.jpg',9,1423647,'jpg','image','2021-01-10 11:18:46','2021-01-10 11:18:46',NULL),(207,'2059.1','uploads/all/7XvYQbHfeRFAkFWudVsKqRpSaKzIf3QkJ6oq0pTD.jpg',9,87523,'jpg','image','2021-01-10 11:19:10','2021-01-10 11:19:10',NULL),(208,'2059','uploads/all/6PE0dvu26TGU0ofnEXrD9u4NTRBX8njVJ0yT2I4q.png',9,97433,'png','image','2021-01-10 11:19:13','2021-01-10 11:19:13',NULL),(209,'2059.2','uploads/all/RE20biLK2Zzl01gRBx2OpcXk65sckVqv4UEfXYgC.png',9,912698,'png','image','2021-01-10 11:19:31','2021-01-10 11:19:31',NULL),(210,'2060-20','uploads/all/5EvHYVm8HMYfq3mkhfFBPdSJtXL3ImxmTILDMN5X.jpg',9,768152,'jpg','image','2021-01-10 11:21:00','2021-01-10 11:21:00',NULL),(211,'2041-01','uploads/all/Hyn8PFdq0CNuA88dxSRc6h0hw2hmegMKwonBHxp3.jpg',9,1939826,'jpg','image','2021-01-10 11:40:25','2021-01-10 11:40:25',NULL),(212,'2060.2','uploads/all/m9OYG3AmdyP4vdD2yqgmOOe4drkdFAj1Ooa9cjiL.jpg',9,30531,'jpg','image','2021-01-10 11:44:29','2021-01-10 11:44:29',NULL),(213,'2060.3','uploads/all/448b3nEhuLB9fISblBGYv4knpKH5YpczoKVBO8H0.jpg',9,38789,'jpg','image','2021-01-10 11:44:29','2021-01-10 11:44:29',NULL),(214,'2060.1','uploads/all/YaIG4ryCLjgmjHQiVg8ipSmqCn4jbyT3ff5Ry8Up.jpg',9,43028,'jpg','image','2021-01-10 11:44:29','2021-01-10 11:44:29',NULL),(215,'2060','uploads/all/tXyRG4c5vQdWdihqMjREDqcW4aw6Lp9Ly88w3u8Z.jpg',9,102691,'jpg','image','2021-01-10 11:44:29','2021-01-10 11:44:29',NULL),(216,'2061.1','uploads/all/IQogaW3lzeb3GwMxSTEaYBAq99yAZF8mHOaWAhdi.jpg',9,33796,'jpg','image','2021-01-10 11:45:20','2021-01-10 11:45:20',NULL),(217,'2061','uploads/all/OQ9TZsFMUUqLGUa2kpHKO8dO8U7Jqr4gr6Md75cX.jpg',9,33796,'jpg','image','2021-01-10 11:45:20','2021-01-10 11:45:20',NULL),(218,'2061.3','uploads/all/79cKMhpOaNNAaTE0sCr2oe72wfrioESq1Z4LiAlF.jpg',9,78369,'jpg','image','2021-01-10 11:45:20','2021-01-10 11:45:20',NULL),(219,'2061.2','uploads/all/htZEeOLeWecLWrSu0chajDDUVt23cudbqKBEgPTB.jpg',9,78598,'jpg','image','2021-01-10 11:45:20','2021-01-10 11:45:20',NULL),(220,'2061-21','uploads/all/RpUS5IcEZWuPX8emCj3K3WThHechP32jxEQomUYY.jpg',9,507489,'jpg','image','2021-01-10 11:45:57','2021-01-10 11:45:57',NULL),(221,'2062-22','uploads/all/7FwkxsOKNCpyqripH7X8fEiTfkZapv7JranIf9QO.jpg',9,1938140,'jpg','image','2021-01-10 11:47:14','2021-01-10 11:47:14',NULL),(222,'2062.1','uploads/all/yWIKvMD8dyeZwFN7C7jnieSrNgfOEf81cDsnRp3F.jpg',9,51014,'jpg','image','2021-01-10 11:47:30','2021-01-10 11:47:30',NULL),(223,'2062.2','uploads/all/dJQaIctlaEInSjRE0xjIeeikbF8L9eW4kLREisns.jpg',9,45577,'jpg','image','2021-01-10 11:47:30','2021-01-10 11:47:30',NULL),(224,'2062','uploads/all/pfdRSjxkJQ75042p7bSjdhfJQE1defjgVMRge2Zo.png',9,367819,'png','image','2021-01-10 11:47:38','2021-01-10 11:47:38',NULL),(225,'2063.1','uploads/all/sMgqtmoIVT3prvFR7IsK4pxVqI1IZPNhHY7JZNMd.jpg',9,13275,'jpg','image','2021-01-10 11:48:26','2021-01-10 11:48:26',NULL),(226,'2063.3','uploads/all/CRgQ4nJmmQwMnBrMk3Hak8vS0qoCsS47GaJu8sds.jpg',9,57401,'jpg','image','2021-01-10 11:48:27','2021-01-10 11:48:27',NULL),(227,'2063.2','uploads/all/dzpWGR0iYaz1pKlfqww5EuVYeMVe3HEL4MrLo53R.jpg',9,135709,'jpg','image','2021-01-10 11:48:27','2021-01-10 11:48:27',NULL),(228,'2063','uploads/all/LFh4q1EvFoy1RamWBTIFQ82vZmqwNyDmeYOzypGS.jpg',9,226134,'jpg','image','2021-01-10 11:48:28','2021-01-10 11:48:28',NULL),(229,'2063-26','uploads/all/9j2IVWLSr96hMjbGZ8X4c9P7cVbkwOKTofwvJbZ1.jpg',9,607755,'jpg','image','2021-01-10 11:48:43','2021-01-10 11:48:43',NULL),(230,'2064-27','uploads/all/MBTQcYgg6XgtNfO0emV08Imfe9dB7N5b2I5L5BML.jpg',9,1022953,'jpg','image','2021-01-10 11:49:32','2021-01-10 11:49:32',NULL),(231,'2064.1','uploads/all/ekA885SKyDph1iroXPQ0lKxd0izCuHSWnzIHyPJA.jpg',9,17903,'jpeg','image','2021-01-10 11:49:52','2021-01-10 11:49:52',NULL),(232,'2064.2','uploads/all/009PO0OP20DgQpRBekEMXeWlAD0WHJq1TgrzoPBs.jpg',9,45417,'jpg','image','2021-01-10 11:49:53','2021-01-10 11:49:53',NULL),(233,'2064.3','uploads/all/ZGAbMQPJUFad8Gdgqg1MqKNRDRmJsbpu2a4bw2mE.jpg',9,109616,'jpg','image','2021-01-10 11:49:53','2021-01-10 11:49:53',NULL),(234,'2064','uploads/all/dPMCWJyZ5cV7MlEAvnvEiAqD89ZKSiL6Ei8IqLGr.png',9,159866,'png','image','2021-01-10 11:49:58','2021-01-10 11:49:58',NULL),(235,'2065','uploads/all/wXpWfi3tzblZM0anfxfVmV3e8ocaVvY0bSpsyuaK.jpg',9,56959,'jpg','image','2021-01-10 11:51:41','2021-01-10 11:51:41',NULL),(236,'2065.1','uploads/all/gDJ83tv496sRTR3r5prCyIMAomAEoZMvSsNLvkTQ.jpg',9,89223,'jpg','image','2021-01-10 11:51:41','2021-01-10 11:51:41',NULL),(237,'2065.2','uploads/all/luFTuWR91XlsWjAFYWmVUEinfPlnBW6fyowz6cOQ.jpg',9,77249,'jpg','image','2021-01-10 11:51:43','2021-01-10 11:51:43',NULL),(238,'2065-23','uploads/all/Itl1JhHPyD6pxQjW0cgePas7T7FhD13JdeYpcdFD.jpg',9,1051582,'jpg','image','2021-01-10 11:52:27','2021-01-10 11:52:27',NULL),(239,'2066-24','uploads/all/MnZxe0UiWvbyJ34A1Cqx9aJye9BEK9d35mvSr8ss.jpg',9,1171243,'jpg','image','2021-01-10 11:53:26','2021-01-10 11:53:26',NULL),(240,'2066.2','uploads/all/3z4Xv5vxNCYcjZfhmLygfqNvxddA3TXd1q7WD2xZ.jpg',9,78629,'jpg','image','2021-01-10 11:53:54','2021-01-10 11:53:54',NULL),(241,'2066.1','uploads/all/6VYOk63RDsWVCx4trT74W8yKRkxi4wSASBUiRVvy.jpg',9,87012,'jpg','image','2021-01-10 11:53:54','2021-01-10 11:53:54',NULL),(242,'2066','uploads/all/fGRq7fz7VmJ2xIVkZliTTPMrIQo896vBoKhe3mlp.jpg',9,64946,'jpg','image','2021-01-10 11:53:55','2021-01-10 11:53:55',NULL),(243,'2067.2','uploads/all/mTabE05R6pc8mJAWHVkmqj9AbQLvo2YfBbaxSdDn.jpg',9,80967,'jpg','image','2021-01-10 11:55:04','2021-01-10 11:55:04',NULL),(244,'2067','uploads/all/VnCAhYhGPexYOUgz3qfaaxJD7wO4mouTmksCsQQx.jpg',9,61390,'jpg','image','2021-01-10 11:55:04','2021-01-10 11:55:04',NULL),(245,'2067.1','uploads/all/1dUPd0q3ruAQpGkglmJXfSHio8sGtF8yr0DfOxEu.jpg',9,83464,'jpg','image','2021-01-10 11:55:04','2021-01-10 11:55:04',NULL),(246,'2067-25','uploads/all/BY3Gh8DUsL9SZx4Cvkf0tr6bq6ly9otlqP4v5sDU.jpg',9,1287418,'jpg','image','2021-01-10 11:55:38','2021-01-10 11:55:38',NULL),(247,'5001','uploads/all/boduuDWkIsQFOkDqJ0w9nhQ8ir8PFSouX0wUxUC2.jpg',9,76183,'jpeg','image','2021-01-10 11:56:48','2021-01-10 11:56:48',NULL),(248,'1189146-2','uploads/all/zp4SvdjOhInpgAHfvhXIHtlCebgWpqVBN938BuQl.jpg',9,88685,'jpg','image','2021-01-10 11:59:20','2021-01-10 11:59:20',NULL),(249,'5002','uploads/all/CkFVcER7ShyyOyvZuLVNlZgmC4XZk8qAJ8QQMHUv.jpg',9,26931,'jpg','image','2021-01-10 12:00:00','2021-01-10 12:00:00',NULL),(250,'51V1mPX8mdL','uploads/all/PxaZ1KbIePevVtC39hpdsbLlGeK0Cyn9OcV20cYc.jpg',9,58989,'jpg','image','2021-01-10 12:00:17','2021-01-10 12:00:17',NULL),(251,'1189146-3','uploads/all/9uHS44K7mZ03WO3DsWmfKuR16HauC1GtvFg2kDXL.jpg',9,52213,'jpg','image','2021-01-10 12:00:17','2021-01-10 12:00:17',NULL),(252,'1203237-3','uploads/all/3VaPCXzVIOmwe3D9IrQiCiDyPVH3evXYdcw1Enhw.jpg',9,46396,'jpg','image','2021-01-10 13:29:37','2021-01-10 13:29:37',NULL),(253,'e9db4fb26a518e921700df5374b8ce8d','uploads/all/26Jt9s8P1NhNkjirKCCmOhnfEqQp6XOX27yGz1jY.jpg',9,88175,'jpg','image','2021-01-10 13:29:39','2021-01-10 13:29:39',NULL),(254,'5003','uploads/all/3TyEVsiYFT8DMdpurFGgaDVkYQCTpChuydtU8UUr.jpg',9,82903,'jpg','image','2021-01-10 13:30:01','2021-01-10 13:30:01',NULL),(255,'5004','uploads/all/OwUYWK9oxpMiQ3MSggRSeIewOieSrEezwjTD1O9D.jpg',9,183799,'jpg','image','2021-01-10 13:50:07','2021-01-10 13:50:07',NULL),(256,'1203237-2','uploads/all/hyA55Rmvmq0d0FWNc9cArudYoyXkaiQ6ifsYPYnm.jpg',9,81822,'jpg','image','2021-01-10 13:50:55','2021-01-10 13:50:55',NULL),(257,'1203237-3','uploads/all/Zv9eqQiDTEoaQv0cnc9mSqwsgK0TTudOIXBCdLzb.jpg',9,46396,'jpg','image','2021-01-10 13:50:55','2021-01-10 13:50:55',NULL),(258,'5005','uploads/all/MZpPekUfoaqG5Gg8rwutDCZ3ImA599lb3irByttV.jpg',9,132961,'jpg','image','2021-01-10 13:57:19','2021-01-10 13:57:19',NULL),(259,'1203202-3','uploads/all/8hDXyosJNHA9kns9Z3OVn3XVy7O5Ae7lQ6nGxrkE.jpg',9,46396,'jpg','image','2021-01-10 13:57:59','2021-01-10 13:57:59',NULL),(260,'1203202-2','uploads/all/bMiaF0ddqT9XRSau9Ud9M00oTtp8g0tUrup4Ca4L.jpg',9,83452,'jpg','image','2021-01-10 13:58:00','2021-01-10 13:58:00',NULL),(261,'5006','uploads/all/D8wNjRPves2A4cUPJZfVqhGsDWiVn2HPjk1I8iXo.jpg',9,54909,'jpg','image','2021-01-10 14:02:45','2021-01-10 14:02:45',NULL),(262,'b','uploads/all/VehmY2ttlbGgXDMf0OqrvFoD1tERqqXHIqtaF5y2.jpg',9,45909,'jpg','image','2021-01-10 14:03:26','2021-01-10 14:03:26',NULL),(263,'a','uploads/all/eq4wQqdyBmGtr1tyVoExl2vxsGF3fCtbaNwrtkv7.jpg',9,77244,'jpg','image','2021-01-10 14:03:27','2021-01-10 14:03:27',NULL),(264,'2029-23','uploads/all/Um6ARfWPaFYdLHUuQ78JYnUgfC1v8iuhReZB9G6V.jpg',9,844972,'jpg','image','2021-01-10 14:09:11','2021-01-10 14:09:11',NULL),(265,'2029','uploads/all/9CDl4nSc7lfC7mDqOEBP5hRvzKwPOpZ1A1FCC542.png',9,58830,'png','image','2021-01-10 14:09:45','2021-01-10 14:09:45',NULL),(266,'2029.1','uploads/all/aTPG7CtYo3RDdSIPCY1NFa98dnPUEYeU1fHvCUh5.jpg',9,75385,'jpg','image','2021-01-10 14:09:46','2021-01-10 14:09:46',NULL),(267,'2029.3','uploads/all/VvftzqsqBfbw93RXxvJ79KKvNCt4odfztOuKwu2q.jpg',9,69530,'jpg','image','2021-01-10 14:09:47','2021-01-10 14:09:47',NULL),(268,'2029.2','uploads/all/jPWn2fGdAebge2Oh0YRYm1eWbUFdeUxWT9pGpePR.jpg',9,74852,'jpg','image','2021-01-10 14:09:48','2021-01-10 14:09:48',NULL),(269,'LB1-05','uploads/all/JTcTJvcZ9wk1tKuGOPqMgkI6fbCUplQX4Ga7NJ7m.jpg',9,672207,'jpg','image','2021-01-10 14:13:04','2021-01-10 14:13:04',NULL),(270,'BC-11','uploads/all/bgcuzP0OBJ19i1iAJLhHkZ2zWxqYSk6v466acLTk.jpg',9,45063,'jpg','image','2021-01-10 14:14:44','2021-01-10 14:14:44',NULL),(271,'BC-12','uploads/all/4kk8HIYRTtdM0w3RbTiVgWja02n2ZnC4kaj9VFwB.jpg',9,47497,'jpg','image','2021-01-10 14:16:22','2021-01-10 14:16:22',NULL),(272,'LB1-06','uploads/all/bSJlaGsPkbEdyjYyOe5hFzyKILDmCtZHcv06qrMy.jpg',9,599586,'jpg','image','2021-01-10 14:17:37','2021-01-10 14:17:37',NULL),(273,'LB1-12','uploads/all/RuJ593fdifdIQELab9ds9QUloZWVKQffaXWvpMiT.jpg',9,974008,'jpg','image','2021-01-10 14:20:10','2021-01-10 14:20:10',NULL),(274,'LB1-09','uploads/all/WPDqmQTAuYmVQZgfwIQBTQEL1xPqLLylIf8oETHY.jpg',9,1022815,'jpg','image','2021-01-10 14:20:50','2021-01-10 14:20:50',NULL),(275,'LB1-10','uploads/all/eErFjAQUWrErtJigtRJN08kgzJWgplt89Ve8QUkg.jpg',9,1030541,'jpg','image','2021-01-10 14:22:04','2021-01-10 14:22:04',NULL),(276,'LB1-11','uploads/all/PEUgo4TI3RkEeAhlNkHvCIzGuTIJocv3Lygffm5Z.jpg',9,990746,'jpg','image','2021-01-10 14:22:26','2021-01-10 14:22:26',NULL),(277,'LB1-07','uploads/all/91N1F98h27FotFXh1TIJFqaJVV3Z8RKmgcjQwHUI.jpg',9,684921,'jpg','image','2021-01-10 14:25:01','2021-01-10 14:25:01',NULL),(278,'LB1-08','uploads/all/zDfl7kHgJZK0f4ZnQRdyxc1jyL5RlqOXyMmq1I3m.jpg',9,595728,'jpg','image','2021-01-10 14:25:12','2021-01-10 14:25:12',NULL),(279,'LB1-13','uploads/all/dbIHXhqZWQSLwWHioOJpmnwapBeCNCiqVeynxD17.jpg',9,628379,'jpg','image','2021-01-10 14:25:14','2021-01-10 14:25:14',NULL),(280,'LB1-14','uploads/all/Jh0eHA8vqnFb3zDboygof7rusI4bUksWvwAx3lzA.jpg',9,545203,'jpg','image','2021-01-10 14:25:48','2021-01-10 14:25:48',NULL),(281,'LB1-15','uploads/all/0zm9BNFPzRxo2O56mLHxw5F6JTUD2SiPjnu5LuqT.jpg',9,998450,'jpg','image','2021-01-10 14:27:56','2021-01-10 14:27:56',NULL),(282,'LB1-17','uploads/all/dC0hztZ4xkc728Rhdf1UCA1rIfrXwe4wfJGSKJuH.jpg',9,929917,'jpg','image','2021-01-10 14:28:02','2021-01-10 14:28:02',NULL),(283,'LB1-18','uploads/all/4nAtl1Sf9ygkl2ekzLu5iwEwTCZqG1XmdXUDkZZ8.jpg',9,791253,'jpg','image','2021-01-10 14:28:23','2021-01-10 14:28:23',NULL),(284,'LB1-16','uploads/all/07AE9At56wVMcvbB21qRbdRtAhmPyhSuwWiH5oi1.jpg',9,828187,'jpg','image','2021-01-10 14:29:19','2021-01-10 14:29:19',NULL),(285,'LB1-23','uploads/all/P8PuHicJy04d7wxZnuiO3FbD08CM3kImjq4vYypd.jpg',9,896145,'jpg','image','2021-01-10 14:37:00','2021-01-10 14:37:00',NULL),(286,'LB1-24','uploads/all/5klbxwMGSyPEiFIlBJtlFolfbHxcuCuoEDKGTDIO.jpg',9,1005633,'jpg','image','2021-01-10 14:37:18','2021-01-10 14:37:18',NULL),(287,'LB1-22','uploads/all/tPwJd7Ioav51vfk1dIfGL9JXEpO5ZFo97iHjrVA5.jpg',9,877091,'jpg','image','2021-01-10 14:37:29','2021-01-10 14:37:29',NULL),(288,'LB1-21','uploads/all/hjOk9Y6kWDhq4sUOqegbGzd3uRSRzmwvbRNDJRhp.jpg',9,830208,'jpg','image','2021-01-10 14:38:44','2021-01-10 14:38:44',NULL),(289,'LB1-19','uploads/all/OgBtxVByZKTt0tKStJj7K15PcoK6mSq84gFF6Anm.jpg',9,1056183,'jpg','image','2021-01-10 14:40:41','2021-01-10 14:40:41',NULL),(290,'LB1-20','uploads/all/O16w7kVH5cTVabas0UA8xqVvPXgPr0JN2gmBXJeD.jpg',9,1007300,'jpg','image','2021-01-10 14:41:51','2021-01-10 14:41:51',NULL),(291,'LB1-25','uploads/all/T0F6DaLum5BnNh9JgoIYmyhkTlJgi5IC5qERw2d5.jpg',9,906744,'jpg','image','2021-01-10 14:42:04','2021-01-10 14:42:04',NULL),(292,'LB1-26','uploads/all/cdcPvyQY5zwBSk5zKG56F1WVILbcrlIKfwG0ZR8Q.jpg',9,1084055,'jpg','image','2021-01-10 14:42:43','2021-01-10 14:42:43',NULL),(293,'LB1-19','uploads/all/UIkXMPUOFl7BI4CiVwVvouj8GKSyvneqZfA0y66u.jpg',9,1056183,'jpg','image','2021-01-10 14:43:23','2021-01-10 14:43:23',NULL),(294,'LB1-29','uploads/all/5ESbMbsmC60nRRmxC9o0YKCrgqxvjcFziodvUF5g.jpg',9,929545,'jpg','image','2021-01-10 14:45:00','2021-01-10 14:45:00',NULL),(295,'LB1-27','uploads/all/yix0Il9AJ6F8yr2fHETkcjzGtnBhnTOjiAp29UCl.jpg',9,937864,'jpg','image','2021-01-10 14:45:03','2021-01-10 14:45:03',NULL),(296,'LB1-30','uploads/all/f8oq4Ce0XPlP9pfOFuMxxzs7jNdFtqW7TRDLL7h0.jpg',9,1101499,'jpg','image','2021-01-10 14:45:18','2021-01-10 14:45:18',NULL),(297,'LB1-28','uploads/all/qnu6yIxpWsqKyayRJ4rfsibzvpm3Q1b2wGEmPZ6M.jpg',9,1106122,'jpg','image','2021-01-10 14:45:55','2021-01-10 14:45:55',NULL),(298,'LB2-02','uploads/all/JdFNIWAyq3CtL4lX6aWKCNfzIfTdaBgQS4BCTObc.jpg',9,988800,'jpg','image','2021-01-10 14:47:26','2021-01-10 14:47:26',NULL),(299,'LB2-04','uploads/all/RGfFnAXgN35TzyBxJMxoVnx5ePbbIAIaBMfqpRED.jpg',9,1039638,'jpg','image','2021-01-10 14:47:39','2021-01-10 14:47:39',NULL),(300,'LB2-01','uploads/all/AbgDwc9WP5ppkNbOJ3El46wI97zrlNLacYPpV5Zw.jpg',9,943317,'jpg','image','2021-01-10 14:48:29','2021-01-10 14:48:29',NULL),(301,'LB2-03','uploads/all/F4ZiL1GutCJ1OCDnZftLxZMWhU3EP0P0TDkxtkky.jpg',9,1100425,'jpg','image','2021-01-10 14:48:41','2021-01-10 14:48:41',NULL),(302,'LB2-01','uploads/all/kgKCOjt0HlGD8z1iUC73usgs4bE0AJRHdYCf2hI2.jpg',9,943317,'jpg','image','2021-01-10 14:49:04','2021-01-10 14:49:04',NULL),(303,'LB2-07','uploads/all/Cf1uSM3wzp311w3GSS2gxAs38Db3RP8l49X32AZ2.jpg',9,1101276,'jpg','image','2021-01-10 14:51:48','2021-01-10 14:51:48',NULL),(304,'LB2-06','uploads/all/7qjSShCchPYuAmw95VujPy3GJjQxP6vGiuoAxJei.jpg',9,1095202,'jpg','image','2021-01-10 14:52:37','2021-01-10 14:52:37',NULL),(305,'LB2-05','uploads/all/UuPIs0iA9yZtCbA5nIUVdk2q0gdtx94aBgRnIccz.jpg',9,1238630,'jpg','image','2021-01-10 14:52:55','2021-01-10 14:52:55',NULL),(306,'LB2-08','uploads/all/VnUMLCfzS7DitEXJKCv8kKV3ScQV0RLuvZx7fIQv.jpg',9,1200873,'jpg','image','2021-01-10 14:53:02','2021-01-10 14:53:02',NULL),(307,'LB2-09','uploads/all/D3ttyjq0spFkcbjouyOUs9VQyVz9F3XueUYO0ZpD.jpg',9,1098400,'jpg','image','2021-01-10 14:55:07','2021-01-10 14:55:07',NULL),(308,'LB2-12','uploads/all/0K9JuYvOlOKayln1vMNXlrr8SniFIrfbw53MKQ3I.jpg',9,1070538,'jpg','image','2021-01-10 14:55:16','2021-01-10 14:55:16',NULL),(309,'LB2-10','uploads/all/b91SAZ4SdJmNDaXToPds71HMALpyIjs4oO9FUlFT.jpg',9,984845,'jpg','image','2021-01-10 14:55:27','2021-01-10 14:55:27',NULL),(310,'LB2-11','uploads/all/R3W3lEFHbVEl4oeidsDOkgrUr2nVA47DnRXD4lKa.jpg',9,1048781,'jpg','image','2021-01-10 14:55:47','2021-01-10 14:55:47',NULL),(311,'LB2-14','uploads/all/uD5z3r10KqbuFGYa5fyysVu28RgrgVWPrTqfSu8K.jpg',9,1021460,'jpg','image','2021-01-10 14:58:55','2021-01-10 14:58:55',NULL),(312,'LB2-16','uploads/all/EppyepTQ6JALzab2Z8SXJHXMdMJYACfO3W8HDFRA.jpg',9,1099695,'jpg','image','2021-01-10 14:58:58','2021-01-10 14:58:58',NULL),(313,'LB2-15','uploads/all/k30GXwdDFzcxKbBg8SR6467wKRnXtCph4iqA0dkm.jpg',9,964074,'jpg','image','2021-01-10 14:59:29','2021-01-10 14:59:29',NULL),(314,'LB2-13','uploads/all/FWsEJNSjShFmhWxwSJJZokDdpibhiaYX8fbRGdMc.jpg',9,1014311,'jpg','image','2021-01-10 14:59:58','2021-01-10 14:59:58',NULL),(315,'LB2-18','uploads/all/b8083yKh7Um8bRHhv7B5NtX3bAue7Zww9r8Ljs3a.jpg',9,964457,'jpg','image','2021-01-10 15:01:35','2021-01-10 15:01:35',NULL),(316,'LB2-17','uploads/all/Yc1BmCxpXse92tFuQQrwvUsOYA2BtxrZOQ45lAVO.jpg',9,1001035,'jpg','image','2021-01-10 15:02:06','2021-01-10 15:02:06',NULL),(317,'LB2-20','uploads/all/tuOYothvOmamF8VhtIdhYdg60s2lIjEXq7JliPzQ.jpg',9,1157309,'jpg','image','2021-01-10 15:02:39','2021-01-10 15:02:39',NULL),(318,'LB2-19','uploads/all/ZwF8J0o8jh8FY9Ox80lL7je4Pkih4ImYnvC3mbXj.jpg',9,1086663,'jpg','image','2021-01-10 15:03:20','2021-01-10 15:03:20',NULL),(319,'LB2-21','uploads/all/ZsMyDyvdHXJZ7e1bulyYYrPra2n0aB8fiE1MzlPU.jpg',9,951941,'jpg','image','2021-01-10 15:04:35','2021-01-10 15:04:35',NULL),(320,'LB2-23','uploads/all/SuBXGweqaaS1hbIwI9vQ8qRBrUqfe20Zwhv10O0J.jpg',9,1111524,'jpg','image','2021-01-10 15:04:44','2021-01-10 15:04:44',NULL),(321,'LB2-24','uploads/all/KcvjP3FOCGQtV5c6KT3BNOLTOTTepfzu8OoREwnk.jpg',9,1048437,'jpg','image','2021-01-10 15:04:57','2021-01-10 15:04:57',NULL),(322,'LB2-22','uploads/all/xWJyBYYvXMfHlBuYdWy2xHju5NaVE6bP4VWD74rA.jpg',9,932024,'jpg','image','2021-01-10 15:05:23','2021-01-10 15:05:23',NULL),(323,'LB2-25','uploads/all/IC5bYndCIdqm6B38fUuUbudFyksbYlcRI78Lk7wl.jpg',9,570992,'jpg','image','2021-01-10 15:07:07','2021-01-10 15:07:07',NULL),(324,'LB2-26','uploads/all/WVM3yNCLtjE9Ilmzy776kRA6L2JsBEjnnabEwnxj.jpg',9,521969,'jpg','image','2021-01-10 15:07:57','2021-01-10 15:07:57',NULL),(325,'LB2-30','uploads/all/JIYmDAdJEbsCesG6tLYekMItjKoxsjthTrFxsCx6.jpg',9,659430,'jpg','image','2021-01-10 15:08:09','2021-01-10 15:08:09',NULL),(326,'LB2-28','uploads/all/8wb6lW9eBXHOuWTGPdjmcKCYZcSdNvPzDBgykweN.jpg',9,486800,'jpg','image','2021-01-10 15:09:08','2021-01-10 15:09:08',NULL),(327,'LB2-32','uploads/all/YAggcd3BYIGegKTXrf2sblMOykhgdO62IRCSECFf.jpg',9,509305,'jpg','image','2021-01-10 15:11:08','2021-01-10 15:11:08',NULL),(328,'LB2-29','uploads/all/f9b825lriHPwI8wNcgDtx0WHVveHYkvMQsWYezZ4.jpg',9,490956,'jpg','image','2021-01-10 15:11:17','2021-01-10 15:11:17',NULL),(329,'LB2-31','uploads/all/qRS6fSJypd1IoIVYsFe5wdWggfvI2M5a0eXDPDYh.jpg',9,629552,'jpg','image','2021-01-10 15:11:21','2021-01-10 15:11:21',NULL),(330,'LB2-27','uploads/all/QYL9tRkHCPzUJAaCy0m9u6qOKCB3lL1bTZRs01lf.jpg',9,636004,'jpg','image','2021-01-10 15:11:33','2021-01-10 15:11:33',NULL),(331,'LB2-32','uploads/all/HIR7kGe609xd3IWSwmIyi9VcTKZlGHIYCA2QAVqa.jpg',9,509305,'jpg','image','2021-01-10 15:11:53','2021-01-10 15:11:53',NULL),(332,'LB2-31','uploads/all/IiAOPcUxmfo1IlfJFJCbQ4O6etZAuIeffbwMXLSL.jpg',9,629552,'jpg','image','2021-01-10 15:12:03','2021-01-10 15:12:03',NULL),(333,'LB2-39','uploads/all/1cdRrq4HfqPVZXPSDOXLhgRXqsIXYYr4FCt3ZjLF.jpg',9,811906,'jpg','image','2021-01-10 15:16:09','2021-01-10 15:16:09',NULL),(334,'LB2-37','uploads/all/eUTCMFkNQxBcnJhaewlJiMnJBNaHKP6I8BptC30y.jpg',9,761283,'jpg','image','2021-01-10 15:16:10','2021-01-10 15:16:10',NULL),(335,'LB2-38','uploads/all/77dzQlUPklN3Aki984SCU83x4OpDh9Kpqk0UWzf9.jpg',9,881900,'jpg','image','2021-01-10 15:16:15','2021-01-10 15:16:15',NULL),(336,'LB2-42','uploads/all/XWRaw6AFtZvrPC2PKTeJX79NIHfa83ESKUjPkDGU.jpg',9,713721,'jpg','image','2021-01-10 15:16:37','2021-01-10 15:16:37',NULL),(337,'LB2-35','uploads/all/V9S6bqFNXu7yKsqJj2psD8t8OWLpdhHuTJNlc0Uv.jpg',9,703476,'jpg','image','2021-01-10 15:17:49','2021-01-10 15:17:49',NULL),(338,'LB2-34','uploads/all/vpxuGENrgkg0Rd5HtmWkn3iAYtEN1uE6EjhYrxlj.jpg',9,778614,'jpg','image','2021-01-10 15:18:20','2021-01-10 15:18:20',NULL),(339,'LB2-36','uploads/all/K8BKe69lMATc45JMrKEtqMnehZ2to7kfP0RvcStg.jpg',9,645657,'jpg','image','2021-01-10 15:18:25','2021-01-10 15:18:25',NULL),(340,'LB2-33','uploads/all/IjGSbQCLSUwEkZvdxchgkM7SJs962hUDMQ24ToLc.jpg',9,722686,'jpg','image','2021-01-10 15:19:06','2021-01-10 15:19:06',NULL),(341,'LB2-33','uploads/all/LjGb4abIHKo9B0LYJkgI4jd6rWoiXb0r2ntWZdKx.jpg',9,722686,'jpg','image','2021-01-10 15:19:21','2021-01-10 15:19:21',NULL),(342,'water bottels grid 2ai-04','uploads/all/cDVBGV0t9Q5tAaY3MbEXDLiXBv0gAz4KriCBvGbs.jpg',9,1200451,'jpg','image','2021-01-10 15:20:48','2021-01-10 15:20:48',NULL),(343,'water bottels grid 2ai-01','uploads/all/ToD5G9wzQtpuC5nzcjbYt4VBppNuZo34szlBN8W5.jpg',9,1083741,'jpg','image','2021-01-10 15:20:54','2021-01-10 15:20:54',NULL),(344,'water bottels grid 2ai-06','uploads/all/tjevIqDbiDdJCZbghaO6MZs0mKLyHSMpBCtCrkDY.jpg',9,1294567,'jpg','image','2021-01-10 15:22:29','2021-01-10 15:22:29',NULL),(345,'water bottels grid 2ai-03','uploads/all/Jlqks4IKNX0GwSoW9N7KTrSVAfVxqpgLmAuIWRK6.jpg',9,1217050,'jpg','image','2021-01-10 15:22:36','2021-01-10 15:22:36',NULL),(346,'water bottels grid 2ai-05','uploads/all/3L3V4DcAuDauxAleE5taMw9P7KzD4kfqg5QYOP6Z.jpg',9,1097068,'jpg','image','2021-01-11 01:06:34','2021-01-11 01:06:34',NULL),(347,'water bottels grid 2ai-02','uploads/all/eCHV69IpoVZLRoaamGFwcPCYsWeGBqplNzGuxKhg.jpg',9,1300941,'jpg','image','2021-01-11 01:06:34','2021-01-11 01:06:34',NULL),(348,'perfumes gridArtboard 1','uploads/all/lWxPDNgADJzDT0UYLPYAOuLs4hJx2xj9ebs7R2iW.jpg',9,65775,'jpg','image','2021-01-11 01:12:35','2021-01-11 01:12:35',NULL),(349,'1001.1','uploads/all/JeV603r3b9LF7Wv2NR6MaBy4r72PqExGcRmdRQiD.jpg',9,194462,'jpg','image','2021-01-11 01:13:12','2021-01-11 01:13:12',NULL),(350,'1001.3','uploads/all/wacuDMKy5et5oaB1pAzGyL7FBDM6vGcJy8QrsUR9.jpg',9,94078,'jpg','image','2021-01-11 01:13:12','2021-01-11 01:13:12',NULL),(351,'1001','uploads/all/Tw4Qawlj7ETengl9PJBUbtpo5AAjbUc3QhBsv3dV.jpg',9,217858,'jpg','image','2021-01-11 01:13:13','2021-01-11 01:13:13',NULL),(352,'1001.2','uploads/all/6TbCnUkVjm50WHwrCiyKCMDLJ9ncuWO6OZTvdTU9.jpg',9,393871,'jpg','image','2021-01-11 01:13:13','2021-01-11 01:13:13',NULL),(353,'1002.1','uploads/all/YE3FQfqTT7KwcvdMZOXQdb4nEjQxWfXfXZv5iQMn.jpg',9,24734,'jpg','image','2021-01-11 01:14:02','2021-01-11 01:14:02',NULL),(354,'1002','uploads/all/wPfU57eJelhVY2jiwPc7bcIZSp01iASYnIVUlkgv.jpg',9,20490,'jpg','image','2021-01-11 01:14:03','2021-01-11 01:14:03',NULL),(355,'perfumes gridArtboard 2','uploads/all/HMrfNKdPzXnha3yglNia38KQqhSzMe4BSRE7lQUK.jpg',9,60810,'jpg','image','2021-01-11 01:14:16','2021-01-11 01:14:16',NULL),(356,'perfumes gridArtboard 3','uploads/all/KUJDJnWHwIXUdQwB9GPASiCX2rzydiEqHvzlJp6x.jpg',9,67684,'jpg','image','2021-01-11 01:15:08','2021-01-11 01:15:08',NULL),(357,'1003','uploads/all/Hrx47kj31vCpiRHKcF9Fo3o3yDwCS6k27wYn284r.jpg',9,56142,'jpg','image','2021-01-11 01:15:31','2021-01-11 01:15:31',NULL),(358,'1003.1','uploads/all/VDRvMf7BimjlUyHQliE3dxdSDv7FqrWNiygpCgSf.jpg',9,227896,'jpg','image','2021-01-11 01:15:31','2021-01-11 01:15:31',NULL),(359,'1004.1','uploads/all/V4wZTgsmF1PWd9ZCTgUbl02AtbJAMhdFwlnGgBMz.jpg',9,6789,'jpg','image','2021-01-11 01:16:29','2021-01-11 01:16:29',NULL),(360,'1004.2','uploads/all/YftC3w4YiB3rwuGkyeg70UtR92aslUOJsKBALkQc.jpg',9,22695,'jpg','image','2021-01-11 01:16:29','2021-01-11 01:16:29',NULL),(361,'1004.3','uploads/all/0GbtS6Lcae9qRhjx98J1F8wHTsurFMTKYuMz9T13.jpg',9,16333,'jpg','image','2021-01-11 01:16:29','2021-01-11 01:16:29',NULL),(362,'1004','uploads/all/3EluwVLRMPaK2W2DQVPPHRWNPOd9qwJKuan13rGI.jpg',9,214158,'jpg','image','2021-01-11 01:16:30','2021-01-11 01:16:30',NULL),(363,'perfumes gridArtboard 4','uploads/all/G9VcwrvyNGyzJZLiySxBDE84sF2xDMmqVoiEEjEN.jpg',9,79205,'jpg','image','2021-01-11 01:16:44','2021-01-11 01:16:44',NULL),(364,'perfumes gridArtboard 5','uploads/all/lTZ7so9aQzVeBFdYYppqiwZAvVa0PpO804t1mtXt.jpg',9,62538,'jpg','image','2021-01-11 01:17:33','2021-01-11 01:17:33',NULL),(365,'1005.1','uploads/all/i6JKZNycuVFrCuE9YznCGKNv9UmU4XE8Ghlpa3qx.jpg',9,16873,'jpg','image','2021-01-11 01:17:54','2021-01-11 01:17:54',NULL),(366,'1005','uploads/all/IHReYALbKK8jh8jpkNyvSZwtj5GO4hyXQZwU8IOw.jpg',9,78573,'jpg','image','2021-01-11 01:17:54','2021-01-11 01:17:54',NULL),(367,'1006','uploads/all/XtbhPmXgB2Oc5b5X69xd3OMKrG2DM5GKaYzvRSbC.jpg',9,74879,'jpg','image','2021-01-11 01:18:53','2021-01-11 01:18:53',NULL),(368,'perfumes gridArtboard 6','uploads/all/cpSZBJjKEZcGW4jCu0UCX32nz1lqvmnN2ZKLlJSA.jpg',9,63067,'jpg','image','2021-01-11 01:19:07','2021-01-11 01:19:07',NULL),(369,'perfumes gridArtboard 7','uploads/all/2CKIkaJSUW0gVMMkICIk5UlBdGJNVOpJwawcI70w.jpg',9,58183,'jpg','image','2021-01-11 01:19:42','2021-01-11 01:19:42',NULL),(370,'1007.2','uploads/all/57cRAizjrAB2LtiMBtRmIYeamIwuT9ugg1KT3yaw.jpg',9,89452,'jpg','image','2021-01-11 01:20:08','2021-01-11 01:20:08',NULL),(371,'1007.1','uploads/all/PCyCjrh2pH3xnxFvuKaNWDVCtFt1pDBZhMnUaTdF.jpg',9,130862,'jpeg','image','2021-01-11 01:20:08','2021-01-11 01:20:08',NULL),(372,'1007','uploads/all/Vf4dxqzHU3eJBbiKo5a4OiNzqjxsOjlKPWTjcJnR.jpg',9,107421,'jpg','image','2021-01-11 01:20:08','2021-01-11 01:20:08',NULL),(373,'1008','uploads/all/7tFjJJ2tl3DzPUekYnH3ypdCEqsELYX8o9GJcPWL.jpg',9,73707,'jpeg','image','2021-01-11 01:20:58','2021-01-11 01:20:58',NULL),(374,'Untitled-3Artboard 8','uploads/all/29FI1lRsjWJz2uqeP7UL9ISUM6mcyFgNw706YA49.jpg',9,61262,'jpg','image','2021-01-11 01:21:24','2021-01-11 01:21:24',NULL),(375,'perfumes gridArtboard 9','uploads/all/4xlQvI4TzCk1eN8Pe2IQefwgn6Rq2gT490jDR9sv.jpg',9,56181,'jpg','image','2021-01-11 01:22:08','2021-01-11 01:22:08',NULL),(376,'1009','uploads/all/hcDe3SCSqf86yCYtiQ5pWC2BQ1oBwJBbBnaKwf86.jpg',9,725456,'jpg','image','2021-01-11 01:22:30','2021-01-11 01:22:30',NULL),(377,'1010.1','uploads/all/9rMscl1KtaoEwx1JAkasE7N2Wmoy8oMAh3N6mKz7.jpg',9,91152,'jpg','image','2021-01-11 01:23:34','2021-01-11 01:23:34',NULL),(378,'1010.2','uploads/all/DqEcIiLE8i6FHlYnF3z2evySFoHM9wBgtQWtzVqg.jpg',9,144953,'jpg','image','2021-01-11 01:23:35','2021-01-11 01:23:35',NULL),(379,'1010','uploads/all/FkcIGxqjzelBprAcK5Fv8CVqoMMOfSjiysOfiNrK.jpg',9,611750,'jpg','image','2021-01-11 01:23:35','2021-01-11 01:23:35',NULL),(380,'perfumes gridArtboard 10','uploads/all/b0bu7uyoXcMBDSoN6kShOzu7DspIrsZ4e4KSeH6Z.jpg',9,57952,'jpg','image','2021-01-11 01:23:51','2021-01-11 01:23:51',NULL),(381,'perfumes gridArtboard 11','uploads/all/yoSeLjTTNwpbVej71NCqfFuaLFbLGh4MlaKFOlgE.jpg',9,57397,'jpg','image','2021-01-11 01:24:35','2021-01-11 01:24:35',NULL),(382,'1011.1','uploads/all/KfDpy1EER2XRtUqKRSzKsNmq8r6zpTTw0y5Tik2F.jpg',9,11424,'jpg','image','2021-01-11 01:24:51','2021-01-11 01:24:51',NULL),(383,'1011.2','uploads/all/etcTZKQT4rcMnPDE6dy0LHUy8IqseJ0tw3zPSijn.jpg',9,37353,'jpg','image','2021-01-11 01:24:51','2021-01-11 01:24:51',NULL),(384,'1011.3','uploads/all/jEcTtGrlVdN9ErwkSmIB1CCHze99CC2XLJwP9oTp.jpg',9,21793,'jpg','image','2021-01-11 01:24:51','2021-01-11 01:24:51',NULL),(385,'1011','uploads/all/mCkYwC8bFdRVlLpC1QO080MUvV9xWccwAOIRsPyN.jpg',9,51801,'jpg','image','2021-01-11 01:24:51','2021-01-11 01:24:51',NULL),(386,'1012','uploads/all/dAkYNBtF82aXNBWrxFhR64CTUhLOpxcKhadYFmvl.jpg',9,17894,'jpg','image','2021-01-11 01:25:34','2021-01-11 01:25:34',NULL),(387,'1012.1','uploads/all/wKSSGVU2XdJHnblNRMfxNl0sPP6xklpImT7AYObx.jpg',9,49525,'jpg','image','2021-01-11 01:25:34','2021-01-11 01:25:34',NULL),(388,'1012.2','uploads/all/jJ61yvGa3PlMPQyYIkMdHKXYYxndKKIcaJtukIwr.jpg',9,75426,'jpg','image','2021-01-11 01:25:34','2021-01-11 01:25:34',NULL),(389,'1012.3','uploads/all/VfSgNcwxDb6nW7QXxOeq8QuMGCFZ0LvRC00s7jOl.jpg',9,116849,'jpg','image','2021-01-11 01:25:34','2021-01-11 01:25:34',NULL),(390,'perfumes gridArtboard 12','uploads/all/cEg4WRBcVAxwaRCbmr7y7iXIfwwCv1ZSCRRNcCOL.jpg',9,67451,'jpg','image','2021-01-11 01:25:47','2021-01-11 01:25:47',NULL),(391,'perfumes gridArtboard 13','uploads/all/DUYGjAYPy4YN9hWCicMFvRDMw1AarHQYFj8bgAiU.jpg',9,65101,'jpg','image','2021-01-11 01:26:23','2021-01-11 01:26:23',NULL),(392,'1013','uploads/all/OVbfCukHpUN8wr8nAKV4JPv790EWxWOqInpUESJy.jpg',9,16870,'jpg','image','2021-01-11 01:26:38','2021-01-11 01:26:38',NULL),(393,'1013.1','uploads/all/hurMttftTrLidasLEe1IPQUBDd979nEZFDJelqGg.jpg',9,47086,'jpg','image','2021-01-11 01:26:38','2021-01-11 01:26:38',NULL),(394,'1013.2','uploads/all/3hEGmw1ZBWyzrv6LJQe7pF28Yb8d5EYnhCZYy7U1.jpg',9,82181,'jpg','image','2021-01-11 01:26:39','2021-01-11 01:26:39',NULL),(395,'1014.1','uploads/all/VfePY7OOWa40WG8RoWC2SN40ihMF40UMo23JrpjB.jpg',9,53107,'jpg','image','2021-01-11 01:27:36','2021-01-11 01:27:36',NULL),(396,'1014.3','uploads/all/EAnEKUXJVhZ1G4ktY5fv9LutB08eTQd6uj7U1g6u.jpg',9,72365,'jpg','image','2021-01-11 01:27:37','2021-01-11 01:27:37',NULL),(397,'1014.2','uploads/all/Yci0YGA3wxk9FATEDuDmDdCCfZF6TDHYc1HD1juF.jpg',9,76555,'jpg','image','2021-01-11 01:27:37','2021-01-11 01:27:37',NULL),(398,'1014','uploads/all/7aZRPHrs2sDal6mVV4bOUnGtvBqd6uYJ5CbvAni8.jpg',9,56115,'jpg','image','2021-01-11 01:27:37','2021-01-11 01:27:37',NULL),(399,'perfumes gridArtboard 13','uploads/all/qUy58CU6PSaOFosYAUaJ16oY3XdDzjvxB1k1BitA.jpg',9,65101,'jpg','image','2021-01-11 01:27:50','2021-01-11 01:27:50',NULL),(400,'perfumes gridArtboard 14','uploads/all/HHmoHXKOf44744RQTxAKbN2J2l1ISI72t3GZl6IW.jpg',9,59327,'jpg','image','2021-01-11 01:27:59','2021-01-11 01:27:59',NULL),(401,'perfumes gridArtboard 15','uploads/all/lAooeAWeR2148UIRpH4J6fG9NtWGBWDz5Hr4M1XB.jpg',9,53686,'jpg','image','2021-01-11 01:30:30','2021-01-11 01:30:30',NULL),(402,'1015.1','uploads/all/DBgVzPk6KXE1KKHgwC4FlyMgj3R7bj2ixicbcgtu.jpg',9,34421,'jpg','image','2021-01-11 01:30:47','2021-01-11 01:30:47',NULL),(403,'1015.2','uploads/all/xHUEexASjiUbYkHP7kUKJ0rcD0qPwuVtSHIjqwKl.jpg',9,35081,'jpg','image','2021-01-11 01:30:47','2021-01-11 01:30:47',NULL),(404,'1015.3','uploads/all/j4Gqxqzb9SAnIpmJK9mjt265mT2pgNKCI3hlZCYn.jpg',9,45600,'jpg','image','2021-01-11 01:30:48','2021-01-11 01:30:48',NULL),(405,'1015','uploads/all/EJyWO1Axvjsl5e9jepVF3sA7hA9NfeuxzZEyz2F2.jpg',9,122025,'jpg','image','2021-01-11 01:30:48','2021-01-11 01:30:48',NULL),(406,'1016.1','uploads/all/8To91goVJvOiHAO8AXlsFoE27WhihXOVQYNxlbq9.jpg',9,75543,'jpg','image','2021-01-11 01:31:35','2021-01-11 01:31:35',NULL),(407,'1016.2','uploads/all/EwtQFmbkKZ8FO9X7fC4jhTm5SGFYZpEus1Uo7GtY.jpg',9,82267,'jpg','image','2021-01-11 01:31:35','2021-01-11 01:31:35',NULL),(408,'1016.3','uploads/all/LoUc44TQw1IaG3bxPmLTIpfBCMtwRGas3OVxm5eo.jpg',9,127484,'jpg','image','2021-01-11 01:31:36','2021-01-11 01:31:36',NULL),(409,'testin','uploads/all/7AOE1F1ppGL7lwLSNQKoBHZ2JQg3rpt46mFGpiYS.jpg',9,3358,'jpg','image','2021-01-11 01:43:01','2021-01-11 01:43:01',NULL),(410,'Untitled-1Artboard 1','uploads/all/LAwX5ZeOySo397wyDHrC6VlmdtcIbb10BGBJQJJ7.jpg',9,64464,'jpg','image','2021-01-11 01:59:52','2021-01-11 01:59:52',NULL),(411,'1017','uploads/all/lIcuoDBQMfTEvM7b1Ole0Pwro3BwaKgW93qQHv6r.jpg',9,12632,'jpg','image','2021-01-11 02:01:44','2021-01-11 02:01:44',NULL),(412,'1017.1','uploads/all/ncPP5vque0haQZqWu7ZX8ilPyComuHKq3rVihyn3.jpg',9,73446,'jpg','image','2021-01-11 02:01:44','2021-01-11 02:01:44',NULL),(413,'1017.2','uploads/all/7QNX0HpkLa00n5w5MSzbo9fpsFMedKzhS1fbZ2pW.jpg',9,103654,'jpg','image','2021-01-11 02:01:45','2021-01-11 02:01:45',NULL),(414,'Untitled-3Artboard 17','uploads/all/C5pysL6zTQI3KNYyL01d5tqTauf93kG5algQZxrB.jpg',9,68791,'jpg','image','2021-01-11 02:02:23','2021-01-11 02:02:23',NULL),(415,'Untitled-3Artboard 18','uploads/all/rK3sSXFdkhrl09PNFyQtT5PIC0SLYtthWCdx7TeF.jpg',9,55607,'jpg','image','2021-01-11 02:03:19','2021-01-11 02:03:19',NULL),(416,'1018.2','uploads/all/VDr06I7sDz2KewrPF4TxYalgtdASH2Cp4oispCh6.jpg',9,87200,'jpg','image','2021-01-11 02:03:41','2021-01-11 02:03:41',NULL),(417,'1018.1','uploads/all/niHtbkIGXv6Fn5UJJ3RWpzgH32skOZGDG773PpVQ.jpg',9,41766,'jpg','image','2021-01-11 02:03:41','2021-01-11 02:03:41',NULL),(418,'1018.3','uploads/all/VHzckeN0UMxlb72hK5JNO8xOiqIRo5k5uKSQBeca.jpg',9,67176,'jpg','image','2021-01-11 02:03:41','2021-01-11 02:03:41',NULL),(419,'1018','uploads/all/0d47K3OdV5rjW0zOWCgTETaXGUjTjUUR7ghuJVTZ.jpg',9,152947,'jpg','image','2021-01-11 02:03:41','2021-01-11 02:03:41',NULL),(420,'1019.1','uploads/all/dNipVaWC2E7Nm1jbeeyAYEgyfm8grVRuF42UzNUu.jpg',9,54395,'jpg','image','2021-01-11 02:04:34','2021-01-11 02:04:34',NULL),(421,'1019','uploads/all/UJ5psrcrayPIWjciiJvtMemlgHhoSm6Vd4y6fDUz.jpg',9,35437,'jpg','image','2021-01-11 02:04:34','2021-01-11 02:04:34',NULL),(422,'1019.2','uploads/all/VVRfkVIgodZ4o8seR8OlXU5ZqTb7scDWwMQZ7Jds.jpg',9,105445,'jpg','image','2021-01-11 02:04:34','2021-01-11 02:04:34',NULL),(423,'1019.3','uploads/all/8Ohy0SylYWv5D8MTGtP7FJLHUePFJYh1WgDWFE4O.jpg',9,101466,'jpg','image','2021-01-11 02:04:34','2021-01-11 02:04:34',NULL),(424,'1019.4','uploads/all/pFLAIBeUqouhb0qkA8Wqb6ci51ILCWRuyCq0vvdY.jpg',9,224576,'jpg','image','2021-01-11 02:04:34','2021-01-11 02:04:34',NULL),(425,'Untitled-3Artboard 19','uploads/all/IX2ajnR06fwG1d65RnvRSb4tSyQOpZXKzvZUdUVG.jpg',9,66580,'jpg','image','2021-01-11 02:05:02','2021-01-11 02:05:02',NULL),(426,'Untitled-3Artboard 20','uploads/all/blokfgMh4uZpgdDurRImLXPAGpxMVCKnRJy8eVeS.jpg',9,54966,'jpg','image','2021-01-11 02:05:42','2021-01-11 02:05:42',NULL),(427,'1020.2','uploads/all/92QteRwB5b3VjAQp3fVMeVDSbv7iHKrLIczqyngP.jpg',9,58140,'jpg','image','2021-01-11 02:06:01','2021-01-11 02:06:01',NULL),(428,'1020.1','uploads/all/sAZ9SquYzQe0mEQyU8gVV0GvckfyMgwuj3lKjpB9.jpg',9,127803,'jpg','image','2021-01-11 02:06:01','2021-01-11 02:06:01',NULL),(429,'1020','uploads/all/G4jRbHb8jIVDB9GPRl7AKEdxUOGlHLxS6EvFN6MY.jpg',9,284682,'jpg','image','2021-01-11 02:06:01','2021-01-11 02:06:01',NULL),(430,'1021.1','uploads/all/h5oS9FjXw6DNT14me4lQsNFgp5iIrdej7TStNZFv.jpg',9,56406,'jpg','image','2021-01-11 02:06:55','2021-01-11 02:06:55',NULL),(431,'1021.2','uploads/all/MC81V94q8K2wilbyfDieXHIMnPOwQpxgAxZBZa0Q.jpg',9,211965,'jpeg','image','2021-01-11 02:06:56','2021-01-11 02:06:56',NULL),(432,'perfumes gridArtboard 21','uploads/all/4J3RLCoL5Ed4o74G6heK9wBpiyCtIfq3hLsE18Eh.jpg',9,63268,'jpg','image','2021-01-11 02:07:08','2021-01-11 02:07:08',NULL),(433,'perfumes gridArtboard 22','uploads/all/qXNyQNfrSSzghQ2ITEcjddEn2DmucbLaE3E4h2Lj.jpg',9,55905,'jpg','image','2021-01-11 02:07:49','2021-01-11 02:07:49',NULL),(434,'1022.1','uploads/all/K1zlLusCZqlJ3FaAmgcX15WRtdxrLqJXuIaU4Ssu.jpg',9,205661,'jpg','image','2021-01-11 02:08:09','2021-01-11 02:08:09',NULL),(435,'1022.2','uploads/all/f3crbGlV1pVLbxmbTbobUE9CkbEzZxNuXMwKcsbf.jpg',9,199593,'jpg','image','2021-01-11 02:08:09','2021-01-11 02:08:09',NULL),(436,'1022','uploads/all/HppEMECm7YWYrW0FLG1dOMPct2LlHJhOg8VBj6rr.jpg',9,334778,'jpg','image','2021-01-11 02:08:09','2021-01-11 02:08:09',NULL),(437,'1023.1','uploads/all/QodwXu5CMdMJQy3eV3WEsVtvaoxc3u92xoFmUCc6.jpg',9,25957,'jpg','image','2021-01-11 02:09:02','2021-01-11 02:09:02',NULL),(438,'1023.3','uploads/all/AU8XCmgR2GOtBmCuRlaWloECt6GcmCt9Ilr199N1.jpg',9,27698,'jpg','image','2021-01-11 02:09:02','2021-01-11 02:09:02',NULL),(439,'1023.2','uploads/all/9ucpfTMoygHwiNPZUqV0biRBhu7QrGjF8gMHoGVk.jpg',9,43722,'jpg','image','2021-01-11 02:09:02','2021-01-11 02:09:02',NULL),(440,'1023.4','uploads/all/uvkIv1AjEGHY4ix8s8NwATA2v5g6MW9pkauEb5Qt.jpg',9,69940,'jpg','image','2021-01-11 02:09:02','2021-01-11 02:09:02',NULL),(441,'1023','uploads/all/BIdc9vH484j46NSiCq86LE5ITXPqb6FTJ1W1R92l.jpg',9,145759,'jpg','image','2021-01-11 02:09:03','2021-01-11 02:09:03',NULL),(442,'perfumes gridArtboard 23','uploads/all/wPvILVo970lfvcvRrzzHK2EiLgpsB2a2uoy7NeFW.jpg',9,59558,'jpg','image','2021-01-11 02:09:18','2021-01-11 02:09:18',NULL),(443,'perfumes gridArtboard 24','uploads/all/mdyaISpv2OoqGhHIe0lvm37AFSm8ChxcxabNo162.jpg',9,51504,'jpg','image','2021-01-11 02:09:58','2021-01-11 02:09:58',NULL),(444,'1024.1','uploads/all/8EwUPRCa0yGbR7rQkmJDYni77KQTTdIaJ9hvZC69.jpg',9,26337,'jpg','image','2021-01-11 02:10:16','2021-01-11 02:10:16',NULL),(445,'1024.3','uploads/all/YCxs1bxigOUtLFWqsBvyzHryf3ZddwoCec4iOg30.jpg',9,56378,'jpg','image','2021-01-11 02:10:17','2021-01-11 02:10:17',NULL),(446,'1024.4','uploads/all/iZaJlIgs8j1BG2A5SGcwP57N3I2cjR85vwwqbHpt.jpg',9,81341,'jpg','image','2021-01-11 02:10:17','2021-01-11 02:10:17',NULL),(447,'1024.2','uploads/all/xvIqVhAQqG84ZQdZfCtrkNGIlly9i8Pu5Yw8q6Kw.jpg',9,49237,'jpg','image','2021-01-11 02:10:17','2021-01-11 02:10:17',NULL),(448,'1024','uploads/all/C1YHs7KdtVPPEwmxMX1uKhVWRgqRrm5ALHl9u7EL.jpg',9,195440,'jpg','image','2021-01-11 02:10:17','2021-01-11 02:10:17',NULL),(449,'1025','uploads/all/pxdvSvPrZaDHamlRl5uETNi44dpJewcGcV8MB6In.jpg',9,12491,'jpg','image','2021-01-11 02:11:33','2021-01-11 02:11:33',NULL),(450,'1025.2','uploads/all/xToRbLe9bSLW4sUTfxEUm8ebjvyfsiHdGFlnMiGW.jpg',9,55897,'jpg','image','2021-01-11 02:11:33','2021-01-11 02:11:33',NULL),(451,'1025.1','uploads/all/VMOi98VLDYPff7XvGCb0Yx7om7zReFV4cawNA2qe.jpg',9,101791,'jpg','image','2021-01-11 02:11:34','2021-01-11 02:11:34',NULL),(452,'perfumes gridArtboard 25','uploads/all/8elnP0OrbJzzShEjtrrFdtGQ0A2861quXK8vsCrr.jpg',9,59040,'jpg','image','2021-01-11 02:12:01','2021-01-11 02:12:01',NULL),(453,'perfumes gridArtboard 26','uploads/all/ZW7NdsPSNGwWRzO2gMhJTCJXDB3u05LIykxJLtoD.jpg',9,61636,'jpg','image','2021-01-11 02:12:39','2021-01-11 02:12:39',NULL),(454,'1026.2','uploads/all/hgoHhe7LAEEAli3ILsdEhWRq827q11tVj1mCOoCQ.jpg',9,77652,'jpeg','image','2021-01-11 02:12:58','2021-01-11 02:12:58',NULL),(455,'1026.1','uploads/all/D9d9xiH3iyBIN4jmRTH0cUWEm7x9CGfq6IOPj0Gj.jpg',9,112793,'jpeg','image','2021-01-11 02:12:58','2021-01-11 02:12:58',NULL),(456,'1026','uploads/all/ocJCAdTjYGjYS2O3wrWNq45JlsMQeOg29gdaXGa6.jpg',9,243599,'jpg','image','2021-01-11 02:12:58','2021-01-11 02:12:58',NULL),(457,'1027.2','uploads/all/dA5ZTfZM7QeCJ4fIcYuM8T2HRoxbSro6R9l83HOy.jpg',9,14507,'jpg','image','2021-01-11 02:14:03','2021-01-11 02:14:03',NULL),(458,'1027.1','uploads/all/8CqCKqhXWq8ZbtOBnYU3t3SAg0M1foZQxiCOIXvL.jpg',9,189859,'jpeg','image','2021-01-11 02:14:04','2021-01-11 02:14:04',NULL),(459,'1027','uploads/all/iWFIiA4hXftZik1mKis3N4NEGVCwRMOBwsr7ElVH.jpg',9,294017,'jpg','image','2021-01-11 02:14:04','2021-01-11 02:14:04',NULL),(460,'perfumes gridArtboard 27','uploads/all/X22L2umqAU9Xhl6cw83KkysScbtOG361oZw5jsKr.jpg',9,67864,'jpg','image','2021-01-11 02:14:14','2021-01-11 02:14:14',NULL),(461,'perfumes gridArtboard 28','uploads/all/kxDO57RAGy4HH3pcquVoCN7nJg7fiDYjK1oyW3oX.jpg',9,50668,'jpg','image','2021-01-11 02:15:01','2021-01-11 02:15:01',NULL),(462,'1028.1','uploads/all/8Si2bLGEfYa1PKSctyMz2wjrOQf6sMl3mzhH7HTR.jpg',9,34530,'jpg','image','2021-01-11 02:15:20','2021-01-11 02:15:20',NULL),(463,'1028','uploads/all/0oMwJiqw3yVa2iZpJQX14JcWDFPBJGhbfQUHQu7v.jpg',9,30534,'jpg','image','2021-01-11 02:15:20','2021-01-11 02:15:20',NULL),(464,'1029.2','uploads/all/iXpftG66hHnT9m9PzG942tanmV9Di8LjMXiU6VgY.jpg',9,16729,'jpg','image','2021-01-11 02:16:12','2021-01-11 02:16:12',NULL),(465,'1029.3','uploads/all/271OZmGWHYhBVBSM6Vp5SuVKluRhVemHXX4WVfRh.jpg',9,23468,'jpg','image','2021-01-11 02:16:12','2021-01-11 02:16:12',NULL),(466,'1029.1','uploads/all/sCM74PzVC9Po9KznddWCawk9pzQnioN5J73NLsCm.jpg',9,117471,'jpg','image','2021-01-11 02:16:13','2021-01-11 02:16:13',NULL),(467,'1029','uploads/all/qixuqEEYryerWQrpI8wuyr9Gtd2EsrInihDjiBpT.jpg',9,185822,'jpg','image','2021-01-11 02:16:13','2021-01-11 02:16:13',NULL),(468,'perfumes gridArtboard 29','uploads/all/PwYFHcMxUCPaYnYQ1O30165KaaZajw3YrIRDbxkG.jpg',9,66068,'jpg','image','2021-01-11 02:16:47','2021-01-11 02:16:47',NULL),(469,'perfumes gridArtboard 31','uploads/all/NkWKkn2lH4OCfrng2Jkz9bL1Nz8RrZVOdBM2omvB.jpg',9,73416,'jpg','image','2021-01-11 02:18:37','2021-01-11 02:18:37',NULL),(470,'1031.2','uploads/all/4hps51kGWgXm3X90SKwFyXTmGwG6s6pn8C9fy9hq.jpg',9,56387,'jpg','image','2021-01-11 02:18:58','2021-01-11 02:18:58',NULL),(471,'1031.1','uploads/all/9OJCI4MLVm2kRv06Dk4blujdkZXKw8M0hGGpARYM.jpg',9,47924,'jpg','image','2021-01-11 02:18:58','2021-01-11 02:18:58',NULL),(472,'1031','uploads/all/MdocREVGvVSoR9Bwr8It88W2puC3YEIMSuMRxGDP.jpg',9,234849,'jpeg','image','2021-01-11 02:18:58','2021-01-11 02:18:58',NULL),(473,'1066-01','uploads/all/oDlMA0YcDjPDfcHxqcNWTp8zusoeJAyJsiyzEokI.jpg',9,1394581,'jpg','image','2021-01-11 02:20:01','2021-01-11 02:20:01',NULL),(474,'1066.1','uploads/all/fUDa48WKd8z6sSuX1ClN9QkdvKyycK9KRZMCk4nf.jpg',9,18213,'jpg','image','2021-01-11 02:20:17','2021-01-11 02:20:17',NULL),(475,'1066.2','uploads/all/lGPyzWJDQuizdMd4kqkeQxkZSZdZMbtKMpzcsQvB.jpg',9,12997,'jpg','image','2021-01-11 02:20:17','2021-01-11 02:20:17',NULL),(476,'1066.3','uploads/all/sW6oDZen09EE1I8wbwnUmHizB2SthhhPlA9Neh5V.jpg',9,37099,'jpg','image','2021-01-11 02:20:18','2021-01-11 02:20:18',NULL),(477,'perfumes gridArtboard 30','uploads/all/DxcPDiZqKq1b7DDYfIYpovYJEBhDHv9E4WruNQjO.jpg',9,57197,'jpg','image','2021-01-11 02:21:19','2021-01-11 02:21:19',NULL),(478,'1030.3','uploads/all/eJBgKwP1vzcM2ACPj55ZKt4USfnpOnbl4bVqisfW.jpg',9,12600,'jpg','image','2021-01-11 02:21:37','2021-01-11 02:21:37',NULL),(479,'1030.2','uploads/all/XbkCbdbYLcQ3qyovqk6ioviBNGWLHZjeAIS2M3nE.jpg',9,35541,'jpg','image','2021-01-11 02:21:37','2021-01-11 02:21:37',NULL),(480,'1030','uploads/all/Maf2pqOSAjI4NcRKZQO4vkIhXGkx4iplXpuRTh9Y.jpg',9,111841,'jpg','image','2021-01-11 02:21:38','2021-01-11 02:21:38',NULL),(481,'1066.1','uploads/all/HKOR3yltRciAF5MGDPkiXvmMABR1SOYWKCvDcZIq.jpg',9,18213,'jpg','image','2021-01-11 02:22:42','2021-01-11 02:22:42',NULL),(482,'1067','uploads/all/u8Ski1Qu7puvmbbWjpxhlIKz7v4eKbSK8vpWLxfS.jpg',9,70823,'jpg','image','2021-01-11 02:22:42','2021-01-11 02:22:42',NULL),(483,'1067-02','uploads/all/DTkSYsjcZ33EAOQbfk94LX7io1PSKTxF7CPXVjeC.jpg',9,773032,'jpg','image','2021-01-11 02:22:54','2021-01-11 02:22:54',NULL),(484,'perfumes gridArtboard 32','uploads/all/GZJDxkLE93pEL1FFgMew5tyEylbzJogh6YrDjcMQ.jpg',9,74560,'jpg','image','2021-01-11 02:24:02','2021-01-11 02:24:02',NULL),(485,'1032.3','uploads/all/nLzX5bqGLHuPOBrZhM2LrwS1pv6gquye0zW0wJab.jpg',9,39478,'jpg','image','2021-01-11 02:24:21','2021-01-11 02:24:21',NULL),(486,'1032.2','uploads/all/ICamcu79F5gYI4Jd22zM5LA9fbul8CUi4MymbPVM.jpg',9,44246,'jpg','image','2021-01-11 02:24:21','2021-01-11 02:24:21',NULL),(487,'1032.1','uploads/all/Uj4bz2adn69NFjZ4pHQDafuLTsWcRab5K6qIQ9EQ.jpg',9,43111,'jpg','image','2021-01-11 02:24:21','2021-01-11 02:24:21',NULL),(488,'1032.4','uploads/all/ROkT36rk8s4TMhjAp1xCItDXXmk9i0rKcHefCvWg.jpg',9,51883,'jpg','image','2021-01-11 02:24:21','2021-01-11 02:24:21',NULL),(489,'1032','uploads/all/NUpwmakkhK5id7MWJa3ieLgFwpmZlo56Snp6SCGW.jpg',9,177538,'jpg','image','2021-01-11 02:24:21','2021-01-11 02:24:21',NULL),(490,'1068','uploads/all/CA9kGMC4Hs8izwcz28pvlB1XiSUUJ8VqXgeSPPfe.jpg',9,185585,'jpg','image','2021-01-11 02:25:08','2021-01-11 02:25:08',NULL),(491,'1068.2','uploads/all/m7NEDfbXKMLVeqpzuPHyWZ2o9j3M4pFxd7NwLLNl.jpg',9,1217808,'jpg','image','2021-01-11 02:25:09','2021-01-11 02:25:09',NULL),(492,'1068-03','uploads/all/HfDhNffrrXDiKjhWZaws2j5bkqLt0ptr9XT2OIGV.jpg',9,1259016,'jpg','image','2021-01-11 02:25:21','2021-01-11 02:25:21',NULL),(493,'1069-04','uploads/all/UyyttDMRw7htOf8VDwSjwfpHhjnBxM6fE2wZoMeq.jpg',9,704486,'jpg','image','2021-01-11 02:26:21','2021-01-11 02:26:21',NULL),(494,'1069','uploads/all/XBAI54noqvKNzafpb9vmnkwhjTM9CeoxlA3whhg7.jpg',9,16381,'jpg','image','2021-01-11 02:26:41','2021-01-11 02:26:41',NULL),(495,'1069.3','uploads/all/4cuJqLXXz2Pq71MuOp9z5uaMcAvACkeBaB9axgW9.jpg',9,111682,'jpg','image','2021-01-11 02:26:41','2021-01-11 02:26:41',NULL),(496,'perfumes gridArtboard 33','uploads/all/bw9s1YwGWRzbwLzOTehLPMiyB6DLkxZU4hiAhkrB.jpg',9,75507,'jpg','image','2021-01-11 02:27:25','2021-01-11 02:27:25',NULL),(497,'1033.2','uploads/all/q5My02zDSyM1G1QCYO2qS8QZe9fDKi8MPIVSFcX2.jpg',9,37859,'jpg','image','2021-01-11 02:27:44','2021-01-11 02:27:44',NULL),(498,'1033.1','uploads/all/ATKNfnMgxzFQ54pDaiMqFYd0OdmlVphdKSWelZOV.jpg',9,45896,'jpg','image','2021-01-11 02:27:44','2021-01-11 02:27:44',NULL),(499,'1033.3','uploads/all/5L9KcHEbxHbIvgDTzi7bu21CUu5jNGkCZ2Mteet4.jpg',9,38969,'jpg','image','2021-01-11 02:27:44','2021-01-11 02:27:44',NULL),(500,'1033','uploads/all/okzc3p8UjV6viLjmcIWHw6YxIHEmENxOe2ZxXpYQ.jpg',9,197126,'jpg','image','2021-01-11 02:27:44','2021-01-11 02:27:44',NULL),(501,'1070.1','uploads/all/uc3PmPh9N2E9LK3mRZD4zQmkkKGzOohofnlhv3rl.jpg',9,30862,'jpg','image','2021-01-11 02:29:09','2021-01-11 02:29:09',NULL),(502,'1070 - Copy','uploads/all/Lu19W6sJq029wT9Vw6iuB6eO6cV0rz6AlgSvrKuP.jpg',9,20267,'jpeg','image','2021-01-11 02:29:09','2021-01-11 02:29:09',NULL),(503,'1070.3','uploads/all/fIgXWkGdU6mLBlOxaUMjYsp9ImWuucUC1XcsbKs0.jpg',9,44934,'jpg','image','2021-01-11 02:29:09','2021-01-11 02:29:09',NULL),(504,'1070-05','uploads/all/GPfcOnFnEzyKxR2v3mTbAYYLGTuqXeF58ySpAwt8.jpg',9,704996,'jpg','image','2021-01-11 02:29:22','2021-01-11 02:29:22',NULL),(505,'perfumes gridArtboard 34','uploads/all/kO85Xqy1hz6nB4WEMDv6poth2iqRjQ15zU6Unghj.jpg',9,61726,'jpg','image','2021-01-11 02:33:09','2021-01-11 02:33:09',NULL),(506,'1034.1','uploads/all/q00PjVKpUb6xPiBGeei5vvBsZOh8v6Q9HQmSE3vV.jpg',9,26926,'jpg','image','2021-01-11 02:33:28','2021-01-11 02:33:28',NULL),(507,'1034.2','uploads/all/Vfx1c2k3G4uETi6oYhvvPSX69LwYHktzm7Xaw8js.jpg',9,42414,'jpg','image','2021-01-11 02:33:28','2021-01-11 02:33:28',NULL),(508,'1034','uploads/all/0a95ao6Z8tEbKTLJBXyw6phsyitwN65BkqtQ1gto.jpg',9,52565,'jpg','image','2021-01-11 02:33:28','2021-01-11 02:33:28',NULL),(509,'1071.1','uploads/all/zZQXE1pUXBJvlKS1g15xiw39q7AgKfZWhBmOYVUJ.jpg',9,22890,'jpg','image','2021-01-11 02:34:15','2021-01-11 02:34:15',NULL),(510,'1071','uploads/all/Js6Yk02GS2OmiT5qyMSuQuvjFNTYjSglS4cK2IWZ.jpg',9,69236,'jpg','image','2021-01-11 02:34:15','2021-01-11 02:34:15',NULL),(511,'1071.2','uploads/all/xyi8PYsqmJ7bvKcDFjHxAibzH9O7XgWQOJQGY3Lv.jpg',9,99561,'jpg','image','2021-01-11 02:34:16','2021-01-11 02:34:16',NULL),(512,'1071-06','uploads/all/L4h12GOxP3gMsD4e9PdmhvDvVzWPyh7aNrvQBz8x.jpg',9,1476107,'jpg','image','2021-01-11 02:34:31','2021-01-11 02:34:31',NULL),(513,'perfumes gridArtboard 35','uploads/all/CeaRrSIHIqrfnLU4zcr6vHzDvsrNRC2phrtCiAIc.jpg',9,71210,'jpg','image','2021-01-11 02:35:20','2021-01-11 02:35:20',NULL),(514,'1035.1','uploads/all/LPVfEbDgtF0a4ntlstwkjW6zIhaAY99twk62uJKR.jpg',9,29058,'jpg','image','2021-01-11 02:35:48','2021-01-11 02:35:48',NULL),(515,'1035.2','uploads/all/c2mRjcYIB9NY9AvQjQmPtoipMNOC7UY6kuNymv84.jpg',9,63915,'jpg','image','2021-01-11 02:35:48','2021-01-11 02:35:48',NULL),(516,'1035','uploads/all/Bno0gc6Ni5CF6RbwGyoi7vksJ4Csp35LHfyhixZS.jpg',9,39926,'jpg','image','2021-01-11 02:35:48','2021-01-11 02:35:48',NULL),(517,'1035.3','uploads/all/klnAJI0gaupTbX2KhBBJwAkik0y4yw7r83XKlSP5.jpg',9,93881,'jpg','image','2021-01-11 02:35:48','2021-01-11 02:35:48',NULL),(518,'1036.1','uploads/all/KU7X7DvsoDKoWVqZF7HpYg7N6UJ1srRiMCPHREuX.jpg',9,28486,'jpg','image','2021-01-11 02:36:42','2021-01-11 02:36:42',NULL),(519,'1036.2','uploads/all/ZwJLurAK1NEj8EZe4PUXDH9FbI5mlk1hjucLDqG6.jpg',9,301142,'jpeg','image','2021-01-11 02:36:43','2021-01-11 02:36:43',NULL),(520,'1036','uploads/all/zrtTG6M5LSwwb3GVcQUb21k0uo8DMo1xNp1QqEfo.jpg',9,301547,'jpg','image','2021-01-11 02:36:43','2021-01-11 02:36:43',NULL),(521,'perfumes gridArtboard 36','uploads/all/15TlHR1NTAYD1T7iDyGHZl7zokijrbRI4KlKdjzp.jpg',9,75350,'jpg','image','2021-01-11 02:36:55','2021-01-11 02:36:55',NULL),(522,'1072-07','uploads/all/QYJun0TfKOljie4TnpvZPw8idyH3dHDnwLfDoEXI.jpg',9,704358,'jpg','image','2021-01-11 02:37:32','2021-01-11 02:37:32',NULL),(523,'1072.3','uploads/all/KpY5Ign3CYlvDOHeoNCBoXyDmEyV2gFi3DpW2IPF.jpg',9,200990,'jpg','image','2021-01-11 02:37:51','2021-01-11 02:37:51',NULL),(524,'1072.1','uploads/all/hU6K44M97OoPRkv8BN4tp0cBpikXCEwIbL3g29Ln.jpg',9,260862,'jpg','image','2021-01-11 02:37:51','2021-01-11 02:37:51',NULL),(525,'1072.2','uploads/all/4sQ4FmwiMhrucn1FkbUOmGva83oaFovoovbJqQNp.jpg',9,36791,'jpg','image','2021-01-11 02:37:51','2021-01-11 02:37:51',NULL),(526,'1037.3','uploads/all/ENySyh0fQcUXYJGIcygZynVxa5rU2DScI9DrTW2j.jpg',9,30194,'jpg','image','2021-01-11 02:38:45','2021-01-11 02:38:45',NULL),(527,'1037.2','uploads/all/WJwFKjZz95zvpN7QQWxzH7s2tmFzUiJBUMrqxFuI.jpg',9,64380,'jpg','image','2021-01-11 02:38:45','2021-01-11 02:38:45',NULL),(528,'1037','uploads/all/lBTanNPZxjQhywjr0nLRsawlQWkN71IHYOpW61tA.jpg',9,72408,'jpg','image','2021-01-11 02:38:45','2021-01-11 02:38:45',NULL),(529,'1037.1','uploads/all/eEtPK0wEpztSMnB8sJyoTiVm4kRDUP85RR7JYVkH.jpg',9,105252,'jpg','image','2021-01-11 02:38:45','2021-01-11 02:38:45',NULL),(530,'perfumes gridArtboard 37','uploads/all/LAISYBn8PhOcnpuNPZEVQMlwhtlz1mxKtN3pMOhP.jpg',9,66018,'jpg','image','2021-01-11 02:38:59','2021-01-11 02:38:59',NULL),(531,'1073-08','uploads/all/9m540WWLq7J7FQ8AHgumoj0YeC07u3mD5q0mnuqF.jpg',9,561709,'jpg','image','2021-01-11 02:40:42','2021-01-11 02:40:42',NULL),(532,'1073','uploads/all/wzwN4N76ABRnGK1Vs3utAW3wBEzuFo3U2YVXjTLe.jpg',9,30931,'jpg','image','2021-01-11 02:41:40','2021-01-11 02:41:40',NULL),(533,'1073.1','uploads/all/lxS7BQsk8hf0qq83xFjuyDXI39nS3YCMR7aGWgqq.jpg',9,55306,'jpg','image','2021-01-11 02:41:40','2021-01-11 02:41:40',NULL),(534,'1073.2','uploads/all/UalKLVEERXARnFVOOLGaTNGBPhc92VpjC07YdpY1.jpg',9,69443,'jpg','image','2021-01-11 02:41:41','2021-01-11 02:41:41',NULL),(535,'1073.3jpg','uploads/all/tfoDgA0bWFuyWtynVARv0xcmpUybFK41ciQ8H3Wb.jpg',9,113034,'jpg','image','2021-01-11 02:41:41','2021-01-11 02:41:41',NULL),(536,'1038.1','uploads/all/XhVyq7dt5t2PQqxAwTAcKCodE988kOxeUWJTXY6j.jpg',9,50880,'jpg','image','2021-01-11 02:42:34','2021-01-11 02:42:34',NULL),(537,'1038','uploads/all/euZ02putoj9vve0OjBnnI5SpEdbM066TvouMyTgj.jpg',9,145052,'jpg','image','2021-01-11 02:42:34','2021-01-11 02:42:34',NULL),(538,'perfumes gridArtboard 38','uploads/all/wMcZ6jzrCqxCJQbA0KbLn1WqsdtMz4SfHWTNMCdV.jpg',9,59007,'jpg','image','2021-01-11 02:42:49','2021-01-11 02:42:49',NULL),(539,'1074','uploads/all/UQyp92CpIVBnqo5z5UZF0VaxgmN9VltedMW831ca.jpg',9,30092,'jpg','image','2021-01-11 02:43:37','2021-01-11 02:43:37',NULL),(540,'1074.2','uploads/all/NR3JSYBLi9wINgeYJnyzlTuBn3lfFHxrTOzk5q9G.jpg',9,40112,'jpg','image','2021-01-11 02:43:37','2021-01-11 02:43:37',NULL),(541,'1074.1','uploads/all/FQNKQRo4y3vT4bKysLEW8YgfMnrgDbRLq6NSd76U.jpg',9,350288,'jpg','image','2021-01-11 02:43:38','2021-01-11 02:43:38',NULL),(542,'1074-09','uploads/all/xnQ9QsoWZb3avJmrGHxljqNquW9kz22ZH8oaIA26.jpg',9,770078,'jpg','image','2021-01-11 02:43:49','2021-01-11 02:43:49',NULL),(543,'perfumes gridArtboard 39','uploads/all/AGcAmf2UBaoMWhP6E7Ll5QuLVPH470GontM3axq3.jpg',9,61414,'jpg','image','2021-01-11 02:44:42','2021-01-11 02:44:42',NULL),(544,'1039.2','uploads/all/wFKFs5wX9vZpSqTMQuvXpEIdH6Y2exXMbXpNmqUO.jpg',9,11887,'jpg','image','2021-01-11 02:45:06','2021-01-11 02:45:06',NULL),(545,'1039.1','uploads/all/niVAvwyKHFCp16aHHwPv2DLy5t0V0Sj8U4rgAco3.jpg',9,27283,'jpg','image','2021-01-11 02:45:06','2021-01-11 02:45:06',NULL),(546,'1039','uploads/all/SP0Q7r4pFy3isFhwyjNXMoKsCJfsK7tRNCBDevOu.jpg',9,117081,'jpeg','image','2021-01-11 02:45:07','2021-01-11 02:45:07',NULL),(547,'1075','uploads/all/zjo73SZESR5Y7gU2LLbCmQ7pWpkbzvO7ubUVvCaM.jpg',9,34841,'jpg','image','2021-01-11 02:46:04','2021-01-11 02:46:04',NULL),(548,'1075.2','uploads/all/HCaupBJBbsszRKn28Jh2ogUgngjaEYZ1ZLnHpnO8.jpg',9,56827,'jpg','image','2021-01-11 02:46:04','2021-01-11 02:46:04',NULL),(549,'1075.1','uploads/all/sjbBTsgY5vGRyWt38GB2FNEjWsk05wkEk6r2WSFP.jpg',9,125249,'jpg','image','2021-01-11 02:46:04','2021-01-11 02:46:04',NULL),(550,'1075-10','uploads/all/8ZZAcTn1m6YFOV1Nw6T538vJZn1VBcAbkVoyeu6z.jpg',9,897655,'jpg','image','2021-01-11 02:46:16','2021-01-11 02:46:16',NULL),(551,'1040.1','uploads/all/4R8TRYTw9iDQQkaPbTsDYnb2LHFg1K7SSEFdMDKb.jpg',9,26393,'jpg','image','2021-01-11 02:47:18','2021-01-11 02:47:18',NULL),(552,'1040.2','uploads/all/vanIiuesks1eaoW43lxb7fGbWqI139qzAyg8QIYX.jpg',9,46110,'jpg','image','2021-01-11 02:47:19','2021-01-11 02:47:19',NULL),(553,'1040.3','uploads/all/3xwKxn0au7kn7ZXIPTPz2OYjP57UETfSfX6gA148.jpg',9,70448,'jpg','image','2021-01-11 02:47:19','2021-01-11 02:47:19',NULL),(554,'perfumes gridArtboard 40','uploads/all/nMBauf6spSgrpRhPNeus7WHZsSk98Xu2VGuXUMqn.jpg',9,52330,'jpg','image','2021-01-11 02:47:31','2021-01-11 02:47:31',NULL),(555,'1076.1','uploads/all/CwVmcqAXWYTBqQ1hvISlGJY7wGNSCY2qS5QkREIG.jpg',9,26797,'jpg','image','2021-01-11 02:48:17','2021-01-11 02:48:17',NULL),(556,'1076.2','uploads/all/2h6oAgnWuVjp5XzCe2CM0xTxS7RS1Lsufe0IyxI1.jpg',9,33356,'jpg','image','2021-01-11 02:48:17','2021-01-11 02:48:17',NULL),(557,'1076.3','uploads/all/WLafSPBtEYcpsqtRHIoRDNTp4MY7VJ9VUAt8kEs4.jpg',9,56829,'jpg','image','2021-01-11 02:48:18','2021-01-11 02:48:18',NULL),(558,'1076-11','uploads/all/94FyxQzRvGPbEPdIyXWGKvCr0ySYBf4U1EdCO5Fn.jpg',9,895670,'jpg','image','2021-01-11 02:48:30','2021-01-11 02:48:30',NULL),(559,'perfumes gridArtboard 41','uploads/all/kD5md5oHS9KIx1TjmXV2BmJTksJidSh5vg8XILYY.jpg',9,63858,'jpg','image','2021-01-11 02:49:18','2021-01-11 02:49:18',NULL),(560,'1041.1','uploads/all/NQSJKWFuiHLfCQ6n9WrQvGethCkKb791P5WlcNQ6.jpg',9,28395,'jpg','image','2021-01-11 02:49:35','2021-01-11 02:49:35',NULL),(561,'1041.3','uploads/all/8kpoAJTZ94VtqAxWnHRQfn0b0FpJcgHG7ro989H6.jpg',9,47897,'jpg','image','2021-01-11 02:49:35','2021-01-11 02:49:35',NULL),(562,'1041.2','uploads/all/wR45C15bNpQrOLQy8PNEE7RGGrNW935PO04iEWaP.jpg',9,39122,'jpg','image','2021-01-11 02:49:35','2021-01-11 02:49:35',NULL),(563,'1041','uploads/all/d7NONmKNW3J8tZcQUc9v6xRUYYWBWklGKvnge25A.jpg',9,48009,'jpg','image','2021-01-11 02:49:35','2021-01-11 02:49:35',NULL),(564,'1077.2','uploads/all/AyABl7oJmaVRSBE5Atg5TEPcGHvWy6IbGaDB3lHg.jpg',9,25670,'jpg','image','2021-01-11 02:50:35','2021-01-11 02:50:35',NULL),(565,'1077.1','uploads/all/N1uzrGPSvobGlBfAhNmjj96OAX1AWiWqUEIowO8V.jpg',9,23382,'jpg','image','2021-01-11 02:50:35','2021-01-11 02:50:35',NULL),(566,'1077','uploads/all/fw3ABYnJMDWxpKxjQj8xb7pU26U1xL1iKogOIPDG.jpg',9,17143,'jpg','image','2021-01-11 02:50:35','2021-01-11 02:50:35',NULL),(567,'1077.3','uploads/all/ikxR5XRiqOjU2QSWr0IcOE23A3sgDPbsa6GrTMpN.jpg',9,51668,'jpg','image','2021-01-11 02:50:36','2021-01-11 02:50:36',NULL),(568,'1077-12','uploads/all/c4NrFpdSeCJ4PV0nk1HUjF7XhKKf86RpCZIqHx6m.jpg',9,863020,'jpg','image','2021-01-11 02:51:03','2021-01-11 02:51:03',NULL),(569,'1042.1','uploads/all/zSMvDpRnDKf9POQPBNof0yOQ0lWcXzhWbVAxPvsB.jpg',9,32993,'jpg','image','2021-01-11 02:51:51','2021-01-11 02:51:51',NULL),(570,'1042','uploads/all/seGWSPkVcSf43oqUya91pTL22J4D3zhKTVQAyJ4P.jpg',9,28953,'jpg','image','2021-01-11 02:51:51','2021-01-11 02:51:51',NULL),(571,'1042.2','uploads/all/n927gPo4ohOe43zEmRQZlxDXe9sX1jJDvRt148BT.jpg',9,45759,'jpg','image','2021-01-11 02:51:51','2021-01-11 02:51:51',NULL),(572,'perfumes gridArtboard 42','uploads/all/UHBV6ol8hyPzR2NaVRMJ5oQcejDdYHkMfV1mNBTd.jpg',9,78622,'jpg','image','2021-01-11 02:52:08','2021-01-11 02:52:08',NULL),(573,'1078','uploads/all/xH1BJmeYoR1dDkH5VojJap4wEzizjTe9u95uNSFY.jpg',9,149272,'jpg','image','2021-01-11 02:52:55','2021-01-11 02:52:55',NULL),(574,'1078.2','uploads/all/CPHWOxw8VQnbXM1j5qs3fKFkMfpEhjnUkosV9nd4.jpg',9,528564,'jpg','image','2021-01-11 02:52:55','2021-01-11 02:52:55',NULL),(575,'1078-18','uploads/all/fz0obx4JPZvBYpLKktwvmMgX2Ix5kKC69gDbxdOR.jpg',9,884226,'jpg','image','2021-01-11 02:53:12','2021-01-11 02:53:12',NULL),(576,'1043.2','uploads/all/HmYQwKar6qaYBanvqmlBGyQ3tgoyRdARCRL48Auw.jpg',9,28915,'jpg','image','2021-01-11 02:54:03','2021-01-11 02:54:03',NULL),(577,'1043','uploads/all/soypVOJWIFCPuQhsUUOA8k5N4KVw6aqA3p6v5Ijo.jpg',9,70608,'jpg','image','2021-01-11 02:54:04','2021-01-11 02:54:04',NULL),(578,'perfumes gridArtboard 43','uploads/all/AQcE3bU4zjOxIyklS9WuCrIK1u6259RmwcbLkaTq.jpg',9,57953,'jpg','image','2021-01-11 02:54:21','2021-01-11 02:54:21',NULL),(579,'perfumes gridArtboard 44','uploads/all/ODgEEYRhVCurG9C1Bd3I4O3v9aZpK1eQ8LYhfikx.jpg',9,53730,'jpg','image','2021-01-11 02:55:10','2021-01-11 02:55:10',NULL),(580,'1044.1','uploads/all/usOw1zFBtBAiHo4zjK4ogfLD4ppBHZ8smx6TJB3m.jpg',9,23001,'jpg','image','2021-01-11 02:55:25','2021-01-11 02:55:25',NULL),(581,'1044','uploads/all/QVPNhu2sUJDPRWb30bB68F2tEz1vnFtTiQFcE5S2.jpg',9,54349,'jpg','image','2021-01-11 02:55:26','2021-01-11 02:55:26',NULL),(582,'1044.2','uploads/all/m3doKo2r6vySZ9SH281yTxVbrndX5jeICvGOe4hM.jpg',9,115676,'jpg','image','2021-01-11 02:55:26','2021-01-11 02:55:26',NULL),(583,'1045.1-125','uploads/all/ve1msCwCYhBi5eGySEZuayQgXvP6GRB9X9EClPSw.jpg',9,56858,'jpg','image','2021-01-11 02:56:18','2021-01-11 02:56:18',NULL),(584,'1045.2-125','uploads/all/tTrwKFlmu6QPdXq1HuEW4z3YXZmJoFzcvDD2Lfje.jpg',9,44819,'jpg','image','2021-01-11 02:56:18','2021-01-11 02:56:18',NULL),(585,'1045-125ml','uploads/all/HXEiTsxu5ZgOGnEVrXRFbd0ktnljXFPUM9jyPBhS.jpg',9,84388,'jpg','image','2021-01-11 02:56:18','2021-01-11 02:56:18',NULL),(586,'perfumes gridArtboard 45','uploads/all/6pUW43Hv0QN1JTUMLD3RQeYXPzUiNC53YDl4N8I3.jpg',9,59007,'jpg','image','2021-01-11 02:56:29','2021-01-11 02:56:29',NULL),(587,'perfumes gridArtboard 46','uploads/all/xTMCewxvsaS7lgWDHbUS5khwfpTywOnUENXwk8vv.jpg',9,63071,'jpg','image','2021-01-11 02:57:07','2021-01-11 02:57:07',NULL),(588,'1046 75 ml','uploads/all/fedt5Z1WN1XhoA4vub01WIctCGDWlRvEYx2cU7A5.jpg',9,35020,'jpg','image','2021-01-11 02:57:32','2021-01-11 02:57:32',NULL),(589,'1046.1-75ml','uploads/all/cPBbk42gEPbvjuKGBDZTegsYsfucCE40YmlIYc1s.jpg',9,76450,'jpg','image','2021-01-11 02:57:33','2021-01-11 02:57:33',NULL),(590,'1046.2-75ml','uploads/all/jeiJ63eP0CGetcXuxJTVAzFNkiGCD3dtXfwlFRqL.jpg',9,520583,'jpg','image','2021-01-11 02:57:33','2021-01-11 02:57:33',NULL),(591,'1047','uploads/all/fOmW3ByoldKIrAPkdT44va3yzDji0XSXdnFSQuED.jpg',9,19734,'jpg','image','2021-01-11 03:01:22','2021-01-11 03:01:22',NULL),(592,'1047.1','uploads/all/ZXsDjzmEbiG5LC3ze7iZBpjcPHBFDCoWtHrBx6v8.jpg',9,43773,'jpg','image','2021-01-11 03:01:22','2021-01-11 03:01:22',NULL),(593,'1047.2','uploads/all/F4pxnTkuRXmpWWBKmhb2EY1Gvdy7NY4MsI0UPGDO.jpg',9,50299,'jpg','image','2021-01-11 03:01:22','2021-01-11 03:01:22',NULL),(594,'perfumes gridArtboard 47','uploads/all/ZrsxEqV2GIFQDBxh3tR5BGDJXiheuIYU4W1QzRRP.jpg',9,63382,'jpg','image','2021-01-11 03:01:33','2021-01-11 03:01:33',NULL),(595,'perfumes gridArtboard 48','uploads/all/aSVq9d4irCC7dajFI8TzYFEaC78YUOvcRME9K3Jn.jpg',9,59087,'jpg','image','2021-01-11 03:02:10','2021-01-11 03:02:10',NULL),(596,'1048','uploads/all/BzqXa0KJOq3HKlfmaQk0WZSpyfHI8Ug71OJ7QOjQ.jpg',9,159770,'jpeg','image','2021-01-11 03:02:36','2021-01-11 03:02:36',NULL),(597,'1049.1','uploads/all/mFFzcQCrDKzcKzPBzrejNodGXEX08B7vpvzqIz9e.jpg',9,46881,'jpg','image','2021-01-11 03:03:19','2021-01-11 03:03:19',NULL),(598,'1049.2','uploads/all/a65joMJZZxJahpp1O62icc4cDr0GcTxHka8Gm38z.jpg',9,85648,'jpg','image','2021-01-11 03:03:19','2021-01-11 03:03:19',NULL),(599,'1049','uploads/all/7mF4RmiI3GY2DwDABC56cqBqnNpUh6boH5D6bXAA.jpg',9,54844,'jpg','image','2021-01-11 03:03:19','2021-01-11 03:03:19',NULL),(600,'1049.3','uploads/all/TDhK623fkaLztp5NG7pqNK0OgWygushrivfkuJsO.jpg',9,112832,'jpg','image','2021-01-11 03:03:19','2021-01-11 03:03:19',NULL),(601,'perfumes gridArtboard 49','uploads/all/SqRaZBjmnqdQgfkuO5v4aV38bjCGPUs8m99Sl9vA.jpg',9,58068,'jpg','image','2021-01-11 03:03:32','2021-01-11 03:03:32',NULL),(602,'perfumes gridArtboard 50','uploads/all/XeFwdfcwAItNIOZtSJ5cfbTyYqmyPA0V5UO0aBFA.jpg',9,61234,'jpg','image','2021-01-11 03:04:21','2021-01-11 03:04:21',NULL),(603,'1050.1','uploads/all/53sCHbVQUlY1h7RTYGdLRD3ibYKQw6rhj0c9u2sW.jpg',9,58075,'jpg','image','2021-01-11 03:04:42','2021-01-11 03:04:42',NULL),(604,'1050.2','uploads/all/B56YuvH6HnvXvSzD0Z09GBjwkaLJ7e2rbRkZfwTD.jpg',9,63657,'jpg','image','2021-01-11 03:04:42','2021-01-11 03:04:42',NULL),(605,'1050','uploads/all/WoNKWmIvkeGk4bXzlTs5zlS96YTb80TQxGDdMDop.jpg',9,138126,'jpg','image','2021-01-11 03:04:43','2021-01-11 03:04:43',NULL),(606,'1051.2','uploads/all/5QIBoGj1KARw2iDZC65DIX5DTvUISJf5OQoFUNdb.jpg',9,9008,'jpeg','image','2021-01-11 03:05:38','2021-01-11 03:05:38',NULL),(607,'1051.1','uploads/all/I3evFtMBNOALrD9rTqogIX1ZPB06aivl3PYdoEnV.jpg',9,34552,'jpg','image','2021-01-11 03:05:38','2021-01-11 03:05:38',NULL),(608,'1051','uploads/all/Z5KhkUDoldyPNZzASRbuCLREuX2zJLKuUy3cs3P5.jpg',9,161741,'jpg','image','2021-01-11 03:05:39','2021-01-11 03:05:39',NULL),(609,'perfumes gridArtboard 52','uploads/all/9hqyUkZK1hgAdU68iDobpotKE3vkfcBPQfVBM61C.jpg',9,53560,'jpg','image','2021-01-11 03:06:06','2021-01-11 03:06:06',NULL),(610,'perfumes gridArtboard 51','uploads/all/b6AkTJTL8rQPBcrV5yramd5W0koP8N9kZ0E9jhPN.jpg',9,50054,'jpg','image','2021-01-11 03:07:08','2021-01-11 03:07:08',NULL),(611,'1052.1','uploads/all/aPXCJayzEZSlS4uDbYz1Oh6bwJrgLSQB7CsVLOtx.jpg',9,4685,'jpg','image','2021-01-11 03:07:58','2021-01-11 03:07:58',NULL),(612,'1052.3','uploads/all/VdtGuLB82nyBSs4M9b7PfWgVhMnoa5ZoGH9oHVMG.jpg',9,6489,'jpg','image','2021-01-11 03:07:58','2021-01-11 03:07:58',NULL),(613,'1052.2','uploads/all/psYchAvn1XtQjYvbmX4jOCpXdtVX9YzFreyuM5GW.jpg',9,6358,'jpg','image','2021-01-11 03:07:58','2021-01-11 03:07:58',NULL),(614,'1052','uploads/all/j0Md53CrI76UnriUnnx7tgebkzIeFpdTBm8cPe5k.jpg',9,243406,'jpg','image','2021-01-11 03:07:59','2021-01-11 03:07:59',NULL),(615,'1053.1-125ml','uploads/all/qEy7fZtLDbW4QKwsnw6Je1NYdyOqsIb6SaH1JEXC.jpg',9,63862,'jpg','image','2021-01-11 03:09:05','2021-01-11 03:09:05',NULL),(616,'1053.2-125ml','uploads/all/oFaNf9VGxIeJlE23NVBQuan2Uzn8wZPbmJWo7Nrz.jpg',9,126396,'jpg','image','2021-01-11 03:09:05','2021-01-11 03:09:05',NULL),(617,'1053-125ml','uploads/all/R6KGTAX0SYwKgd62K9kBv9WA5yJ0HrKIcusaNxkP.jpg',9,184055,'jpg','image','2021-01-11 03:09:06','2021-01-11 03:09:06',NULL),(618,'1053.3-125ml','uploads/all/J5kqxfNMGDw06RYDBAk90p5LLMfLlLLQRmvTexRT.jpg',9,270718,'jpg','image','2021-01-11 03:09:06','2021-01-11 03:09:06',NULL),(619,'perfumes gridArtboard 53','uploads/all/caWvnLFBsT9szKQVaD37KMvhWDvUF9b77AoLDErO.jpg',9,56576,'jpg','image','2021-01-11 03:09:20','2021-01-11 03:09:20',NULL),(620,'perfumes gridArtboard 54','uploads/all/3cAKkmkSsH3Rvaz23iFI71HCVjtEBE5MgYoZeKay.jpg',9,53166,'jpg','image','2021-01-11 03:13:19','2021-01-11 03:13:19',NULL),(621,'1054.1','uploads/all/6ouoY132GCYZUM8Ry2w9TWTY41LdFr9pU0UR15sO.jpg',9,12413,'jpg','image','2021-01-11 03:13:37','2021-01-11 03:13:37',NULL),(622,'1054','uploads/all/TDN6yx1cuwDj1dLDdzUpJ9aSWYFavGC9G1PZ4Ozu.jpg',9,14963,'jpg','image','2021-01-11 03:13:37','2021-01-11 03:13:37',NULL),(623,'perfumes gridArtboard 55','uploads/all/NByUswnObthwYITtUig20fSmgsv0r7EL4QmJvYnH.jpg',9,54622,'jpg','image','2021-01-11 03:14:30','2021-01-11 03:14:30',NULL),(624,'1055.1','uploads/all/9j7W1JBTED4QY59yhBtCHU2Oz9Crkg8WdZsTcFhe.jpg',9,49278,'jpg','image','2021-01-11 03:14:45','2021-01-11 03:14:45',NULL),(625,'1055','uploads/all/KjQpKIs08sn8uoSfnTb13Mqmdaj4M7mrMRA8DHEF.jpg',9,81337,'jpg','image','2021-01-11 03:14:45','2021-01-11 03:14:45',NULL),(626,'1056','uploads/all/qk8M3JrFA2hetivYUzkV1gyTonf3y5n9RbT0WzKH.jpg',9,33715,'jpg','image','2021-01-11 03:16:11','2021-01-11 03:16:11',NULL),(627,'1056.2','uploads/all/RqgPlwjISPf4QxRpaCby7ABsjHwlgb1puT8samVQ.jpg',9,56022,'jpg','image','2021-01-11 03:16:12','2021-01-11 03:16:12',NULL),(628,'perfumes gridArtboard 56','uploads/all/NO9VXiMoKf9LJtIzQzvgUG4HCgEQNwXezfEWNZAG.jpg',9,56233,'jpg','image','2021-01-11 03:16:28','2021-01-11 03:16:28',NULL),(629,'perfumes gridArtboard 57','uploads/all/8qoN0W9qrhgwyXAjE9RO7RFXPe54BbJUMHYje5Ou.jpg',9,61759,'jpg','image','2021-01-11 03:17:11','2021-01-11 03:17:11',NULL),(630,'1057.2','uploads/all/DG71vpK5mSOPFcWH9EQ9q82Rl5MjrTkVlO3NCoju.jpg',9,27063,'jpg','image','2021-01-11 03:17:26','2021-01-11 03:17:26',NULL),(631,'1057','uploads/all/r3Zq48555ojP4ByWtTy2cSSG7oLT9fqrhIIRVQh8.jpg',9,16211,'jpg','image','2021-01-11 03:17:26','2021-01-11 03:17:26',NULL),(632,'1057.3','uploads/all/8abULQL3fzYdmQBWoGEJ2OzUo8W91LuOvil9foHS.jpg',9,38036,'jpg','image','2021-01-11 03:17:26','2021-01-11 03:17:26',NULL),(633,'1057.1','uploads/all/0NvAK7mnVWg029jEvtgqAzbFP2CyTvlKuLl2Ovt4.jpg',9,121431,'jpg','image','2021-01-11 03:17:26','2021-01-11 03:17:26',NULL),(634,'1056.1','uploads/all/Oe9EXgNt1mTUN71RRLCUtWeKMQClLhaums5wF2Ec.jpg',9,34887,'jpg','image','2021-01-11 03:18:20','2021-01-11 03:18:20',NULL),(635,'1056.2','uploads/all/OoXfhOra34BWAJIrch0gdWotszME1QxbIetVMpkG.jpg',9,56022,'jpg','image','2021-01-11 03:18:20','2021-01-11 03:18:20',NULL),(636,'1058.2','uploads/all/naeAd6tBj5MJC17OVIqz379OfLXX5Ncd1Tjw5C6v.jpg',9,114592,'jpg','image','2021-01-11 03:18:21','2021-01-11 03:18:21',NULL),(637,'Untitled-1Artboard 1','uploads/all/jalq8AceKuntFcBNBG5RkdPnMi3KElyAzCzjfZUC.jpg',9,45481,'jpg','image','2021-01-11 03:18:36','2021-01-11 03:18:36',NULL),(638,'Untitled-1Artboard 2','uploads/all/mDxjpo5hD2DCFNji0akrBP6zyIsVpyLpnZ57M3AR.jpg',9,55010,'jpg','image','2021-01-11 03:19:13','2021-01-11 03:19:13',NULL),(639,'1059.1','uploads/all/TaS3i1ccdl8oIHhN0OMHCWHfG8XtAKUb7KTVJJO2.jpg',9,54456,'jpg','image','2021-01-11 03:19:31','2021-01-11 03:19:31',NULL),(640,'1059.2','uploads/all/xMiEpUi8pbGSxwc0bXkc5qJtwLVhp62qZymytqMd.jpg',9,75479,'jpg','image','2021-01-11 03:19:32','2021-01-11 03:19:32',NULL),(641,'1059.3','uploads/all/KVI6IQg773C4NMGibe9jAF7IUl3CFHMSeCPQgnGj.jpg',9,94272,'jpg','image','2021-01-11 03:19:32','2021-01-11 03:19:32',NULL),(642,'1059','uploads/all/D78pMXaYCVPpoxNq40fHDD9IRAVHPoo1YtTYFIeI.jpg',9,146071,'jpg','image','2021-01-11 03:19:33','2021-01-11 03:19:33',NULL),(643,'1060','uploads/all/9NatLY6rkXlopQZd6ZiPtD7LNY7USYfPrdg9fIl4.jpg',9,18628,'jpeg','image','2021-01-11 03:20:11','2021-01-11 03:20:11',NULL),(644,'1060.1','uploads/all/GZE0P9Ox657JS1o7fGHkH5m4bjDtTuvOwBeoiwIj.jpg',9,48529,'jpg','image','2021-01-11 03:20:11','2021-01-11 03:20:11',NULL),(645,'1060.2','uploads/all/MW1fjmHqDql4piCVdLgrpwn5Ml9YBCsYNzhs68nv.jpg',9,67388,'jpg','image','2021-01-11 03:20:11','2021-01-11 03:20:11',NULL),(646,'1060.3','uploads/all/TVl3Yt2Or0uyXOXlzTov23KxuRxnJkOR0nDMCBcW.jpg',9,49371,'jpg','image','2021-01-11 03:20:11','2021-01-11 03:20:11',NULL),(647,'Untitled-1Artboard 3','uploads/all/3PlH2yTIbPEZSOLGR2ePI4tqSqU0FKgP3c7Egw2n.jpg',9,43113,'jpg','image','2021-01-11 03:20:25','2021-01-11 03:20:25',NULL),(648,'Untitled-1Artboard 4','uploads/all/FSTyWKShqyi3vvPjOr2FEqZbnJYmXSkmBMMQpStS.jpg',9,59541,'jpg','image','2021-01-11 03:21:06','2021-01-11 03:21:06',NULL),(649,'1061.1','uploads/all/ZdkmcgYwQjf95kMIR4vCCgSZ2lOY4Xn47eL1cPol.jpg',9,63348,'jpg','image','2021-01-11 03:21:30','2021-01-11 03:21:30',NULL),(650,'1063.1','uploads/all/j1u64Dmb1ouh54NybM8sllrDPyQwm5KCw786v6qh.jpg',9,62619,'jpg','image','2021-01-11 03:34:15','2021-01-11 03:34:15',NULL),(651,'1063.3','uploads/all/Vm4pqQof6e3sYu7qCl9xeTsiJhoYHEdpYxgA9b0v.jpg',9,80044,'jpg','image','2021-01-11 03:34:15','2021-01-11 03:34:15',NULL),(652,'1063','uploads/all/sM6u1iCaSE2Oa3LAOW8bs7BolULwcN8mVQvvZUS8.jpg',9,62619,'jpg','image','2021-01-11 03:34:15','2021-01-11 03:34:15',NULL),(653,'1063.2','uploads/all/QECzcIgqaaBm0sNV3CgIbc4kjJes2k7YLkkPYTv6.jpg',9,70701,'jpg','image','2021-01-11 03:34:15','2021-01-11 03:34:15',NULL),(654,'Untitled-1Artboard 5','uploads/all/t4SPY5i4JEb8vlJ98Sy1lbWBy4Q2nfEK9CaZOvU9.jpg',9,49958,'jpg','image','2021-01-11 03:34:29','2021-01-11 03:34:29',NULL),(655,'Untitled-1Artboard 6','uploads/all/OvvjvC2gkqtBlDVppCECgPUq82qI4AmJs7sggWRK.jpg',9,38944,'jpg','image','2021-01-11 03:35:30','2021-01-11 03:35:30',NULL),(656,'1064.2','uploads/all/eCFqpeSDl53flQj5MHXeKALXy2g9vCbB72PCpWmQ.jpg',9,7175,'jpg','image','2021-01-11 03:36:02','2021-01-11 03:36:02',NULL),(657,'1064.1','uploads/all/xbcbCs1pivOGoZZurdvwNIFNi6WrwBjsRYQhh5I0.jpg',9,18645,'jpg','image','2021-01-11 03:36:02','2021-01-11 03:36:02',NULL),(658,'1064','uploads/all/HQYPs9tfPE85XU2XNQa9zAxGTEqvIai7mj3V2GBD.png',9,134780,'png','image','2021-01-11 03:36:03','2021-01-11 03:36:03',NULL),(659,'1065.1','uploads/all/1S4H3zx08K3NE7dhehX2xLA2JFd5XFEqZW1vwmXT.jpg',9,81669,'jpeg','image','2021-01-11 03:36:46','2021-01-11 03:36:46',NULL),(660,'1065.2','uploads/all/5cP4O8bZO5SVQYqL9SuIb6sx097l0zBcq7KC5pgU.jpg',9,90051,'jpg','image','2021-01-11 03:36:48','2021-01-11 03:36:48',NULL),(661,'Untitled-1Artboard 7','uploads/all/VCFWDIJSBrBLcECht9Cd8d7D7qmnvdZFXEjkIz5V.jpg',9,73478,'jpg','image','2021-01-11 03:37:09','2021-01-11 03:37:09',NULL),(662,'body day 2Artboard 5','uploads/all/CPI9vTwDbnGAHbM6x66D76ijQ3Cr271I4S6Qy6Ol.jpg',9,57748,'jpg','image','2021-01-11 03:37:41','2021-01-11 03:37:41',NULL),(663,'1062.2','uploads/all/nsizutdd4XpP5IyT2P0qPRAAjaytmjBsfVxnhqXd.jpg',9,64387,'jpg','image','2021-01-11 03:38:10','2021-01-11 03:38:10',NULL),(664,'1062.1','uploads/all/RxJjxoNVnbWpMpiognCkVmY3sM4mvDAsEFC1wIyk.jpg',9,59286,'jpg','image','2021-01-11 03:38:10','2021-01-11 03:38:10',NULL),(665,'1062.3','uploads/all/fwxlGr2TV8SFOtl3HM0Aq1yq17tuoZXOai4PHtUD.jpg',9,78557,'jpg','image','2021-01-11 03:38:10','2021-01-11 03:38:10',NULL),(666,'1062','uploads/all/mPkqgmTV2hmnUd7Wwamit7Y9abei7ZtT1DJKwlaB.jpg',9,35855,'jpg','image','2021-01-11 03:38:10','2021-01-11 03:38:10',NULL),(667,'2068.2','uploads/all/marBEXpZmcU8aIEYYZVW7RvzfYpPCjDdaHJWREAb.jpg',9,44772,'jpg','image','2021-01-11 03:39:46','2021-01-11 03:39:46',NULL),(668,'2068','uploads/all/shNhbxrN3ye4VnqwKCD6lWJ1CeqTLP6KCno5DFhg.jpg',9,51786,'jpg','image','2021-01-11 03:39:46','2021-01-11 03:39:46',NULL),(669,'body sprey gridsArtboard 1','uploads/all/s05V3zyAbrFzkoUEzYkA78gPYkmb6djgoIgq4QSx.jpg',9,62418,'jpg','image','2021-01-11 03:40:08','2021-01-11 03:40:08',NULL),(670,'body sprey gridsArtboard 2','uploads/all/XVcoi9uaF0rQYP8kbQrrU0YNbQLQmGTxTHImDxY1.jpg',9,60562,'jpg','image','2021-01-11 03:40:44','2021-01-11 03:40:44',NULL),(671,'2069.1','uploads/all/xqIS29Oyy4728o7Fsh5kHrxLFvla52Q95XcuQyjX.jpg',9,44933,'jpg','image','2021-01-11 03:40:55','2021-01-11 03:40:55',NULL),(672,'2069','uploads/all/gPMbVyFe8MKFE7KsATFxCGyKkUxIgobZxmFJmfld.jpg',9,161356,'jpg','image','2021-01-11 03:40:55','2021-01-11 03:40:55',NULL),(673,'2070','uploads/all/0k3twN6h0TWu5CJimJ47KuBFEaZlF9fWiI4k6MZc.jpg',9,207159,'jpg','image','2021-01-11 03:41:45','2021-01-11 03:41:45',NULL),(674,'body sprey gridsArtboard 3','uploads/all/vOf1uWGZvnkutp84N0RzWxSJOciPe3FmDUAZFQ17.jpg',9,64642,'jpg','image','2021-01-11 03:41:55','2021-01-11 03:41:55',NULL),(675,'body sprey gridsArtboard 4','uploads/all/tJXFEXl2cIUZA8hrjtdGcXQvTnfzoXDP4CuiXJI1.jpg',9,67864,'jpg','image','2021-01-11 03:42:36','2021-01-11 03:42:36',NULL),(676,'2071.3','uploads/all/SvhPT7V3zp9ZopkSzhkbRQiiNw9qPL0hFy13NXNI.jpg',9,39277,'jpg','image','2021-01-11 03:46:35','2021-01-11 03:46:35',NULL),(677,'2071.4','uploads/all/rqCn94VeA7zuKOOi7lwLt4u3GBNvQKVGkb8OvuQO.jpg',9,43808,'jpg','image','2021-01-11 03:46:35','2021-01-11 03:46:35',NULL),(678,'2071.2','uploads/all/KUPeL6CaLZBGMDwgOyHlaKO45tk58YoXkvVKqrTm.jpg',9,17618,'jpeg','image','2021-01-11 03:46:35','2021-01-11 03:46:35',NULL),(679,'2072.1','uploads/all/3owuPSzBx6kM1TdhB1FPAO75aTyECbtx14oWqVep.jpg',9,42727,'jpg','image','2021-01-11 03:47:42','2021-01-11 03:47:42',NULL),(680,'body sprey gridsArtboard 5','uploads/all/GS5sQM7kScs6rMRhwasDajR05YB3hxog0ID42K5s.jpg',9,72392,'jpg','image','2021-01-11 03:47:54','2021-01-11 03:47:54',NULL),(681,'body sprey gridsArtboard 6','uploads/all/Hzzxb0I6i8rTqXn2eYHhNizupxMFFNVHotzqmRDy.jpg',9,73302,'jpg','image','2021-01-11 03:48:30','2021-01-11 03:48:30',NULL),(682,'2073','uploads/all/PtHTJdaG6Nv8N4SotuYZmDpTpe97HiKlCb6gn55B.jpg',9,47062,'jpg','image','2021-01-11 03:48:45','2021-01-11 03:48:45',NULL),(683,'2074.1','uploads/all/lnKr6wOJxgMieMXOQwDQs1NLy3toVrnFGl30KuR5.jpg',9,35772,'jpg','image','2021-01-11 03:49:30','2021-01-11 03:49:30',NULL),(684,'2074','uploads/all/iIULf2SVDVOvFiN1oMPlwlr3sP82zCexclA7lqvQ.jpg',9,193517,'jpg','image','2021-01-11 03:49:31','2021-01-11 03:49:31',NULL),(685,'body sprey gridsArtboard 7','uploads/all/SnlVQ5o4zeQ6JSv49pXVZDRlfy1SNQQ0a0Zoxrr0.jpg',9,49138,'jpg','image','2021-01-11 03:49:44','2021-01-11 03:49:44',NULL),(686,'body sprey gridsArtboard 8','uploads/all/Oar8fAqbNfEXsTc4Mq1eGi7usVUGe98f98w8APw3.jpg',9,61815,'jpg','image','2021-01-11 03:50:21','2021-01-11 03:50:21',NULL),(687,'2075','uploads/all/jMrT8bFQZQ75XfPriuoMOUrFnQW1yVQUK9JWk5Ks.jpg',9,36143,'jpg','image','2021-01-11 03:50:32','2021-01-11 03:50:32',NULL),(688,'2076.1','uploads/all/QdWU6CcgNz2fDNLA7ZwdXQV280XNPhVrLVCGeJuO.jpg',9,50559,'jpg','image','2021-01-11 03:51:12','2021-01-11 03:51:12',NULL),(689,'body sprey gridsArtboard 9','uploads/all/8FA5GhIP6o6cTIhDTzIvT3vVDzpiwehDnzKDw7IP.jpg',9,53971,'jpg','image','2021-01-11 03:51:25','2021-01-11 03:51:25',NULL),(690,'body sprey gridsArtboard 10','uploads/all/KCLVAKjo0JynFqYfZ8H3ebL0ojUP3LVSWnsDwTG5.jpg',9,51510,'jpg','image','2021-01-11 03:52:11','2021-01-11 03:52:11',NULL),(691,'2077','uploads/all/PcKRYAhfCFZKCkxnjzSQQIakkBBbWl2yOS77gLPK.jpg',9,17471,'jpg','image','2021-01-11 03:52:25','2021-01-11 03:52:25',NULL),(692,'2077.1','uploads/all/THbqfn5SUZg9onWJeNtnWECcTswOyTjliV0s5aaJ.jpg',9,33051,'jpg','image','2021-01-11 03:52:25','2021-01-11 03:52:25',NULL),(693,'2078','uploads/all/4MlQ6jsX6HzEhHFx4JrHLVEPbVemdazHQ2MB1hdb.jpg',9,161684,'jpg','image','2021-01-11 03:53:10','2021-01-11 03:53:10',NULL),(694,'body sprey gridsArtboard 11','uploads/all/GN7LaXJNBTShCy6MhMGxIU4jiFawGrEJxplHW2Oh.jpg',9,51044,'jpg','image','2021-01-11 03:53:19','2021-01-11 03:53:19',NULL),(695,'body sprey gridsArtboard 12','uploads/all/fXvcyY8L8unIreZWtTkt7RcAsh0Wrc4pUDOccbvj.jpg',9,55175,'jpg','image','2021-01-11 03:55:03','2021-01-11 03:55:03',NULL),(696,'2079.2','uploads/all/i8ij98QLXEsUqkoqGECk4hd1i4WVuuVB4nLKXn0A.webp',9,2026,'webp','image','2021-01-11 03:55:18','2021-01-11 03:55:18',NULL),(697,'2079.1','uploads/all/3ZuUO2P0JsJbYA7flVICIaEkPOPjOTC1ANp8Gr24.webp',9,2778,'webp','image','2021-01-11 03:55:39','2021-01-11 03:55:39',NULL),(698,'2080.1','uploads/all/0n3D3vrqTK5cmSwtZHUDO69PFPo2rmf6OzJi2OaU.jpg',9,40747,'jpg','image','2021-01-11 03:56:47','2021-01-11 03:56:47',NULL),(699,'body sprey gridsArtboard 13','uploads/all/VHSseXuH4BWbYTUcY9ZMdNIjn7ipVt0RNcGMO0Zy.jpg',9,50136,'jpg','image','2021-01-11 03:57:02','2021-01-11 03:57:02',NULL),(700,'body sprey gridsArtboard 14','uploads/all/8q5mi7Vxv5ybWcCrbGqlKXscd6QOojbW5WdW0chK.jpg',9,51517,'jpg','image','2021-01-11 03:57:52','2021-01-11 03:57:52',NULL),(701,'2081','uploads/all/ZBXzeYxIRuPnWt3A18kX8jZ8de4TDMBPSziDqdRY.jpg',9,133416,'jpg','image','2021-01-11 03:58:09','2021-01-11 03:58:09',NULL),(702,'1079.3','uploads/all/yPXPlf67rJJUpmtjkcj7ny0512XWgjsQ3R6cVTNB.jpg',9,22860,'jpg','image','2021-01-11 03:59:05','2021-01-11 03:59:05',NULL),(703,'1079.1','uploads/all/9WAzhjVGqmxed9DuzsJmkq250Z8vVoLeEUu5ydJQ.jpg',9,61392,'jpg','image','2021-01-11 03:59:05','2021-01-11 03:59:05',NULL),(704,'1079.2','uploads/all/8QM7MCB6XsJle1DTohVi5Q6KKFnI7Wj8KjVLK6O5.jpg',9,52222,'jpg','image','2021-01-11 03:59:05','2021-01-11 03:59:05',NULL),(705,'1079','uploads/all/gyE7NaKW3Eqfkc67XpoWg6HnGrQaMqIpgAh2MNp5.jpg',9,118600,'jpg','image','2021-01-11 03:59:06','2021-01-11 03:59:06',NULL),(706,'1079-13','uploads/all/3zKKLDj3aH17UtgJvRB3BYq7c9chEbpywWnxL6Yj.jpg',9,1077141,'jpg','image','2021-01-11 03:59:20','2021-01-11 03:59:20',NULL),(707,'body sprey gridsArtboard 15','uploads/all/Xo1KWG8WZc8aApPdicrwIvg2jdly4O5U50X6DPk9.jpg',9,55361,'jpg','image','2021-01-11 04:00:14','2021-01-11 04:00:14',NULL),(708,'2082.1','uploads/all/pLQv4h19OjPGxzsb94PwcFYccWq2ssslXAniaNYZ.jpg',9,58480,'jpg','image','2021-01-11 04:00:28','2021-01-11 04:00:28',NULL),(709,'2082.2','uploads/all/qIvAjta7Y2uYHYFpFPuR9OqkGJC5OulSwhZk3c6g.jpg',9,18999,'jpeg','image','2021-01-11 04:00:28','2021-01-11 04:00:28',NULL),(710,'body sprey gridsArtboard 19','uploads/all/cHdaA7oOxatgakdE3CNOWtsDnlxRPyh9dkCmVk9q.jpg',9,55563,'jpg','image','2021-01-11 04:01:33','2021-01-11 04:01:33',NULL),(711,'2084','uploads/all/LatvAkHZ6M3nY2Z1RW5sjTy1LBaAaJBSZ7oRHZpy.jpg',9,19131,'jpg','image','2021-01-11 04:02:18','2021-01-11 04:02:18',NULL),(712,'body sprey gridsArtboard 16','uploads/all/ef3zObAmN79PI8dBhCdzvoyKiSfqIgU2UOeulppP.jpg',9,78710,'jpg','image','2021-01-11 04:02:30','2021-01-11 04:02:30',NULL),(713,'2085','uploads/all/suDja2XQO6InBxzVJLNlvs4Xobu5qJttP1I7Qpku.jpg',9,60793,'jpg','image','2021-01-11 04:03:22','2021-01-11 04:03:22',NULL),(714,'body sprey gridsArtboard 20','uploads/all/Ejtr3VP7wA53SpLlm4fTYuVtyClzbXNqHIdpxgGd.jpg',9,50799,'jpg','image','2021-01-11 04:03:38','2021-01-11 04:03:38',NULL),(715,'2086','uploads/all/02GwINys987utJplfSjF65HE6n9t8COPrwuOkdzx.jpg',9,29104,'jpg','image','2021-01-11 04:04:18','2021-01-11 04:04:18',NULL),(716,'body sprey gridsArtboard 17','uploads/all/X4331toM2zQdoi1bpBQaSoHBqADu59xOkv5Mk9O0.jpg',9,75104,'jpg','image','2021-01-11 04:04:31','2021-01-11 04:04:31',NULL),(717,'2087','uploads/all/Qo1UP1x6nQW85mOGCSiYnPuiVEB7pLxLKlGk4FjW.jpg',9,18638,'jpg','image','2021-01-11 04:05:24','2021-01-11 04:05:24',NULL),(718,'body sprey gridsArtboard 18','uploads/all/mhu3MpSd9fjIqJz9Adz4pHxwkwz7qq39zLWLIZZP.jpg',9,63078,'jpg','image','2021-01-11 04:05:34','2021-01-11 04:05:34',NULL),(719,'2088','uploads/all/wJx5V68rQA0t5ilsFFjhzMyp2h2LwUgpoJKs2p60.jpg',9,23219,'jpg','image','2021-01-11 04:06:22','2021-01-11 04:06:22',NULL),(720,'body sprey gridsArtboard 21','uploads/all/2h70ctXy2xIANmdxfnyqyVuGa1ExDggNNSmOEgbo.jpg',9,50238,'jpg','image','2021-01-11 04:06:36','2021-01-11 04:06:36',NULL),(721,'body sprey gridsArtboard 22','uploads/all/YQaBFDOxBfxCu9Zm7GOCIJVASDZ8nl7w8n2QjFvH.jpg',9,56238,'jpg','image','2021-01-11 04:07:11','2021-01-11 04:07:11',NULL),(722,'2089','uploads/all/QCcO3JU2BwbpfzJiX9ajyVh0kRpeaspjvPcFVd8F.jpg',9,19474,'jpg','image','2021-01-11 04:07:22','2021-01-11 04:07:22',NULL),(723,'2090.1','uploads/all/BQKYKLcEU0wpigOjGCtKHXzoXHHr5yJvKW1vVO2t.jpg',9,27054,'jpg','image','2021-01-11 04:08:12','2021-01-11 04:08:12',NULL),(724,'2090','uploads/all/koUDKksr6S8KcdcUe72HuC4t3k38Sc1tdJfVXbXX.jpg',9,44825,'jpg','image','2021-01-11 04:08:12','2021-01-11 04:08:12',NULL),(725,'body sprey gridsArtboard 23','uploads/all/9KEwixCY2RQOngNiCgQoUyf9UTWn6MYOSIMP3AmS.jpg',9,48762,'jpg','image','2021-01-11 04:08:26','2021-01-11 04:08:26',NULL),(726,'1080.1','uploads/all/WFu8SuRq70TbmvvZ8PgqCyBolamZB3LKsmmNVQ19.jpg',9,62150,'jpg','image','2021-01-11 04:09:23','2021-01-11 04:09:23',NULL),(727,'1080','uploads/all/75mSmYKk1Ei1tIRXDELG7X19865QlVXVKZ6omhqa.jpg',9,76844,'jpg','image','2021-01-11 04:09:23','2021-01-11 04:09:23',NULL),(728,'1080.3','uploads/all/ho601gyJ8Epw8Kp669Uhc9w7YwSupOTCiVG93LOQ.jpg',9,143907,'jpg','image','2021-01-11 04:09:23','2021-01-11 04:09:23',NULL),(729,'1080-14','uploads/all/Yn6bSDYIe39wvtbanAnB4bVqWczPLG2jcPmTfM9o.jpg',9,1368764,'jpg','image','2021-01-11 04:09:36','2021-01-11 04:09:36',NULL),(730,'2091.1','uploads/all/UO8PGzSE6SVLav1gzalIMdV4fXWwrLYbgWjwqGMi.jpg',9,85797,'jpg','image','2021-01-11 04:10:23','2021-01-11 04:10:23',NULL),(731,'2091','uploads/all/APMHSx1O1gfYeqRyUlwh4rXPANdW8q0ysJMCrOVD.jpg',9,63495,'jpg','image','2021-01-11 04:10:23','2021-01-11 04:10:23',NULL),(732,'2091.2','uploads/all/cLrqrsQXAXc8sGyZKB09HNe36pQMMJirOJOyEV6u.jpg',9,16673,'jpg','image','2021-01-11 04:10:24','2021-01-11 04:10:24',NULL),(733,'body sprey gridsArtboard 24','uploads/all/tGa9Ln1BBaad2D8Clh2BI0zmBejhoNOtQQhpd0h2.jpg',9,57951,'jpg','image','2021-01-11 04:10:47','2021-01-11 04:10:47',NULL),(734,'2092','uploads/all/VeUJ4GuMV7PwTP5EtVzo5zqQ9AewebrryjP54RJg.jpg',9,45923,'jpg','image','2021-01-11 04:12:28','2021-01-11 04:12:28',NULL),(735,'2092.1','uploads/all/KlkeEDATxsTEpISpyXEAGxPhCCXmaBQS4PfPghGE.jpg',9,85139,'jpg','image','2021-01-11 04:12:28','2021-01-11 04:12:28',NULL),(736,'body sprey gridsArtboard 25','uploads/all/dE5p1jaAUyxVIalaoB3Vn5095vU2QzBdhFUrH4Rn.jpg',9,51083,'jpg','image','2021-01-11 04:12:44','2021-01-11 04:12:44',NULL),(737,'body sprey gridsArtboard 26','uploads/all/60Of1g69juQ9F3EhYr3bjcJ7g4mNOUafzsuImU3Z.jpg',9,54676,'jpg','image','2021-01-11 04:13:21','2021-01-11 04:13:21',NULL),(738,'2093.1','uploads/all/VKXdOV8HO17rXPTu5HaTXRQRIfjY5sXWN5iLEx9W.jpg',9,77097,'jpg','image','2021-01-11 04:13:38','2021-01-11 04:13:38',NULL),(739,'2093','uploads/all/pYrruLg4Fy5Eim8BMtmpJPlC4QowkRQaDU7TaOYZ.png',9,456400,'png','image','2021-01-11 04:13:38','2021-01-11 04:13:38',NULL),(740,'2094.1','uploads/all/oGsGRgEdioXQN12fC4YHmb7pl2WpLk543xDsJewr.jpg',9,129445,'jpg','image','2021-01-11 04:14:17','2021-01-11 04:14:17',NULL),(741,'2094','uploads/all/o1DHuvdqZi4eIOM9RBEsuwSj6QLTsIflri54feBh.png',9,542319,'png','image','2021-01-11 04:14:19','2021-01-11 04:14:19',NULL),(742,'body sprey gridsArtboard 27','uploads/all/6ZFylCImwWhH3aAMTCgPYo7KJvZfzgsuzhfnti37.jpg',9,47638,'jpg','image','2021-01-11 04:14:32','2021-01-11 04:14:32',NULL),(743,'body sprey gridsArtboard 28','uploads/all/38UrigPhuK9OkjU52Zf4qenhvNasWceZsW71eLr6.jpg',9,55605,'jpg','image','2021-01-11 04:15:36','2021-01-11 04:15:36',NULL),(744,'2095','uploads/all/dvz4KdL1L8rWH7jRI7Op73k1zvybEDY46w44adMt.jpg',9,60168,'jpg','image','2021-01-11 04:15:49','2021-01-11 04:15:49',NULL),(745,'2095.1','uploads/all/SSIamoJ29lRndCHwbEPeOTJOjF09NyYkzUfWIejH.jpg',9,134012,'jpg','image','2021-01-11 04:15:49','2021-01-11 04:15:49',NULL),(746,'2096','uploads/all/JaNB2yxkQcCji3dcJejlXOpM2hKfR3MpjG9xVtDA.jpg',9,69075,'jpg','image','2021-01-11 04:16:32','2021-01-11 04:16:32',NULL),(747,'body sprey gridsArtboard 29','uploads/all/DGZkc4eSaVmTzjT4nb5cofzxt9AxZujAXhyWdtAI.jpg',9,55790,'jpg','image','2021-01-11 04:16:43','2021-01-11 04:16:43',NULL),(748,'body sprey gridsArtboard 30','uploads/all/f9TRB7VOH1r3K8rAjQaHKR7xumU92B6D21tLYHSm.jpg',9,49738,'jpg','image','2021-01-11 04:17:22','2021-01-11 04:17:22',NULL),(749,'2097.2','uploads/all/vpJ5I3T8oziBycy2KXp5cC88xI6KvdPVDyrUB2Sv.jpg',9,33638,'jpg','image','2021-01-11 04:17:38','2021-01-11 04:17:38',NULL),(750,'2097','uploads/all/J3GKjeGKw7BimhqDC5W3ACd6b3mavdNxCZMrBLR8.jpg',9,24700,'jpg','image','2021-01-11 04:17:38','2021-01-11 04:17:38',NULL),(751,'2097.1','uploads/all/6Jh4jmo9FjvxhPhIjMpAV4rP8djlBbKmOd5GuMNk.jpg',9,38227,'jpg','image','2021-01-11 04:17:38','2021-01-11 04:17:38',NULL),(752,'2098','uploads/all/VM5wjHT2Sg3kzDIE6CkagUZbMrKrhtRaEur1tk7Q.jpg',9,19349,'jpg','image','2021-01-11 04:18:19','2021-01-11 04:18:19',NULL),(753,'2098.1','uploads/all/K5jG1NCTX9vWJcH2RqF3I3Hthkk7aggHfnNM2vxG.jpg',9,131062,'jpg','image','2021-01-11 04:18:20','2021-01-11 04:18:20',NULL),(754,'body sprey gridsArtboard 42','uploads/all/fcCsaft8hJJrWO1f53YDrm4YsPcYIHIMC6X5erSG.jpg',9,79255,'jpg','image','2021-01-11 04:21:16','2021-01-11 04:21:16',NULL),(755,'body day 2Artboard 8','uploads/all/itJhO8FhYRquHWqmxgWIwg90rwpnRkOmMKXvWJIz.jpg',9,75758,'jpg','image','2021-01-11 04:23:09','2021-01-11 04:23:09',NULL),(756,'2099.1','uploads/all/Y9eWZpac3qVghlqgfUFzhggkHPRhW4wcKVCYf04G.jpg',9,173215,'jpg','image','2021-01-11 04:23:32','2021-01-11 04:23:32',NULL),(757,'2099.2','uploads/all/XPG4tOrwkIEeWIt2LdjZYaOw0uWVf5bQONZnuv0x.jpg',9,131127,'jpg','image','2021-01-11 04:23:32','2021-01-11 04:23:32',NULL),(758,'2099','uploads/all/L1NGLJfwWEnnPIV2f6JGDVPbfbRCEKss7YaCcDYP.jpg',9,214664,'jpg','image','2021-01-11 04:23:33','2021-01-11 04:23:33',NULL),(759,'3000','uploads/all/ReHbVLqcAFSYfJ6lEdO2HF898JUlxFKFQ8isIpPy.jpg',9,8416,'jpg','image','2021-01-11 04:24:17','2021-01-11 04:24:17',NULL),(760,'body sprey gridsArtboard 31','uploads/all/rWRMMr41dQG4zyYiVbo15NE8QOMor4EcwDyAVQ6u.jpg',9,60881,'jpg','image','2021-01-11 04:24:32','2021-01-11 04:24:32',NULL),(761,'3001','uploads/all/n0PR4fy8wbaOjpIY1DK7pmqdpqlp0yTgIQOjbGuy.jpg',9,58036,'jpg','image','2021-01-11 04:25:21','2021-01-11 04:25:21',NULL),(762,'body sprey gridsArtboard 35','uploads/all/9ABW8XwNIRJeesEtbVIB2uBynNgohBa3U2nQcxEh.jpg',9,54673,'jpg','image','2021-01-11 04:25:50','2021-01-11 04:25:50',NULL),(763,'3002','uploads/all/I3WgeaqhbTs4XziyM8RCOfnIohc8aqBWglGWUnCo.jpg',9,17447,'jpg','image','2021-01-11 04:26:43','2021-01-11 04:26:43',NULL),(764,'3002.1','uploads/all/Kg7Iz3oaFjL55Kw1tSR1UmDCQEeh9OjJSYVS5tJJ.jpg',9,13230,'jpg','image','2021-01-11 04:26:43','2021-01-11 04:26:43',NULL),(765,'body sprey gridsArtboard 43','uploads/all/h38USE5dx7qy5V0YE9pkmgVY9h7YcsFarIsLdqE3.jpg',9,48459,'jpg','image','2021-01-11 04:26:58','2021-01-11 04:26:58',NULL),(766,'1081-15','uploads/all/UljBbhFowV2rtQeDEEzMCCw3VLXpzRUfYJS6dM7B.jpg',9,1223428,'jpg','image','2021-01-11 04:28:17','2021-01-11 04:28:17',NULL),(767,'1081','uploads/all/qy9UNlKjmT4j5LYXBgHkAdrdPPOnLHilEQ7lJK9v.jpg',9,45644,'jpg','image','2021-01-11 04:28:50','2021-01-11 04:28:50',NULL),(768,'3003','uploads/all/8scxgFDxQfc8yPJ42C5cmOi1Z8xVeYD9xWQa64vk.jpg',9,22806,'jpg','image','2021-01-11 04:29:37','2021-01-11 04:29:37',NULL),(769,'body sprey gridsArtboard 44','uploads/all/tN4yRzDZj4p4PiBwCxPZINMNX9f4TuiJPZnthupK.jpg',9,54227,'jpg','image','2021-01-11 04:29:59','2021-01-11 04:29:59',NULL),(770,'body sprey gridsArtboard 50','uploads/all/zLUOtPxO8AcvicDGduh5XypFWlGS6SQbOfbrigqt.jpg',9,56028,'jpg','image','2021-01-11 04:30:44','2021-01-11 04:30:44',NULL),(771,'3004','uploads/all/nlqjTgztzs7fBtB0RcGdUbEFZ6Rc5ARmHQ9UFxUL.jpg',9,23860,'jpeg','image','2021-01-11 04:30:57','2021-01-11 04:30:57',NULL),(772,'1082.2','uploads/all/dN9qlQ96LiMAoSByQK8x2DCaIDBgdOG0d70rCSJp.jpg',9,11003,'jpg','image','2021-01-11 04:31:49','2021-01-11 04:31:49',NULL),(773,'1082.1','uploads/all/Ij6fupVOzLfvux27m6L6YMpYxeBfBO2Fk3VfQ5yt.jpg',9,31012,'jpg','image','2021-01-11 04:31:50','2021-01-11 04:31:50',NULL),(774,'1082','uploads/all/hzJEx43pPjC3xumexqgSVbBnCx5bCkMoJu8RKo2u.jpg',9,31012,'jpg','image','2021-01-11 04:31:50','2021-01-11 04:31:50',NULL),(775,'1082-16','uploads/all/qVo57bexMCSYh1bZY6Jpv5Ep5ZzECknwt8lMVjTm.jpg',9,1467575,'jpg','image','2021-01-11 04:32:06','2021-01-11 04:32:06',NULL),(776,'3005','uploads/all/fP9wFr6LdjK9cpeteEMX0Rq9wGYpv4YUBkZ46rUO.jpg',9,13527,'jpg','image','2021-01-11 04:33:40','2021-01-11 04:33:40',NULL),(777,'body sprey gridsArtboard 51','uploads/all/rdmaFH8INil1kq51jZ2TD5PsWzVmJe2Ip1xF7Dng.jpg',9,53523,'jpg','image','2021-01-11 04:33:52','2021-01-11 04:33:52',NULL),(778,'1083','uploads/all/o0U3ztDTAXjRgUwkcru3oNKABdNtBKTEK2LQTS18.jpg',9,32747,'jpg','image','2021-01-11 04:34:32','2021-01-11 04:34:32',NULL),(779,'1083-17','uploads/all/6L6zqoYiQUVag3LRdyCg3zRNe6Tb02qfFKYLm4Zd.jpg',9,1246868,'jpg','image','2021-01-11 04:34:47','2021-01-11 04:34:47',NULL),(780,'3006.2','uploads/all/X8C2acJeZnE0epGtFx4Bg2z4AmCt9GeQda8SPNIG.jpg',9,11755,'jpg','image','2021-01-11 04:35:33','2021-01-11 04:35:33',NULL),(781,'3006','uploads/all/uNxrdWz98UDDoaI3PGzywJAkmjvZTD3GNFPN7LXE.jpg',9,17236,'jpg','image','2021-01-11 04:35:34','2021-01-11 04:35:34',NULL),(782,'3006.1','uploads/all/8zGf2nybSwSRDIsfbiZPBSaX7dW6pGjnoJK3VUgB.jpg',9,81711,'jpg','image','2021-01-11 04:35:34','2021-01-11 04:35:34',NULL),(783,'body sprey gridsArtboard 41','uploads/all/jwtPitt7fcCDwIHtYe977gwS2PBUCVs7i0TyjgO2.jpg',9,64600,'jpg','image','2021-01-11 04:35:51','2021-01-11 04:35:51',NULL),(784,'3007','uploads/all/2WZLD5I2pO8nnMeu076iBtP8mlzPDJB8nAelaw4k.jpg',9,24744,'jpeg','image','2021-01-11 04:36:39','2021-01-11 04:36:39',NULL),(785,'body sprey gridsArtboard 32','uploads/all/KsoPjaETMSVtR7WRrVBkWEZrYVpvGUPJVvH2Uj53.jpg',9,78798,'jpg','image','2021-01-11 04:36:49','2021-01-11 04:36:49',NULL),(786,'3008.2','uploads/all/TheMepW5nIbY776tUIagL0T8raG3DMHAHJSZ4jIt.jpg',9,11508,'jpg','image','2021-01-11 04:37:26','2021-01-11 04:37:26',NULL),(787,'3008','uploads/all/mPizhOhEC4s8qKFd4M3fuZ2Y8CjEHkuboeSDaVjX.jpg',9,36339,'jpg','image','2021-01-11 04:37:26','2021-01-11 04:37:26',NULL),(788,'3008.1','uploads/all/YyKveYCEzALlktXW5GVegIgwkpesdHxDi75XhePy.jpg',9,138725,'jpg','image','2021-01-11 04:37:26','2021-01-11 04:37:26',NULL),(789,'body sprey gridsArtboard 39','uploads/all/uZo0T8suqesOWpv2ktfRHXcE1nNWAFX3lmxQiQ3r.jpg',9,63965,'jpg','image','2021-01-11 04:37:53','2021-01-11 04:37:53',NULL),(790,'3009','uploads/all/y4HoI2Y4s7AUw39QJC7PkalnyS6UzCMjQ2WHp8Ha.jpg',9,26461,'jpeg','image','2021-01-11 04:38:30','2021-01-11 04:38:30',NULL),(791,'3009.1','uploads/all/Zd6I2vqXZIW8n3qU2GDxZA2duEAaUFeyAW7MdBO5.jpg',9,132765,'jpg','image','2021-01-11 04:38:31','2021-01-11 04:38:31',NULL),(792,'body sprey gridsArtboard 33','uploads/all/nAjNV16ehHJB6iklpasGA6JtskHVwGQEZjPsS1QV.jpg',9,71263,'jpg','image','2021-01-11 04:38:43','2021-01-11 04:38:43',NULL),(793,'3010','uploads/all/pTCh70cIEENlLGZRNJHoOI1Q0CINPpViEMC1aYUL.jpg',9,26947,'jpeg','image','2021-01-11 04:39:26','2021-01-11 04:39:26',NULL),(794,'body sprey gridsArtboard 34','uploads/all/x8Q8o7F6ub4OSV4WftSwnyh1riajuxRxEr8ONeZW.jpg',9,63762,'jpg','image','2021-01-11 04:39:35','2021-01-11 04:39:35',NULL),(795,'3011.2','uploads/all/BnRfmCMMGdU0Q9qf6ROurvRilpCBtpyj9WUsmdDq.jpg',9,11637,'jpg','image','2021-01-11 04:40:12','2021-01-11 04:40:12',NULL),(796,'3011','uploads/all/ROwQgiPreNqjJLTQweWI0N3fhsJ2HrXmHVyxxa8X.jpg',9,76355,'jpg','image','2021-01-11 04:40:12','2021-01-11 04:40:12',NULL),(797,'3011.1','uploads/all/upfmvgQ4YhRpSFhQr0BmSR2qVv21MB6T0KFnHHv6.jpg',9,109712,'jpg','image','2021-01-11 04:40:12','2021-01-11 04:40:12',NULL),(798,'body sprey gridsArtboard 46','uploads/all/to4MZcdF1TgnVi2DxZb6ctjQo6IifGhhB5DOG0E6.jpg',9,61222,'jpg','image','2021-01-11 04:40:33','2021-01-11 04:40:33',NULL),(799,'3012.2','uploads/all/Tf2U0jHms8OouBr3ArzSrKEaaBOXeA6qs44BCIOp.jpg',9,10849,'jpg','image','2021-01-11 04:42:58','2021-01-11 04:42:58',NULL),(800,'3012','uploads/all/WCrQYi9x3o9xF93nOEuDC4pI9tSZthvPkH15mMZq.jpg',9,28536,'jpeg','image','2021-01-11 04:42:58','2021-01-11 04:42:58',NULL),(801,'3012.1','uploads/all/1WFIREvLBlytxSe4VS87PUUGz2dYiQBs2DHubwtT.jpg',9,89875,'jpg','image','2021-01-11 04:42:58','2021-01-11 04:42:58',NULL),(802,'body sprey gridsArtboard 37','uploads/all/xagDnyDhMnVHswuiUSzUFNTi5EgqEXIWBvU3Nx9i.jpg',9,61971,'jpg','image','2021-01-11 04:43:10','2021-01-11 04:43:10',NULL),(803,'body sprey gridsArtboard 45','uploads/all/XtyHKqumcyNT9AeiKTKgexBQG9uoVkUREMba3TWS.jpg',9,58615,'jpg','image','2021-01-11 04:43:23','2021-01-11 04:43:23',NULL),(804,'3013.1','uploads/all/a6trSSNSiEYVDOeQmovqgSi30g5NxuEPWLHJe5bA.jpg',9,2954,'jpg','image','2021-01-11 04:44:03','2021-01-11 04:44:03',NULL),(805,'3013','uploads/all/pemWlNUrysvpp5z8n5K4lWHyWAegg4L7PuBZAPWg.jpg',9,43074,'jpeg','image','2021-01-11 04:44:03','2021-01-11 04:44:03',NULL),(806,'body sprey gridsArtboard 33','uploads/all/j72UmvzJ3ugHPtk79tRDa0BlkJM0HwBymp1pvNjz.jpg',9,71263,'jpg','image','2021-01-11 04:44:16','2021-01-11 04:44:16',NULL),(807,'body sprey gridsArtboard 47','uploads/all/axXtSG2evGy8yPEiXNTyK40lJT31UsOlShWwDmFE.jpg',9,57800,'jpg','image','2021-01-11 04:44:30','2021-01-11 04:44:30',NULL),(808,'3014','uploads/all/MJzORNIk4ND0ZjtbI6W5OppA2A0jKpILHOoxo2le.jpg',9,24900,'jpeg','image','2021-01-11 04:45:12','2021-01-11 04:45:12',NULL),(809,'body sprey gridsArtboard 37','uploads/all/mijRZMUgrI0pCroDhM6SHHiuKXqM67whi9vTHzaI.jpg',9,61971,'jpg','image','2021-01-11 04:45:30','2021-01-11 04:45:30',NULL),(810,'3015','uploads/all/KvU5t1F4C7CJF58KuoDeBcKHdBB6hZWWP4b50cqF.jpg',9,68286,'jpeg','image','2021-01-11 04:46:11','2021-01-11 04:46:11',NULL),(811,'body sprey gridsArtboard 54','uploads/all/8UFTec9oefVFA8POSWlyQiUr5KEfo75VuKJN7jiS.jpg',9,50758,'jpg','image','2021-01-11 04:47:06','2021-01-11 04:47:06',NULL),(812,'body sprey gridsArtboard 54','uploads/all/Gwzkvfo9yRtCyBvnMNYhxWsn3gpwb6LWjqI25i2X.jpg',9,50758,'jpg','image','2021-01-11 04:47:07','2021-01-11 04:47:07',NULL),(813,'3016','uploads/all/mXMrv4EzbxYB9dVbijSq1LbJ74Trx28gBd3vlucJ.jpg',9,29586,'jpg','image','2021-01-11 04:53:30','2021-01-11 04:53:30',NULL),(814,'body sprey gridsArtboard 55','uploads/all/Hh8ABAteV3YzkH0Ufmg6gkGyZDLQhGzs1hWXXptN.jpg',9,53732,'jpg','image','2021-01-11 04:53:44','2021-01-11 04:53:44',NULL),(815,'3017','uploads/all/zzCFBFcoD6hey8Ww9DogRxOdPb2GEP3d0XaB3Yhv.jpg',9,52186,'jpg','image','2021-01-11 04:54:26','2021-01-11 04:54:26',NULL),(816,'body sprey gridsArtboard 38','uploads/all/iVBWgUdBCEb1YSEQtoW2nfxfCWQ1PrzDT82dUneP.jpg',9,63498,'jpg','image','2021-01-11 04:54:44','2021-01-11 04:54:44',NULL),(817,'3018','uploads/all/yVEa5PV3jCxGW5Q1VwqzqPOW1gvmS3H4IVimCPn8.jpg',9,30054,'jpeg','image','2021-01-11 04:55:27','2021-01-11 04:55:27',NULL),(818,'body sprey gridsArtboard 36','uploads/all/rTodzQC2F4fXI6WHYHUzMPfZAtq9DMkl5fY7ugz8.jpg',9,63973,'jpg','image','2021-01-11 04:55:55','2021-01-11 04:55:55',NULL),(819,'3019','uploads/all/3SuOrbQ87RTG9ymAZDbVzGoK91fivp4YuCyJHHRF.png',9,1088270,'png','image','2021-01-11 04:58:18','2021-01-11 04:58:18',NULL),(820,'body sprey gridsArtboard 49','uploads/all/VrnqsO5WmCMpeqIw0UUKIsJwpZQ5UQ6nK13OeiSR.jpg',9,61579,'jpg','image','2021-01-11 04:58:47','2021-01-11 04:58:47',NULL),(821,'body sprey gridsArtboard 56','uploads/all/57YvB6MHsuHt6fryaA6r5Gu3DefXZvRx8JlAp2JA.jpg',9,53908,'jpg','image','2021-01-11 04:59:46','2021-01-11 04:59:46',NULL),(822,'3020','uploads/all/t7ESzWuXUO1GdC0KKeo7aom53kvm2Ko7wXZhL7SO.jpg',9,468034,'jpg','image','2021-01-11 05:00:22','2021-01-11 05:00:22',NULL),(823,'3021','uploads/all/6ssK4Pd0AYGsqjcat3qS6N8OOQqxy6DrGYL3aQvj.jpg',9,59057,'jpg','image','2021-01-11 05:01:50','2021-01-11 05:01:50',NULL),(824,'body sprey gridsArtboard 57','uploads/all/hqJwZqw2xZ5yVeKGpqS8e3fzTRy32rrkIvpq35Z3.jpg',9,50283,'jpg','image','2021-01-11 05:02:42','2021-01-11 05:02:42',NULL),(825,'1084','uploads/all/XR79wfmfpP4MeycXMvIIf3aUqy1Qgi0rSEMqQuBB.png',9,2491472,'png','image','2021-01-11 05:31:36','2021-01-11 05:31:36',NULL),(826,'1084-19','uploads/all/84cw566ja8lgPbYgGdVa1dWaKU11j3Qb1pme7WX9.jpg',9,2305758,'jpg','image','2021-01-11 05:32:00','2021-01-11 05:32:00',NULL),(827,'1085-20','uploads/all/AKD4Mq5skyWZOzGKOyQSJpji9OWt5WPuwSB7rh5t.jpg',9,854971,'jpg','image','2021-01-11 05:37:59','2021-01-11 05:37:59',NULL),(828,'1085.2','uploads/all/zQIPmC84yUtUY4w6HG2NAR9kwXCAqzzKSUGz8kfZ.jpg',9,45131,'jpg','image','2021-01-11 05:38:20','2021-01-11 05:38:20',NULL),(829,'1085.1','uploads/all/ludcszDVuQ8qczV0N0Lp7YSEN1om7X2VgFE2epjg.jpg',9,63651,'jpg','image','2021-01-11 05:38:20','2021-01-11 05:38:20',NULL),(830,'1085','uploads/all/nu0zWw0zAILaejEXNYjcxkikNAOofcq2fLs7LVZl.jpg',9,74924,'jpg','image','2021-01-11 05:38:20','2021-01-11 05:38:20',NULL),(831,'1086.1','uploads/all/tBGlQhKuKUj7FRG4WWN45TBqmPdY3tLevEIxqatm.jpg',9,65317,'jpg','image','2021-01-11 05:39:30','2021-01-11 05:39:30',NULL),(832,'1086','uploads/all/c7mppXCM5JbaS2riMTtx88DoWDcKJfQUBiPv80X2.jpg',9,64730,'jpg','image','2021-01-11 05:39:30','2021-01-11 05:39:30',NULL),(833,'1086.2','uploads/all/tZGl3LKuP7ayF99KYUQLTx2I3FPqeX9BTkdYtMSE.jpg',9,96017,'jpg','image','2021-01-11 05:39:32','2021-01-11 05:39:32',NULL),(834,'1086.3','uploads/all/vyDDMTzbOfHqU71JEfZpKIRIBUW9rWByzf39q1o4.jpg',9,144098,'jpg','image','2021-01-11 05:39:36','2021-01-11 05:39:36',NULL),(835,'1086-21','uploads/all/y6TE6sUq2AmoutUdcRHamk8OrxcU5M8d1GU2CkWx.jpg',9,722193,'jpg','image','2021-01-11 05:39:52','2021-01-11 05:39:52',NULL),(836,'1087-22','uploads/all/WxBsJXy9GYIa3ftlTJfKXYfX2s46fYAEL1PoLxLC.jpg',9,955405,'jpg','image','2021-01-11 05:40:44','2021-01-11 05:40:44',NULL),(837,'1087.2','uploads/all/Gc3sEcwV9bKZsuCiwgkh1rdLqfKRyJQTZ6a9x3CR.jpg',9,54647,'jpg','image','2021-01-11 05:41:08','2021-01-11 05:41:08',NULL),(838,'1087.3','uploads/all/1FTbd6GAFVx9gHm8pPY6HaWmJshdBoEY4kRVFbPO.jpg',9,38724,'jpg','image','2021-01-11 05:41:08','2021-01-11 05:41:08',NULL),(839,'1087','uploads/all/UChWX90txcq7hdk5uA7BuaARBCkbnJk5uj6cZUTL.jpg',9,111464,'jpg','image','2021-01-11 05:41:09','2021-01-11 05:41:09',NULL),(840,'1087.1','uploads/all/z1j97Bvm86A2m1v76hZl5g9NtUkXjgmduADfth18.jpg',9,168920,'jpg','image','2021-01-11 05:41:09','2021-01-11 05:41:09',NULL),(841,'1088.1','uploads/all/swVRnmFgTv2WYNiSAjhBuVocLAayQVxq5IT9UD7U.jpg',9,50691,'jpg','image','2021-01-11 05:42:06','2021-01-11 05:42:06',NULL),(842,'1088.2','uploads/all/gqxVfeXfujfOMPUqF8UFPIOnpx0EOzmCC9dvmZDT.jpg',9,124011,'jpg','image','2021-01-11 05:42:07','2021-01-11 05:42:07',NULL),(843,'1088','uploads/all/10dyo3ma8s3jVUjFOozFwcb554FrFKOOyftCR2PT.jpg',9,104747,'jpg','image','2021-01-11 05:42:07','2021-01-11 05:42:07',NULL),(844,'1088-26','uploads/all/WeHqFPEMM17tJ4ownit50IpdC3W5TAHTwDr99wUU.jpg',9,860913,'jpg','image','2021-01-11 05:42:21','2021-01-11 05:42:21',NULL),(845,'1089-27','uploads/all/G5msfRAITgMb30HrSnLcWjo0f1Y1G0NyFsZhb1tJ.jpg',9,535122,'jpg','image','2021-01-11 05:43:02','2021-01-11 05:43:02',NULL),(846,'1089','uploads/all/qkZGQOVADr7nwB7dFMGT2D3JFDPaCWZlvt86XIUt.jpg',9,37148,'jpg','image','2021-01-11 05:43:25','2021-01-11 05:43:25',NULL),(847,'1089.1','uploads/all/OInw4bJi5WJWWBEB3nNiHqmaPxACbCqnWpoBPjNU.png',9,85483,'png','image','2021-01-11 05:43:25','2021-01-11 05:43:25',NULL),(848,'1089.2','uploads/all/X8PAlzR6jiMEzA9QpkhI3acKMqjwBeqm1ZHouY1v.jpg',9,71444,'jpg','image','2021-01-11 05:43:25','2021-01-11 05:43:25',NULL),(849,'1090.1','uploads/all/fxdpQHIMXuXDeIa45KvxnO2FywBYSPnkGvLVuzfz.jpg',9,4101,'jpg','image','2021-01-11 05:44:17','2021-01-11 05:44:17',NULL),(850,'1090','uploads/all/7hduemeWfbHHO1s8u3AvLFjRLeDoVO7S4V4P1jwe.jpg',9,58207,'jpg','image','2021-01-11 05:44:18','2021-01-11 05:44:18',NULL),(851,'1090.2','uploads/all/m4FyNIsMrLboJXcSrwlon4AA8Rs4otdozaTTiR5G.jpg',9,106498,'jpg','image','2021-01-11 05:44:19','2021-01-11 05:44:19',NULL),(852,'1090-23','uploads/all/Q2yWgXhZgTLugqiSiSkqBlIahKgFCgM4SdpUeegM.jpg',9,922612,'jpg','image','2021-01-11 05:44:32','2021-01-11 05:44:32',NULL),(853,'3022','uploads/all/c2QTSiBYTjHtfQ2Tz2FvH381pWdzgW8fQ8WXN17G.jpg',9,57403,'jpg','image','2021-01-11 05:45:31','2021-01-11 05:45:31',NULL),(854,'body day 2Artboard 9','uploads/all/vITMwVilCbcwSnBd1iVYdy5bcWLJS05ctbPUIw2r.jpg',9,59408,'jpg','image','2021-01-11 05:45:42','2021-01-11 05:45:42',NULL),(855,'3023','uploads/all/cXzC4vG2xedCrGqdt0irp4F71M7fOIa12MvkVxKB.jpg',9,40559,'jpg','image','2021-01-11 05:55:13','2021-01-11 05:55:13',NULL),(856,'Untitled-2Artboard 1','uploads/all/8ksMqhHuX6Y935DjMmeeqUZ8MNGEeeTlDfzSmmTK.jpg',9,51063,'jpg','image','2021-01-11 05:55:35','2021-01-11 05:55:35',NULL),(857,'1091.1','uploads/all/Q8KLsh28mCbOxC2VBYDNDZhCsEc9dogOZzdRs9w6.jpg',9,4009,'jpg','image','2021-01-11 05:56:31','2021-01-11 05:56:31',NULL),(858,'1091.2','uploads/all/KugXwAVkVVHW9aWwdWVEibzPhs1BjUo4V9TUTRzP.jpg',9,10327,'jpg','image','2021-01-11 05:56:31','2021-01-11 05:56:31',NULL),(859,'1091','uploads/all/5cmdcIM4X1Qeb0tOXO9WW3WSrZt2pr5V29SHlMz5.jpg',9,81118,'jpg','image','2021-01-11 05:56:31','2021-01-11 05:56:31',NULL),(860,'1091-24','uploads/all/1G4oOT2tkYXw2PQ4LEJrcgpP5ldCpeRteA2RxZtM.jpg',9,997837,'jpg','image','2021-01-11 05:56:44','2021-01-11 05:56:44',NULL),(861,'3024','uploads/all/hQU4TJOiw7s5jw9yFcvUpz44tEIFFNRrFgj1fg7u.jpg',9,40756,'jpg','image','2021-01-11 05:57:55','2021-01-11 05:57:55',NULL),(862,'Untitled-2Artboard 2','uploads/all/yBee92ey9LwQnImkfM2OXWor19bPbbiP9RcZeFlh.jpg',9,50913,'jpg','image','2021-01-11 05:58:05','2021-01-11 05:58:05',NULL),(863,'3025','uploads/all/O22sgH1rePGMqXxtAuX4s5mLQGdgnTvFMrUs4tKD.jpg',9,32534,'jpg','image','2021-01-11 05:58:48','2021-01-11 05:58:48',NULL),(864,'body sprey gridsArtboard 40','uploads/all/bi2BSAhNFCql91ToXlNb1XlymbIBjoTPoA3f2lWd.jpg',9,57712,'jpg','image','2021-01-11 05:59:05','2021-01-11 05:59:05',NULL),(865,'1092.1','uploads/all/IK78bkyHaFs7kJzj1Ikybq0KMlFYpKty8HrP0EN1.jpg',9,48701,'jpg','image','2021-01-11 06:01:10','2021-01-11 06:01:10',NULL),(866,'1092','uploads/all/hzNZu0rHFMgeoH1GGNPvoyAsDwIcM8cM3IG6OCfS.jpg',9,94294,'jpg','image','2021-01-11 06:01:10','2021-01-11 06:01:10',NULL),(867,'1092-25','uploads/all/zVv1VvJQTPuXb85emyzM1lv0NvqwSKpJ4B1AdDTp.jpg',9,1438427,'jpg','image','2021-01-11 06:01:34','2021-01-11 06:01:34',NULL),(868,'1093','uploads/all/nKiM7lkggOkNp9w3DR4aFu5cVrCt1foCn1YkbFpZ.jpg',9,29007,'jpg','image','2021-01-11 06:02:31','2021-01-11 06:02:31',NULL),(869,'1093.1','uploads/all/wGsKPiXyrYLCN9Bqt8Xg0pFuOLTmpRtwkjrkSpeo.jpg',9,63945,'jpg','image','2021-01-11 06:02:31','2021-01-11 06:02:31',NULL),(870,'1093.2','uploads/all/cvzMQmcShouScQ8ehlNpoVl4YlLoi9mHVjHO4WM1.jpg',9,75479,'jpg','image','2021-01-11 06:02:31','2021-01-11 06:02:31',NULL),(871,'1093-28','uploads/all/v0QAWiCj6jff1uENaNNXT980CPwnijeh6v1BC5od.jpg',9,946842,'jpg','image','2021-01-11 06:02:53','2021-01-11 06:02:53',NULL),(872,'1094-30','uploads/all/kmypuDKjsy0mIW0LEjZ9WLYFdeRQbx85hsIzZfNY.jpg',9,656021,'jpg','image','2021-01-11 06:03:34','2021-01-11 06:03:34',NULL),(873,'1094','uploads/all/12T5tMSXZSTc6ezgXoYhZuiJHYIHFxCfHyVoIosp.jpg',9,67486,'jpg','image','2021-01-11 06:18:14','2021-01-11 06:18:14',NULL),(874,'3026','uploads/all/p6eNmE1ZTnwfa86BfWVcZT0g4wbgTZ35BcNKsdd3.jpg',9,42256,'jpg','image','2021-01-11 06:19:23','2021-01-11 06:19:23',NULL),(875,'Untitled-2Artboard 3','uploads/all/VxTXcwhbvMNE37XrFhKQxLdTaPkjgXWTS7pIYnVW.jpg',9,50993,'jpg','image','2021-01-11 06:19:35','2021-01-11 06:19:35',NULL),(876,'1095','uploads/all/UvbSBY70pj85R62orD4KZ1rBPlAeC6rl5KqkOwZj.jpg',9,73851,'jpg','image','2021-01-11 06:20:21','2021-01-11 06:20:21',NULL),(877,'1095-29','uploads/all/AUO4gGASiy3KaRqw9LeHA8osXkRJhLeLRptn8Jxf.jpg',9,789198,'jpg','image','2021-01-11 06:20:33','2021-01-11 06:20:33',NULL),(878,'1096-31','uploads/all/5LbvhsKhDUOk04QhIDCueh4PRtsehMPCgeYsfBI1.jpg',9,749104,'jpg','image','2021-01-11 06:21:28','2021-01-11 06:21:28',NULL),(879,'1096','uploads/all/6msuwqfMVTE6GsH4tZfAConKbKgIdTrGAOyAv9vG.jpg',9,35258,'jpg','image','2021-01-11 06:21:45','2021-01-11 06:21:45',NULL),(880,'3027','uploads/all/8PUNMXUvPbYATJPzKTyH9gSPLOdWOyjiSwwdA2QE.jpg',9,15968,'jpg','image','2021-01-11 06:23:17','2021-01-11 06:23:17',NULL),(881,'3027.1','uploads/all/rQJFRO2yJS6HmIcfxsdp5Ve5JSXuxnWJPe6pGnG6.jpg',9,138357,'jpg','image','2021-01-11 06:23:17','2021-01-11 06:23:17',NULL),(882,'body sprey gridsArtboard 52','uploads/all/S0RJxTrtFZVfCcm4dH4XRiLmJkFTpS9aAnd9ycTZ.jpg',9,48684,'jpg','image','2021-01-11 06:23:34','2021-01-11 06:23:34',NULL),(883,'3028','uploads/all/GupcGTTN5gtOxs8ZhbQoavX0s0OsbZ202WMz26CG.jpg',9,39286,'jpg','image','2021-01-11 06:24:28','2021-01-11 06:24:28',NULL),(884,'Untitled-2Artboard 4','uploads/all/dVHYGNNYi99533FIXcCdxjK5dBGDLnOVrGeLUhKC.jpg',9,47396,'jpg','image','2021-01-11 06:24:40','2021-01-11 06:24:40',NULL),(885,'1097','uploads/all/ehQS59SuJDQ6Lx5EwLRvx6PyPlqC5Zu2WKPmnmwl.jpg',9,16943,'jpg','image','2021-01-11 06:25:43','2021-01-11 06:25:43',NULL),(886,'1097.4','uploads/all/IsB1btlYqVv9J5WfAs0GrWFsgtDIQKLsbLVQaph8.webp',9,67982,'webp','image','2021-01-11 06:25:43','2021-01-11 06:25:43',NULL),(887,'1097-32','uploads/all/rQnwOGiM4a1mwHfyxRX3i4goyAaPL6QD6qrfraEf.jpg',9,1064054,'jpg','image','2021-01-11 06:25:59','2021-01-11 06:25:59',NULL),(888,'1098-33','uploads/all/USFv9OitmnalsxEnQrnaX5sjzTBrlU6psU7uOza8.jpg',9,650353,'jpg','image','2021-01-11 06:26:50','2021-01-11 06:26:50',NULL),(889,'1098','uploads/all/Ouodb2vqSfoivvir7iwLk0R48dKG2d0kgvjGPcAj.jpg',9,31535,'jpg','image','2021-01-11 06:27:18','2021-01-11 06:27:18',NULL),(890,'1098.1','uploads/all/ero3W1V8idvu7g19IAeOH7U7HpgYam6QJLLjs9GO.jpg',9,90077,'jpg','image','2021-01-11 06:27:18','2021-01-11 06:27:18',NULL),(891,'1098.2','uploads/all/xI84F3WADMH1rikrSX9Z7TCFFcDR8OuFt6Y2YuY7.jpg',9,97134,'jpg','image','2021-01-11 06:27:19','2021-01-11 06:27:19',NULL),(892,'3029','uploads/all/AuU9a3ta5Qs4fhP9MXvcsTkVWL8RU0fRHzognJ7U.jpg',9,83137,'jpg','image','2021-01-11 06:28:20','2021-01-11 06:28:20',NULL),(893,'Untitled-2Artboard 5','uploads/all/sk9XC68op2Ti6jmGxVem9Te5dHYaHeJOcOn4QdWT.jpg',9,49570,'jpg','image','2021-01-11 06:28:31','2021-01-11 06:28:31',NULL),(894,'1099.1','uploads/all/ddhBKmL2PykpPKpSOLJCKIqQDuE3SUNnwNhPvudW.jpg',9,19466,'jpg','image','2021-01-11 06:30:12','2021-01-11 06:30:12',NULL),(895,'1099.2','uploads/all/chLXLFbj3E9dvLjcPDfyO7O8e8zyrq503fxAikcj.jpg',9,19821,'jpg','image','2021-01-11 06:30:12','2021-01-11 06:30:12',NULL),(896,'1099','uploads/all/FbjBttH5PZMRoXc7nMR5zVDmRFzaaWEXdj8hrs0q.jpg',9,36381,'jpg','image','2021-01-11 06:30:12','2021-01-11 06:30:12',NULL),(897,'1099.3','uploads/all/e4NXxutXlqvVjlfJiChWr44O5ZhQ6YqsrVeR38xk.jpg',9,104040,'jpg','image','2021-01-11 06:30:12','2021-01-11 06:30:12',NULL),(898,'1099-34','uploads/all/R76spExhqeoC7lUafnDBBSMZI2q0llaJAExjQueB.jpg',9,642294,'jpg','image','2021-01-11 06:30:24','2021-01-11 06:30:24',NULL),(899,'3030','uploads/all/siDUbo1Du54bG2XOIYTVx2mv1PdebVtraARbctF4.jpg',9,54898,'jpg','image','2021-01-11 06:31:21','2021-01-11 06:31:21',NULL),(900,'body sprey gridsArtboard 48','uploads/all/bXC4w7tg8Hk01To8B1VuKoQziSZZM65qIy0wWHCu.jpg',9,64400,'jpg','image','2021-01-11 06:31:38','2021-01-11 06:31:38',NULL),(901,'3031','uploads/all/UTteUb7O35qgomCoeuZgWFtUPy32zqvJnCMp3ffF.jpg',9,49003,'jpg','image','2021-01-11 06:32:32','2021-01-11 06:32:32',NULL),(902,'Untitled-2Artboard 6','uploads/all/smOTKFPMAI2nlfnmYFCEQTeFumlimBMsQZ90PVYz.jpg',9,49052,'jpg','image','2021-01-11 06:33:36','2021-01-11 06:33:36',NULL),(903,'2000.3','uploads/all/Or9jzX2mYEQiw96sStYm22GTx5EVlci77AAHyov0.jpg',9,1439,'jpg','image','2021-01-11 06:34:24','2021-01-11 06:34:24',NULL),(904,'2000.1','uploads/all/APqbx8ACLUbCLotQ6CuCwutnhVRtpgSB87lvh2iv.jpg',9,1112,'jpg','image','2021-01-11 06:34:24','2021-01-11 06:34:24',NULL),(905,'2000.2','uploads/all/8vaw5LYiAzByrdSpT9Sc8g9i6y0YtA1ZOnO2iQTa.jpg',9,1145,'jpg','image','2021-01-11 06:34:24','2021-01-11 06:34:24',NULL),(906,'2000','uploads/all/6cC1wTfIG2S9zsL6G1ALRSE7yHf4CGYh8TuXdgum.jpg',9,11375,'jpg','image','2021-01-11 06:34:24','2021-01-11 06:34:24',NULL),(907,'2000-35','uploads/all/76dWAYBgK99xEbETGBtbvb9a55UqYzLQnnp7adVw.jpg',9,548881,'jpg','image','2021-01-11 06:34:35','2021-01-11 06:34:35',NULL),(908,'2001','uploads/all/Jy4hQU8TqVMMuZepRhSuxoXRDP05SuoSYxjpk2MH.jpg',9,38652,'jpg','image','2021-01-11 06:40:49','2021-01-11 06:40:49',NULL),(909,'2001-36','uploads/all/3jMDWRNzqIf8ivoDTbc3JsH9toZ7CANkmK2EGukm.jpg',9,640981,'jpg','image','2021-01-11 06:41:05','2021-01-11 06:41:05',NULL),(910,'3032','uploads/all/pM489AwXCIaCBc0PREhtJIp5szsfFw5Dy2p2d0tF.jpg',9,31736,'jpg','image','2021-01-11 06:42:10','2021-01-11 06:42:10',NULL),(911,'body sprey gridsArtboard 53','uploads/all/o6fP87j7phkNh6M812ya46vnhrkPiTbJDaiLZdh1.jpg',9,50450,'jpg','image','2021-01-11 06:42:23','2021-01-11 06:42:23',NULL),(912,'Untitled-2Artboard 7','uploads/all/bHUu8na9jhMyhUSd6WmTuk5BzbP2FoSDB5bjGQLv.jpg',9,62526,'jpg','image','2021-01-11 06:44:21','2021-01-11 06:44:21',NULL),(913,'3033.1','uploads/all/4UGiIYyazn5f0yQaJueQpErcX6wX2kE5dtPDcJwX.jpg',9,53514,'jpg','image','2021-01-11 06:44:35','2021-01-11 06:44:35',NULL),(914,'LB1-01','uploads/all/VBbni796Q9c3wAECRRf9vXS2QwYdkAHIg7jLehPO.jpg',9,617526,'jpg','image','2021-01-11 06:45:52','2021-01-11 06:45:52',NULL),(915,'LB1-04','uploads/all/2Drz4sl4leyZ1zpzWZIxyA4BM2o0pAz19nTFcGEa.jpg',9,543324,'jpg','image','2021-01-11 06:45:53','2021-01-11 06:45:53',NULL),(916,'LB1-02','uploads/all/Ywbm29eaGloG2E2IPjZxNN0pFKI16EWeWNZHHY6s.jpg',9,653957,'jpg','image','2021-01-11 06:45:53','2021-01-11 06:45:53',NULL),(917,'LB1-03','uploads/all/M5AsPzhK4Lcq7jL5iF2qzwF9x4okdPSymyyRGA7n.jpg',9,584039,'jpg','image','2021-01-11 06:45:53','2021-01-11 06:45:53',NULL),(918,'2002','uploads/all/q1jJeTFklsMJfxpgQaqdFmvVcdQh5seJ8uuL7nHf.jpg',9,15277,'jpg','image','2021-01-11 06:47:03','2021-01-11 06:47:03',NULL),(919,'2002-37','uploads/all/RX9YsCDDYOJ8EziFza3NB31SXpGKWUTBdhStVJZJ.jpg',9,824319,'jpg','image','2021-01-11 07:12:52','2021-01-11 07:12:52',NULL),(920,'2003','uploads/all/zughnq6rxayfea1ijRRHcNXTdVM91zN3wGrrecuo.jpg',9,10616,'jpg','image','2021-01-11 07:13:45','2021-01-11 07:13:45',NULL),(921,'2003-38','uploads/all/TYKVHxcpjPxaTe84US7UkkUPeM1IzRxkwzTY6OOK.jpg',9,1189797,'jpg','image','2021-01-11 07:14:04','2021-01-11 07:14:04',NULL),(922,'2004-39','uploads/all/tdvDXWImLDzsmLN8RAFj7dmzxygGj129FwwL6R0J.jpg',9,1099440,'jpg','image','2021-01-11 07:15:15','2021-01-11 07:15:15',NULL),(923,'2004','uploads/all/M7dRvBfK1v04lJP5LdOhw1ksjJgoswHJLqpaWgRR.jpg',9,57263,'jpg','image','2021-01-11 07:15:38','2021-01-11 07:15:38',NULL),(924,'2005','uploads/all/AGnFbSGibV0ADnQrnLkRqLkCgehQMkgDTGZe4ZgX.jpg',9,54568,'jpg','image','2021-01-11 07:16:23','2021-01-11 07:16:23',NULL),(925,'2005.1','uploads/all/4IxpaG870HI7IKGPlPFG5LABfM2KAkHskflVE6Jb.jpg',9,83779,'jpg','image','2021-01-11 07:16:26','2021-01-11 07:16:26',NULL),(926,'2005-01','uploads/all/CAJjXqhS9iX3GrwBcxkvvCH745gFdOExUVHr9M9G.jpg',9,1024137,'jpg','image','2021-01-11 07:16:54','2021-01-11 07:16:54',NULL),(927,'2006-02','uploads/all/UEi3Lvr14twAkJ7XmvOSRs1Uh6Jz8O432c60Ym6z.jpg',9,899241,'jpg','image','2021-01-11 07:17:43','2021-01-11 07:17:43',NULL),(928,'2006','uploads/all/wMzEILdOD5Zbzndi2y64Uzx9kTT6TerAIttv8nK0.jpg',9,91334,'jpg','image','2021-01-11 07:18:15','2021-01-11 07:18:15',NULL),(929,'2007.1','uploads/all/dShedsyKjKdAT3Sz3B9y0GkMUAMHrIhkCXsdDtkX.jpg',9,94136,'jpg','image','2021-01-11 07:19:03','2021-01-11 07:19:03',NULL),(930,'2007.2','uploads/all/vjSnbcEuL0isglciehc2N5tTRy4R2yXFV56K3pLg.jpg',9,102028,'jpg','image','2021-01-11 07:19:03','2021-01-11 07:19:03',NULL),(931,'2007','uploads/all/psDSb02OPnWr17SWqmKWLQu327eqNOXhZmv3L9ym.jpg',9,141098,'jpg','image','2021-01-11 07:19:07','2021-01-11 07:19:07',NULL),(932,'2007-03','uploads/all/UvaIiLGg6PRw9fL5IheoEkstzSif85gOjRAG1GkP.jpg',9,1059973,'jpg','image','2021-01-11 07:19:28','2021-01-11 07:19:28',NULL),(933,'2008-04','uploads/all/3rDcuDU45JyGKLwdDLCGiwGEfxbLIcq2FW3kz8Zk.jpg',9,1648570,'jpg','image','2021-01-11 07:21:02','2021-01-11 07:21:02',NULL),(934,'2008','uploads/all/IP6D0XEzbb3EQzH28vIdD3NIRxQmhyIHd1j4pqZ4.jpg',9,55727,'jpg','image','2021-01-11 07:21:30','2021-01-11 07:21:30',NULL),(935,'2009-05','uploads/all/zjQA3xdaXaltKZd4RtNUV8UuVHkdxCnc0ncpAAa5.jpg',9,1058142,'jpg','image','2021-01-11 07:22:36','2021-01-11 07:22:36',NULL),(936,'2010-06','uploads/all/Y7VWcyN2RUYy6T2oRVu5TsnZsZzeomkd5D3SdBZF.jpg',9,1603379,'jpg','image','2021-01-11 07:23:25','2021-01-11 07:23:25',NULL),(937,'banners-01','uploads/all/EBmLXQim9piS5wmg4ht00Q0C3PbB9T1mCbF1I3Fg.jpg',9,1627826,'jpg','image','2021-01-11 07:24:40','2021-01-11 07:24:40',NULL),(938,'usman sir bn','uploads/all/x7QFZHtrht0RRiNXtsOgKoKLGziK8AdOIasdCnzI.jpg',9,2555286,'jpg','image','2021-01-11 07:24:40','2021-01-11 07:24:40',NULL),(939,'2010','uploads/all/rjWWOA8z9flK7ZdRd3gX5SkZ91TTWGGTUF04Kf6z.jpg',9,31226,'jpg','image','2021-01-11 07:25:09','2021-01-11 07:25:09',NULL),(940,'2010.1','uploads/all/fvrSgsxcbbyUCT6leVrMwf114p3NtUVmYMWifobj.jpg',9,60170,'jpg','image','2021-01-11 07:25:09','2021-01-11 07:25:09',NULL),(941,'2010.2','uploads/all/LtuUi7bnrVJ9ewmVyauhWQrfBhON6xRfUr8rbHS1.jpg',9,143830,'jpg','image','2021-01-11 07:25:10','2021-01-11 07:25:10',NULL),(942,'2010.3','uploads/all/6sUAXDKqwWCJuJbIK1YGMtfqJDN11Th7jC4S66A5.jpg',9,138292,'jpg','image','2021-01-11 07:25:10','2021-01-11 07:25:10',NULL),(943,'2011.2','uploads/all/AKkvET9ye1ddT7VycGJnaCP59nX5Xmlb1ki7HX9l.jpg',9,40230,'jpg','image','2021-01-11 07:27:07','2021-01-11 07:27:07',NULL),(944,'2011.1','uploads/all/U835jOlDZUP927GpkOQr9dp3JFe9bsv6N8wgAFu5.jpg',9,83625,'jpg','image','2021-01-11 07:27:07','2021-01-11 07:27:07',NULL),(945,'2011.3','uploads/all/3Ec4Hq1erAudoIkAZEynTpGoSaaBILawziglLwLa.jpg',9,79858,'jpg','image','2021-01-11 07:27:08','2021-01-11 07:27:08',NULL),(946,'2011','uploads/all/5zNDWGNY8JA24Ef8wx4T47DLd1Vf20UQQchBqyOe.jpg',9,52514,'jpg','image','2021-01-11 07:27:08','2021-01-11 07:27:08',NULL),(947,'TgLNsJCP3DKxXJCPskrqrYMz4aRvdVxUu63x8DNn','uploads/all/A2A91uPp5cDS4GP7Pu98iJB697A2SUzsQYIZXN8v.png',9,75027,'png','image','2021-01-11 07:27:15','2021-01-11 07:27:15',NULL),(948,'2011-07','uploads/all/GNIlJRy5UzhOAaBjipscO6BE0GnSksrWV6kZX9id.jpg',9,1122813,'jpg','image','2021-01-11 07:27:22','2021-01-11 07:27:22',NULL),(949,'2012-08','uploads/all/16nwpZ2k4aZNlmdE7lB6ZtXlc1AQNSlYhiU9Cc1c.jpg',9,1273319,'jpg','image','2021-01-11 07:28:27','2021-01-11 07:28:27',NULL),(950,'2012','uploads/all/vzn36TxownnGLFxZV8oevMNcPg64DC9l14XvlMzV.jpg',9,151462,'jpg','image','2021-01-11 07:28:52','2021-01-11 07:28:52',NULL),(951,'5R1ViRM7aI2rmz3teSQpZJH3CcoRxstQ5jBiUbg9','uploads/all/OhF9e2iMgcdyo4KoZPqTOR5d2JAshDBL8Qyi7Dnu.jpg',9,41695,'jpeg','image','2021-01-11 07:30:00','2021-01-11 07:30:00',NULL),(952,'2014.1','uploads/all/e17wj3z5l086ZpdptpwwhQQtYz4fPJgnp4pdNDDJ.jpg',9,62205,'jpg','image','2021-01-11 07:31:00','2021-01-11 07:31:00',NULL),(953,'2014','uploads/all/V1FqhJVf0YduwtWOuKcMUX8EdlqSNZuByjAlEVcO.jpg',9,71117,'jpg','image','2021-01-11 07:31:00','2021-01-11 07:31:00',NULL),(954,'2014.2','uploads/all/Z3ROFKkb3DWT3NKwr7Sr8vzJqsmewBaRHNJ8MN5n.png',9,239402,'png','image','2021-01-11 07:31:00','2021-01-11 07:31:00',NULL),(955,'2014-10','uploads/all/mD1HXypredNqx9gRBNARO301LGTkL529bnu9dOGm.jpg',9,627198,'jpg','image','2021-01-11 07:31:34','2021-01-11 07:31:34',NULL),(956,'2013.1','uploads/all/hinUQ0uQswbaE4W8pNs0U4JOOSvdbr39LRNehR6K.jpg',9,52580,'jpg','image','2021-01-11 07:32:54','2021-01-11 07:32:54',NULL),(957,'2013','uploads/all/r4adnHGn5swBJc9a6tMWG9bij7ZlvVVqc5H0LI3R.jpg',9,63945,'jpg','image','2021-01-11 07:32:54','2021-01-11 07:32:54',NULL),(958,'2013-09','uploads/all/Tzt2gXRzk4rvthV1qTe8udDTB4x5CTuBle4T9REN.jpg',9,960185,'jpg','image','2021-01-11 07:33:06','2021-01-11 07:33:06',NULL),(959,'2015-11','uploads/all/gX04Em01vvH1EsjMzcVWi1sQ0pfhfSZ2EMXvEILP.jpg',9,679940,'jpg','image','2021-01-11 07:33:51','2021-01-11 07:33:51',NULL),(960,'2015.4','uploads/all/xaXFjP8KySkdPcO6RwbscLXaG45K94OjaUe8kXwR.jpg',9,1214,'jpg','image','2021-01-11 07:34:20','2021-01-11 07:34:20',NULL),(961,'2015','uploads/all/8VG59HoYVCOdyltaXfA982AhPyZEzqBSWnP1sBM8.jpg',9,49745,'jpg','image','2021-01-11 07:34:21','2021-01-11 07:34:21',NULL),(962,'2015.1','uploads/all/ROlFjbBGbaUoT1aWxfUlGynbA3z0IlopiLIohctz.jpg',9,101100,'jpg','image','2021-01-11 07:34:21','2021-01-11 07:34:21',NULL),(963,'2016','uploads/all/QcTmIAERhrSffDT6iBkceFua7BGpgY0P6IynqNH5.jpg',9,49517,'jpg','image','2021-01-11 07:35:17','2021-01-11 07:35:17',NULL),(964,'2016.1','uploads/all/xoNNVTGT096Gkn0YwcOV8dRWmcY3KeyMLpPkuRn2.jpg',9,56042,'jpg','image','2021-01-11 07:35:17','2021-01-11 07:35:17',NULL),(965,'2016.2','uploads/all/TuHHB5A01HMGT1fsYdCs0dJWSQfSh94qmfrpZBkr.jpg',9,60687,'jpg','image','2021-01-11 07:35:17','2021-01-11 07:35:17',NULL),(966,'2016-12','uploads/all/r7vPd1OQYgtF0wf3JTWRf5GYvfvdxS0t7EErW7rQ.jpg',9,747219,'jpg','image','2021-01-11 07:35:31','2021-01-11 07:35:31',NULL),(967,'UyNaCHqRIURCvKD8MkLuWv0uWWBGD1KbniIftEBR','uploads/all/tU8Hte4nPLqJOOh9aB9emNzmaHsEUmOlopUkOaju.jpg',9,260342,'jpeg','image','2021-01-11 07:35:46','2021-01-11 07:35:46',NULL),(968,'2017.1','uploads/all/LXI26GbqHjlA9L8zMlUiGzlWvoyg6UbeDoszNBkL.jpg',9,66923,'jpg','image','2021-01-11 07:37:43','2021-01-11 07:37:43',NULL),(969,'2017','uploads/all/Nbos9xAit8Tt2jTOpCR1ucrTdArwNjzJ8zBNP44b.jpg',9,75438,'jpg','image','2021-01-11 07:37:43','2021-01-11 07:37:43',NULL),(970,'2017.2','uploads/all/OpLqXEOB76CPUIWHH6cTQN3AfLWnGYVvRqml2CzO.jpg',9,128457,'jpg','image','2021-01-11 07:37:43','2021-01-11 07:37:43',NULL),(971,'2017-13','uploads/all/AbyJLF1GgNY6geHbHT2Uv3tYPrU9tlag6SjrrdGA.jpg',9,1070089,'jpg','image','2021-01-11 07:37:57','2021-01-11 07:37:57',NULL),(972,'2018-14','uploads/all/VfQQGQZ7C0hqhBTL0H26si4OBrrr56ItLbAmpQea.jpg',9,1128073,'jpg','image','2021-01-11 07:38:52','2021-01-11 07:38:52',NULL),(973,'2018.1','uploads/all/69b1vnOzhlB7n9akt1s1jCGBJQgoIC2Qksz83xno.jpg',9,72921,'jpg','image','2021-01-11 07:39:06','2021-01-11 07:39:06',NULL),(974,'2018','uploads/all/4yLmPkhOgNMRHKVr9EOAc7sti5kx5D41NDbQsywT.jpg',9,56637,'jpg','image','2021-01-11 07:39:06','2021-01-11 07:39:06',NULL),(975,'2019','uploads/all/76Gj36zMcm051VkEhi9Y9zpg3nMXHnLcR66xXAib.jpg',9,35906,'jpg','image','2021-01-11 07:39:49','2021-01-11 07:39:49',NULL),(976,'2019.1','uploads/all/B2bHI2oSWqt7nIqXWuCLAzcy0xrEtZMZ84Qfs7l1.jpg',9,70988,'jpg','image','2021-01-11 07:39:50','2021-01-11 07:39:50',NULL),(977,'2019-15','uploads/all/q3YLIgQ0EZXJxHZSAX7yZRcblj7HWqemjTREg5IJ.jpg',9,716311,'jpg','image','2021-01-11 07:40:02','2021-01-11 07:40:02',NULL),(978,'2020-16','uploads/all/vMthglyUUeJHIPkhLQXlEYjHyjXJjAWnyIwGACdQ.jpg',9,729698,'jpg','image','2021-01-11 07:40:57','2021-01-11 07:40:57',NULL),(979,'2021.2','uploads/all/m3YG0RgrwGyrtd5KTnBBciIwVBiUvi32eFg4RymO.jpg',9,4346,'jpg','image','2021-01-11 07:41:35','2021-01-11 07:41:35',NULL),(980,'2021.1','uploads/all/KUkIZjvMvqWxUumaQ9IAkF0HNF6UYchQK8TCpteV.jpg',9,224741,'jpg','image','2021-01-11 07:41:36','2021-01-11 07:41:36',NULL),(981,'2020','uploads/all/JXylTGTmzLBYGD2Pt7l5A9AKrxt65GRwOXPdt9AS.jpg',9,8305,'jpg','image','2021-01-11 07:42:11','2021-01-11 07:42:11',NULL),(982,'2020.1','uploads/all/4PHiFdelGhPZbLhqnicFy6OfdDvKYbMaRNilT3dQ.jpg',9,47354,'jpg','image','2021-01-11 07:42:12','2021-01-11 07:42:12',NULL),(983,'2020.2','uploads/all/zC0s7lGRjk1mzZVjx8WFv1IpzWk9G1LSZls6hAjh.jpg',9,94501,'jpg','image','2021-01-11 07:42:12','2021-01-11 07:42:12',NULL),(984,'2021.2','uploads/all/34dwowG1VeLjnejDxOITNNHMOHq2taUiJGEJemd5.jpg',9,4346,'jpg','image','2021-01-11 07:43:14','2021-01-11 07:43:14',NULL),(985,'2021.3','uploads/all/dsQvthGH9NN1ZiHAb6MwzFwuhZz6r5ABMDsjxyGi.jpg',9,129302,'jpg','image','2021-01-11 07:43:15','2021-01-11 07:43:15',NULL),(986,'2021.1','uploads/all/eCr0PI0TT2qi3Jz9S3wYBvTS2w3rNJeBWRARWw5s.jpg',9,224741,'jpg','image','2021-01-11 07:43:16','2021-01-11 07:43:16',NULL),(987,'2021-17','uploads/all/GKs4TmFPvBqOr7Grt3juqgYGk3jrObqI1zy7gbS2.jpg',9,877077,'jpg','image','2021-01-11 07:43:32','2021-01-11 07:43:32',NULL),(988,'2022-18','uploads/all/qpLOi7kL1ohtr37iLwzvpp8hBeU57I0MIBBs7L0p.jpg',9,853754,'jpg','image','2021-01-11 07:44:46','2021-01-11 07:44:46',NULL),(989,'2022','uploads/all/guGe6FnIv9UlUNxt9Us1XBNT3kKNUmFtmQxHWfeN.jpg',9,58054,'jpg','image','2021-01-11 07:45:09','2021-01-11 07:45:09',NULL),(990,'2022.1','uploads/all/q6aT0Fgx6kXlZ5StG2dAyDuUXle1aVNPmtyeywU4.jpg',9,105753,'jpg','image','2021-01-11 07:45:09','2021-01-11 07:45:09',NULL),(991,'2022.2','uploads/all/41CMzDN5lXdIQMtbo5UcdQMWw5zVJLF0XNxdR43H.jpg',9,126573,'jpg','image','2021-01-11 07:45:10','2021-01-11 07:45:10',NULL),(992,'2023-19','uploads/all/q9f4dtJZYvXUk4Ura8EGX2UbMJPqtalfgXT8ztcY.jpg',9,837698,'jpg','image','2021-01-11 07:46:01','2021-01-11 07:46:01',NULL),(993,'2023','uploads/all/HNRnCqJsg13RYUhGaMxCCvaz57uETVkyAUapbBvw.jpg',9,22870,'jpg','image','2021-01-11 07:46:25','2021-01-11 07:46:25',NULL),(994,'2022.2','uploads/all/U1sCeU20tLO8CgTMu0wwOu607b1RETO5jcSAiRpm.jpg',9,126573,'jpg','image','2021-01-11 07:46:26','2021-01-11 07:46:26',NULL),(995,'2022.2','uploads/all/dMqzbB0SPmifwBesDAby3rfiTbZDGcL1Y5U1xi8T.jpg',9,126573,'jpg','image','2021-01-11 07:47:22','2021-01-11 07:47:22',NULL),(996,'2024','uploads/all/egrwz2HDboXfJrhigFJMvyAspxbcNnJMu0kmtfvA.jpg',9,29281,'jpeg','image','2021-01-11 07:47:22','2021-01-11 07:47:22',NULL),(997,'2024-20','uploads/all/CO7SG78YvII0HKyab0fPSFKNAOzWSAmt3qkcY5wf.jpg',9,787751,'jpg','image','2021-01-11 07:47:37','2021-01-11 07:47:37',NULL),(998,'2025.1','uploads/all/hDPY1TPzpON8OTucWlImDjVdL1oFUkhjrldfdKmY.jpg',9,51364,'jpg','image','2021-01-11 07:48:21','2021-01-11 07:48:21',NULL),(999,'2025.2','uploads/all/zOiMcU8mXnkyjE71tNKhG41JPFJlmIxmDElLApCc.jpg',9,82897,'jpg','image','2021-01-11 07:48:21','2021-01-11 07:48:21',NULL),(1000,'2025','uploads/all/kLPln0LKtnKh9zMzejiekzzbTcGZVVucARljcSXd.jpg',9,100613,'jpg','image','2021-01-11 07:48:22','2021-01-11 07:48:22',NULL),(1001,'2025-21','uploads/all/vgxy1a9c1zRKqjkROxvuq95hxcFpNcvSkIp5hoVk.jpg',9,1388887,'jpg','image','2021-01-11 07:48:36','2021-01-11 07:48:36',NULL),(1002,'2026-22','uploads/all/11JlqUBXtRQBfszCBsmSfrghx46cvhDNSlIGnbHA.jpg',9,1914014,'jpg','image','2021-01-11 07:49:10','2021-01-11 07:49:10',NULL),(1003,'2026.1','uploads/all/PPBdxiXie762ytoOniqjajinuRmDZUPjdOGCiB9k.jpg',9,75476,'jpg','image','2021-01-11 07:49:36','2021-01-11 07:49:36',NULL),(1004,'2026.2','uploads/all/CevFuLfj1GLLVMoJ9Uek9EeylSy9eg5OR5lvTjJu.jpg',9,81717,'jpg','image','2021-01-11 07:49:36','2021-01-11 07:49:36',NULL),(1005,'2026','uploads/all/gGRxRH8QYgwY6azL8UA7CyewtaZj98AXD7QZN41B.jpg',9,100674,'jpg','image','2021-01-11 07:49:36','2021-01-11 07:49:36',NULL),(1006,'2027.1','uploads/all/AS6fpQMpIRDyIMe5haFFxQkmQj8XS3eF3k7pZVHk.jpg',9,131163,'jpg','image','2021-01-11 07:50:26','2021-01-11 07:50:26',NULL),(1007,'2027.2','uploads/all/OC3QU9rIDVjAsFxhdKYk76SC0vH7yN2G31sCOeVD.jpg',9,146771,'jpg','image','2021-01-11 07:50:27','2021-01-11 07:50:27',NULL),(1008,'2027','uploads/all/SFPoccwQIfIsZfpl97JY0x189met5WoDjHkopQ1j.jpg',9,108872,'jpg','image','2021-01-11 07:50:27','2021-01-11 07:50:27',NULL),(1009,'2027-26','uploads/all/3Ymp2eE9EfKns9NHa2SqW8cdAl9jvxb0eCq38L9a.jpg',9,2481619,'jpg','image','2021-01-11 07:50:44','2021-01-11 07:50:44',NULL),(1010,'2028-27','uploads/all/5AKLJGgTjuxOFgdmePhI0O79LzI6s7cGGGCbiodv.jpg',9,883764,'jpg','image','2021-01-11 07:51:49','2021-01-11 07:51:49',NULL),(1011,'2028','uploads/all/1ElirN18h1m5OOWciknuTUccREJiGMshJkTBoxf4.jpg',9,19225,'jpeg','image','2021-01-11 07:52:12','2021-01-11 07:52:12',NULL),(1012,'2028.1','uploads/all/wYIXaSAmcafMcIEGzEB1eje5G2Yqxaa3yCKn5pI4.jpg',9,85773,'jpg','image','2021-01-11 07:52:12','2021-01-11 07:52:12',NULL),(1013,'2028.2','uploads/all/quDbnh8yCIcN3AtoA0PRd2G6dGYZUVVlas1Y1PfP.jpg',9,193025,'jpg','image','2021-01-11 07:52:13','2021-01-11 07:52:13',NULL),(1014,'SB-12-BLUE','uploads/all/kzNLnu3sVDdZ9vhoQDRBbpb2PQLhSvbpuvWJEXlW.jpg',9,59164,'jpg','image','2021-01-12 01:23:47','2021-01-12 01:23:47',NULL),(1015,'SB-12-PINK','uploads/all/5zK6sJIVBGo4FpEiH0w7gPqf7LCjWgQQtbfUYo09.jpg',9,42168,'jpg','image','2021-01-12 01:23:47','2021-01-12 01:23:47',NULL),(1016,'SB-12-GREEN','uploads/all/BzUAJyFVFURNhy3POusE7xKo682maURnOekSFteJ.jpg',9,56591,'jpg','image','2021-01-12 01:23:47','2021-01-12 01:23:47',NULL),(1017,'SB-12-PURPLE','uploads/all/GB26sU4eG2B15i4BGZ2nJknIdm2JGAlACzkEpCBZ.jpg',9,50314,'jpg','image','2021-01-12 01:23:47','2021-01-12 01:23:47',NULL),(1018,'icon-1','uploads/all/f3BtlCJb5Ucf70XvAWXza1ZZOIgRkB6Jb01wDdtQ.jpg',9,1822,'jpg','image','2021-01-12 03:21:31','2021-01-12 03:21:31',NULL),(1019,'icon-1','uploads/all/YsWSw5g0DbeJOBlg1EzwTgc28kz7XDDiUu5pkiJx.jpg',9,1872,'jpg','image','2021-01-12 04:19:31','2021-01-12 04:19:31',NULL),(1020,'icon2','uploads/all/qcFmUD3iYeXORQDlx4m5Cizsn9SbGyAm9AFfSxy4.jpg',9,2353,'jpg','image','2021-01-12 04:21:57','2021-01-12 04:21:57',NULL),(1021,'icon3','uploads/all/dF3IHQJl8oCKN7lBHPBI1mqHJRuI1NJVEgoFgCpk.jpg',9,2090,'jpg','image','2021-01-12 04:22:55','2021-01-12 04:22:55',NULL),(1022,'icon4','uploads/all/EqGSBN3dbGz6j3Y0E4pmzEKwQgEquixnsJ5FiOZe.jpg',9,1878,'jpg','image','2021-01-12 05:08:18','2021-01-12 05:08:18',NULL),(1023,'B2-02','uploads/all/0HqBDsa4tDtYM19gi7Y3jpfMvh7AW14zIRr29uKr.jpg',9,556547,'jpg','image','2021-01-13 01:11:03','2021-01-13 01:11:03',NULL),(1024,'B2-03','uploads/all/5h4hJBPYNf2H4hCPgsWig5AA3Wgl8jGtdt7IvWro.jpg',9,436992,'jpg','image','2021-01-13 01:11:03','2021-01-13 01:11:03',NULL),(1025,'B2-01','uploads/all/1bXIMNhtWdBY7E2mHYDgp7QDQKyNyqm1AEpHtSYe.jpg',9,201081,'jpg','image','2021-01-13 01:11:03','2021-01-13 01:11:03',NULL),(1026,'final-web','uploads/all/cJJ0lDqhWFZ0nDgefKkiJ5QQoKeNRUT9XcvAMBf7.jpg',9,5242,'jpg','image','2021-01-13 01:11:04','2021-01-13 01:11:04',NULL),(1027,'OxKX4lKA8q5nyET10fqwZT0jcLaxtx1a3ag9vy9C','uploads/all/59mpXNnjS49UlLGrQdRQCeCd3n5r3cjz31MNbvw8.gif',9,179812,'gif','image','2021-01-13 01:27:55','2021-01-13 01:27:55',NULL),(1028,'8','uploads/all/1cZrAY0EmHpyVkTG6acHU6JbPU4jIkZbtrpiEB3E.jpg',9,47532,'jpg','image','2021-01-13 02:10:41','2021-01-13 02:10:41',NULL),(1029,'1211','uploads/all/JCKcYueHHpADwuqi029qut2pcRt1xCEL0s1fetSe.jpg',9,76827,'jpg','image','2021-01-13 02:10:42','2021-01-13 02:10:42',NULL),(1030,'7','uploads/all/mOn9SrvDY2i2ALxAampoGpXSRCQTBVkKYlWhlym8.jpg',9,276046,'jpg','image','2021-01-13 02:10:42','2021-01-13 02:10:42',NULL),(1031,'7','uploads/all/XnHC4imf3TPex02oDYECNkclJB1KE2nokGHXOKjs.jpg',9,276046,'jpg','image','2021-01-13 02:20:02','2021-01-13 02:20:02',NULL),(1032,'1212.1','uploads/all/IadhmLqGRGFXvN30GcgFseImoemOfRzA5qxnDm6B.jpg',9,60800,'jpg','image','2021-01-13 02:20:02','2021-01-13 02:20:02',NULL),(1033,'6','uploads/all/Nu0bHWP0XmbYEyuPxnz8fmlXSUS8PVUn4rONOrIZ.jpg',9,494773,'jpg','image','2021-01-13 02:20:02','2021-01-13 02:20:02',NULL),(1034,'1213','uploads/all/NOkLl72E0PGjnGBCFrShRPbNvDlG7l7pWCvHYJcM.jpg',9,33208,'jpg','image','2021-01-13 02:25:24','2021-01-13 02:25:24',NULL),(1035,'5','uploads/all/zkYrhz555uSk2yfw4X1kCdgdKoiJUjom86hwRQ2R.jpg',9,27244,'jpg','image','2021-01-13 02:25:24','2021-01-13 02:25:24',NULL),(1036,'1213-1','uploads/all/0XHsbMG1DkgIQ4gstckVZjOmioVKdWXKOwx1D4QS.jpg',9,74777,'jpg','image','2021-01-13 02:25:24','2021-01-13 02:25:24',NULL),(1037,'1214','uploads/all/hJxG9KFMf0tvz2a1QwbtviiLEJC9hHPliiHSb3u0.jpg',9,49204,'jpg','image','2021-01-13 02:32:01','2021-01-13 02:32:01',NULL),(1038,'3','uploads/all/J1Ei6Zc7ECAgLFpxysOiwfVIL3OIzXV1YzsSjCnW.jpg',9,254256,'jpg','image','2021-01-13 02:32:02','2021-01-13 02:32:02',NULL),(1039,'5','uploads/all/hXoejC0bxUopZwJxyheQFYhz5pMy7yRtCCuVSBay.jpg',9,27244,'jpg','image','2021-01-13 02:39:29','2021-01-13 02:39:29',NULL),(1040,'1215','uploads/all/OmninrJPcMBQFjLquQvF2MmmzJLeAI65bvtX1QNE.jpg',9,107977,'jpg','image','2021-01-13 02:39:30','2021-01-13 02:39:30',NULL),(1041,'8','uploads/all/M8ZcO16mVSusgfS2MtRNFDLsKFqNNXQdh7Dntm6e.jpg',9,47532,'jpg','image','2021-01-13 02:42:36','2021-01-13 02:42:36',NULL),(1042,'7','uploads/all/Wtqzb9arWlyZdAahxgCrjeHAFMoYfNSMKJ7gbrPd.jpg',9,276046,'jpg','image','2021-01-13 02:42:37','2021-01-13 02:42:37',NULL),(1043,'1216','uploads/all/p5JeM2KYAEKnPQ5JVwdohsQZIunim3ZjknYdUCaj.jpg',9,815455,'jpg','image','2021-01-13 02:42:38','2021-01-13 02:42:38',NULL),(1044,'1217','uploads/all/U1ugZVI91oIfSsx4gbqKTIxV98g3HSx6fW4RtfUS.jpg',9,53302,'jpg','image','2021-01-13 02:46:30','2021-01-13 02:46:30',NULL),(1045,'1218','uploads/all/nv0RR6PjQX01xLeCVZpqgTyk9KW2ABdnAEAHBy3j.jpg',9,76724,'jpg','image','2021-01-13 02:50:02','2021-01-13 02:50:02',NULL),(1046,'groceries-5-10-19','uploads/all/IkhbqkQCWFoOoXh2ZBlpTpIabuc1PkU2H3c58ZJ2.jpg',9,20933,'jpg','image','2021-01-13 02:52:59','2021-01-13 02:52:59',NULL),(1047,'1219','uploads/all/XNuZ4jpled9hCC5LNYVijjA9qNqq0YOUxepMT15s.jpg',9,45439,'jpg','image','2021-01-13 02:53:13','2021-01-13 02:53:13',NULL),(1048,'1220-1','uploads/all/xSvJh7LpPo9lUR3P7Ka4iccSPDTqaNZVFc2yFXYH.jpg',9,36465,'jpeg','image','2021-01-13 03:00:20','2021-01-13 03:00:20',NULL),(1049,'1137768-2','uploads/all/o8gzlfqVDEmJMslitSLodTDBgtuM8ahgdZ4JEhPr.jpg',9,120954,'jpg','image','2021-01-13 03:00:20','2021-01-13 03:00:20',NULL),(1050,'1220','uploads/all/BRs5LYWHXB4GGPZvz8o0Qn7tPWddpQyqF63ZEdm5.gif',9,251622,'jpg','image','2021-01-13 03:00:21','2021-01-13 03:00:21',NULL),(1051,'images','uploads/all/Dz9DhO8EYze4OYRidIr40qSKwIUQf8qbEmFG0Hls.png',9,5597,'png','image','2021-01-13 03:09:28','2021-01-13 03:09:28',NULL),(1052,'images','uploads/all/UsHW8lax8LrryD6wwieE6N9lRXierZ4aW70kZ5eP.jpg',9,5727,'jpg','image','2021-01-13 03:09:28','2021-01-13 03:09:28',NULL),(1053,'1221','uploads/all/No0AMdc7UEdUnYtI0uc4jxwvv6UOYbi4SdXFY4Q8.jpg',9,41494,'jpg','image','2021-01-13 03:09:29','2021-01-13 03:09:29',NULL),(1054,'1222','uploads/all/dtchvSOuAaZ6pI21BYaiU2XPfPOkWbk88RizSi3v.jpg',9,37200,'jpg','image','2021-01-13 03:18:22','2021-01-13 03:18:22',NULL),(1055,'1223','uploads/all/jaxa4bOiPIGwtZNi9TtPnHHnsvaT3jbsUuapvb2e.jpg',9,30783,'jpg','image','2021-01-13 03:21:22','2021-01-13 03:21:22',NULL),(1056,'1224','uploads/all/lafBtWxrh6nJh6tB7TNTMSXOajvYnNTz3Fwz6epQ.jpg',9,35001,'jpg','image','2021-01-13 03:24:25','2021-01-13 03:24:25',NULL),(1057,'1225','uploads/all/MWIe6f4j2t8CSqMOJSD9ZCG8SahVGQPYZxKFxqRm.jpg',9,101036,'jpg','image','2021-01-13 03:28:44','2021-01-13 03:28:44',NULL),(1058,'1226','uploads/all/bAFpAXxcVlb0sBBJ8GaOhfTc3Y7nVG7ACFLl2QPD.jpg',9,47325,'jpg','image','2021-01-13 03:36:06','2021-01-13 03:36:06',NULL),(1059,'1227','uploads/all/kZ6vo4vnm4ZC7UDkvYmbqiRRoRw1jeLrtcnO5IK5.jpg',9,30395,'jpg','image','2021-01-13 03:39:36','2021-01-13 03:39:36',NULL),(1060,'1228','uploads/all/4nQujuao0wmKmWEoXfDmBNBY07K1lJV16e7eFCKo.png',9,312612,'png','image','2021-01-13 03:51:52','2021-01-13 03:51:52',NULL),(1061,'CANBEBE-SIZE-5-JUNIOR-SUPER-ECONOMIC1','uploads/all/1njgDNC6WcWN6NgEgCElrQOxGSpFLJGFGCPdLCv3.jpg',9,157378,'jpg','image','2021-01-13 03:54:00','2021-01-13 03:54:00',NULL),(1062,'1229','uploads/all/jtBhz7NryW5RDHHz4Ss88ZTcNXEpItgtApOOmBPT.jpg',9,213727,'jpg','image','2021-01-13 04:04:54','2021-01-13 04:04:54',NULL),(1063,'IMG-20210113-WA0025','uploads/all/zVr2oIQFCbY0uqpUIT9LuxilSxXmQzXjQ5Dh7Dcc.jpg',9,166147,'jpg','image','2021-01-13 04:19:11','2021-01-13 04:19:11',NULL),(1064,'IMG-20210113-WA0028','uploads/all/bF2fp4TZjpIPXWlBDKYwHkefY1zD347VFZ3NacCN.jpg',9,49697,'jpg','image','2021-01-13 04:23:27','2021-01-13 04:23:27',NULL),(1065,'IMG-20210113-WA0027','uploads/all/q5HUdwJLH7sNUkhQO70KFJH97msVvJAub242z6Zw.jpg',9,74052,'jpg','image','2021-01-13 04:26:48','2021-01-13 04:26:48',NULL),(1066,'IMG-20210113-WA0029','uploads/all/jLbYNOsfN3djAaZbIZ29T7IQmxcAP8D3poOvf0BL.jpg',9,84745,'jpg','image','2021-01-13 04:31:50','2021-01-13 04:31:50',NULL),(1067,'IMG-20210113-WA0031','uploads/all/TJeH2zJNzwU2RfYGJnQH8QzYknJWJqYr2dpeGoUy.jpg',9,49087,'jpg','image','2021-01-13 04:31:50','2021-01-13 04:31:50',NULL),(1068,'IMG-20210113-WA0026','uploads/all/m53G0m3lMqXCiFcjz8qKTscpSgXW12e9622I5zRo.jpg',9,72754,'jpg','image','2021-01-13 04:31:50','2021-01-13 04:31:50',NULL),(1069,'IMG-20210113-WA0030','uploads/all/IXTsVlVux77mMsQF5FGap8cqKJWfoHYnMsFyQP6w.jpg',9,69915,'jpg','image','2021-01-13 04:31:50','2021-01-13 04:31:50',NULL),(1070,'finalnewwww-05','uploads/all/1sRMOXPEuUCC0Z251BqH7ds6zjn69i5nx4DEDz9p.png',9,40410,'png','image','2021-01-13 04:47:41','2021-01-13 04:47:41',NULL),(1071,'finalwww-04','uploads/all/PF74hRFuZ7K6R4PZvbzvJQIBXvIFJexkihEnxH7V.png',9,34577,'png','image','2021-01-13 04:47:41','2021-01-13 04:47:41',NULL),(1072,'final white-05','uploads/all/K84TjD1XUAbbVmDFULkCV8qFpxZ6dywtsRLOd44B.png',9,38457,'png','image','2021-01-13 04:47:41','2021-01-13 04:47:41',NULL),(1073,'Dp0DBHFbBuyRCAUi8Od6tk4izOsMg1mVB1v8QAeu','uploads/all/4zOdp2LfU1hmZVxo5MGSes9jyHhQMd8RloS0nDaF.png',9,173563,'png','image','2021-01-13 05:46:01','2021-01-13 05:46:01',NULL),(1074,'banners-01','uploads/all/R9ELjlFgUyEp0UpXV7XW6GuLWuBawZKhSr2atmUU.jpg',9,1627826,'jpg','image','2021-01-13 05:46:06','2021-01-13 05:46:06',NULL),(1075,'main banner.','uploads/all/lvTFBtR7gR4O3pDtRUxanEuwPSaMiPK9mVO5SFHF.jpg',9,6534012,'jpg','image','2021-01-13 05:46:29','2021-01-13 05:46:29',NULL),(1076,'main banner2','uploads/all/Vch95kjtnL1mogmpSFOW4zCpGprdRVmBe9NsBWuG.png',9,8458603,'png','image','2021-01-13 05:46:36','2021-01-13 05:46:36',NULL),(1077,'hd-bner','uploads/all/wwgliMZhEXZp9BjTPLE08EhfuFgk4R4sIAL3Aq8I.jpg',9,154909,'jpg','image','2021-01-13 06:10:26','2021-01-13 06:10:26',NULL),(1078,'Untitled-1','uploads/all/GFGREbVPbcJalvYQhVHA9I1RSelWv27pcFNR5mhc.jpg',9,171014,'jpg','image','2021-01-13 06:10:26','2021-01-13 06:10:26',NULL),(1079,'B2-04','uploads/all/3PjkW3UuUzwhYxkTgipdxvRvlr53ZjLTJqlMQNkz.jpg',9,256485,'jpg','image','2021-01-13 06:19:10','2021-01-13 06:19:10',NULL),(1080,'B2-06','uploads/all/oKJ9AuUDmJ7LcqWB1EfeMpjfHJyyNC1YDBEZvjj7.jpg',9,464387,'jpg','image','2021-01-13 06:19:10','2021-01-13 06:19:10',NULL),(1081,'B2-05','uploads/all/3KH2xUeKlpQpKL0rtsRWDPkEy4CV8VL3vd9qQ9tz.jpg',9,503885,'jpg','image','2021-01-13 06:19:11','2021-01-13 06:19:11',NULL),(1082,'2','uploads/all/MjPBNfRNgy27X9IKHHIrHcaW734gveEzAWxC74Qh.jpg',9,170648,'jpg','image','2021-01-13 06:42:11','2021-01-13 06:42:11',NULL),(1083,'1','uploads/all/6nInHTmcep8bmVHnZoKfR5P2k6YV4USMPp8HqRx2.jpg',9,11144,'jpg','image','2021-01-13 08:07:16','2021-01-13 08:07:16',NULL),(1084,'icon10','uploads/all/SKZp84RdfhbuACtt4rM3XG3NCIbH9gqR0JTaOdJG.jpg',9,1591,'jpg','image','2021-01-14 02:27:00','2021-01-14 02:27:00',NULL),(1085,'2c06d058aed32542c8a7d87bed47e1fc93a0a808388bbc48d63b80df3603f934_200','uploads/all/PDd4q8smo3T8np5RqhlRvF76IyQWjNnY2JY33INV.webp',9,2890,'webp','image','2021-01-14 02:39:43','2021-01-14 02:39:43',NULL),(1086,'icon','uploads/all/nhXEY9jYSvwwNLf8VPvlaso1RpbLW8KFvn0DtRhh.png',9,701,'png','image','2021-01-14 02:39:43','2021-01-14 02:39:43',NULL),(1087,'icon-09','uploads/all/LT9jNKB7nvVCv6TtBfAsxSYFFGYp2qSyWwY4nOIV.svg',9,16132,'svg','image','2021-01-14 02:46:21','2021-01-14 02:46:21',NULL),(1088,'icons-02','uploads/all/ndrCbGHqbKTb2vP4nXPDPuBIdiL4ES2M4iVgXqS6.png',9,255726,'png','image','2021-01-14 02:49:38','2021-01-14 02:49:38',NULL),(1089,'icons-03','uploads/all/WZ964awJ87rPKT6j2p4YHAES1TaWHoNsutABhYkz.png',9,338561,'png','image','2021-01-14 02:50:34','2021-01-14 02:50:34',NULL),(1090,'icons-01','uploads/all/t65WYdl26M001vI4hhV1sRKLEdw1vO9qbOMU5IOv.png',9,225635,'png','image','2021-01-14 02:50:58','2021-01-14 02:50:58',NULL),(1091,'icons-03','uploads/all/9sb7t1ZCl58NhnRQxfD63NoGM9BhHib4Alq6fWk7.png',9,338561,'png','image','2021-01-14 02:52:57','2021-01-14 02:52:57',NULL),(1092,'icons-05','uploads/all/m8pVgupDmxC20Ixlu7ftLm8ecZNSNnD1SKA4AYmb.png',9,168250,'png','image','2021-01-14 02:54:55','2021-01-14 02:54:55',NULL),(1093,'icons-06','uploads/all/jC9phghPJAgfCSUSE1MieD99avsx5IB0n8YddwOS.png',9,305751,'png','image','2021-01-14 02:56:56','2021-01-14 02:56:56',NULL),(1094,'1-01','uploads/all/OxAPNiKB0K8xilnwTh89Rp4gjfdJMo2DiGqLDEv3.svg',9,4178,'svg','image','2021-01-14 03:00:37','2021-01-14 03:00:37',NULL),(1095,'11-11','uploads/all/3rsW50v7n9VAcEY4K3Dt0XJuhT8Q8G9nAOTqDZX6.svg',9,29788,'svg','image','2021-01-14 03:00:37','2021-01-14 03:00:37',NULL),(1096,'10-10','uploads/all/u14odtbAzQJJxfiNBfVZxzCDiyKwYGlzvKwuwqM9.svg',9,4714,'svg','image','2021-01-14 03:00:56','2021-01-14 03:00:56',NULL),(1097,'7-07','uploads/all/AkAdFKe6C5gJ0TqENkKvQQiu2x9OHbc5qa4cqYwq.svg',9,18628,'svg','image','2021-01-14 03:00:56','2021-01-14 03:00:56',NULL),(1098,'9-09','uploads/all/RwBJBX35MCeoP0scZEpbtnrv5Ts8QlssfPNjeCkL.svg',9,16132,'svg','image','2021-01-14 03:00:56','2021-01-14 03:00:56',NULL),(1099,'8-08','uploads/all/4Bk0IO9SDQRMDLOcFPB6abZgUC8LdRq7arCPvGjy.svg',9,7040,'svg','image','2021-01-14 03:00:57','2021-01-14 03:00:57',NULL),(1100,'6-06','uploads/all/uXCXzVR2I0LZIQPvSPhEHQluhRDYUQutkAwRrxnQ.svg',9,3940,'svg','image','2021-01-14 03:00:57','2021-01-14 03:00:57',NULL),(1101,'5-05','uploads/all/YaNKeBVM2bArtXf9I41uDAs0WmDNwIfeXMVNlj1O.svg',9,202470,'svg','image','2021-01-14 03:00:57','2021-01-14 03:00:57',NULL),(1102,'3-03','uploads/all/B9ROQSi7O2BjuxykNQCtCowfp0GIxREdNQJV41JJ.svg',9,35444,'svg','image','2021-01-14 03:00:58','2021-01-14 03:00:58',NULL),(1103,'4-04','uploads/all/BtjBMFXDMtAQXVRP29UC1rhAmJpXF9SVrKTzGUW7.svg',9,30152,'svg','image','2021-01-14 03:00:58','2021-01-14 03:00:58',NULL),(1104,'2-02','uploads/all/A7ntbj2CrOWpgCGM2sS5e6hWYMJi1hfvmmrlp4yX.svg',9,96860,'svg','image','2021-01-14 03:00:58','2021-01-14 03:00:58',NULL),(1105,'12-12','uploads/all/XQFGkoV7sdoMAM0ExrQeDJf6In9SuohBydZnDnif.svg',9,4677,'svg','image','2021-01-14 04:19:24','2021-01-14 04:19:24',NULL),(1106,'bn100','uploads/all/0L514cufLUwPIKNvfPlokGMg8yDPvZEpXgviOQWQ.png',9,74275,'png','image','2021-01-14 05:20:28','2021-01-14 05:20:28',NULL),(1107,'bn300','uploads/all/CgPRpBLEst9t043d6RbG3OZYkTA2LVj4tSupJM18.png',9,76493,'png','image','2021-01-14 05:21:59','2021-01-14 05:21:59',NULL),(1108,'bn400','uploads/all/VvlubHEIIrnLU6bg8IMSmb43V8d1QFV6wbeNHXVf.png',9,79309,'png','image','2021-01-14 05:23:19','2021-01-14 05:23:19',NULL),(1109,'ACE','uploads/all/YENjctKp8aqcPmD44n7loV7rzIQBRkUGQqtZcgm9.jpg',9,694076,'jpg','image','2021-01-14 05:31:15','2021-01-14 05:31:15',NULL),(1110,'finalwww-04','uploads/all/Ply8ESV8azF4yF0JvS39t0uNWyAmXlIFfL4yy7iB.png',9,34577,'png','image','2021-01-14 05:35:55','2021-01-14 05:35:55',NULL),(1111,'EW7A5101','uploads/all/Lg5agttUNK6cPwH6xUMt9heHsBmR7MyTROz49Hcf.jpg',9,434241,'jpg','image','2021-01-14 05:38:07','2021-01-14 05:38:07',NULL),(1112,'EW7A5099','uploads/all/Mro5OjQkS1j9c9eqLAf6XCEwERcBVKODc8uBNRjU.jpg',9,1628540,'jpg','image','2021-01-14 05:38:08','2021-01-14 05:38:08',NULL),(1113,'EW7A5103','uploads/all/BuvGTiKldwGa7tkR56jneRQIhgYBak3XVU4v8bGn.jpg',9,1425756,'jpg','image','2021-01-14 05:38:09','2021-01-14 05:38:09',NULL),(1114,'final-3','uploads/all/mMvqhU9no1Cmk7bKQDh83e6MwbG3cfRfG27cHejf.png',9,66317,'png','image','2021-01-14 05:38:34','2021-01-14 05:38:34',NULL),(1115,'mad+about+waves+pair','uploads/all/UuVhFcS0WKPubhFKcMeMTqpVry6gbQiOeHXxBCz1.jpg',9,205987,'jpg','image','2021-01-14 06:02:42','2021-01-14 06:02:42',NULL),(1116,'pngtree-hydrating-skin-care-beauty-makeup-banner-image_262326','uploads/all/D6t8Rb8Ife866qufKptkkXo2qECOe5pu85cAfEYK.jpg',9,205496,'jpg','image','2021-01-14 06:05:02','2021-01-14 06:05:02',NULL),(1117,'download','uploads/all/hKokC8CYwrcZRhodQo2RPaiCUEggVnQE98inScJR.jpg',9,8371,'jpg','image','2021-01-14 06:07:39','2021-01-14 06:07:39',NULL),(1118,'HTB1a.jecvjM8KJjSZFyq6xdzVXa6','uploads/all/F434rQLOhgDBR3Zr3XqHFV3GJyO9tbiW21ZoE3ge.jpg',9,116134,'jpg','image','2021-01-14 06:09:10','2021-01-14 06:09:10',NULL),(1119,'6cd501b9179ca955327b7f5d368fcf51','uploads/all/B2KNsLdV22Gecwo9vprk43NFRGEuf6fsWA9FNcht.jpg',9,10918,'jpg','image','2021-01-14 06:09:44','2021-01-14 06:09:44',NULL),(1120,'unnamed','uploads/all/im0r8VdK8DLcd1bJ6iHgpOj0oDYqvmZBXQXvrD8M.jpg',9,29990,'jpg','image','2021-01-14 06:10:28','2021-01-14 06:10:28',NULL),(1121,'Sharing-personal-hygiene-products','uploads/all/wgceDLkrRijCCGvxIeX9Mu6Bxzo6sgsXVEVzYcg5.jpg',9,52359,'jpg','image','2021-01-14 06:11:37','2021-01-14 06:11:37',NULL),(1122,'images','uploads/all/m6IF9KBY4lHX7tlki3z0hZiqk2xidkyHFejoFrq3.jpg',9,4316,'jpg','image','2021-01-14 06:14:17','2021-01-14 06:14:17',NULL),(1123,'wp1879435','uploads/all/XxSaej7RgHY1yUAYBCX03BdfaZC61DIpfOb43np3.jpg',9,303784,'jpg','image','2021-01-14 06:15:32','2021-01-14 06:15:32',NULL),(1124,'sn6NRmS3','uploads/all/6kcHVb4xnrcc4pgXgeFVg6OkOauAvdAbNzHU9GHb.jpg',9,32796,'jpg','image','2021-01-14 06:16:36','2021-01-14 06:16:36',NULL),(1125,'pexels-photo-1342529','uploads/all/2KPdYTeUL5s15Ut8Cl8nUJLBti07vMw95uaHq9qW.jpg',9,29250,'jpeg','image','2021-01-14 07:11:46','2021-01-14 07:11:46',NULL),(1126,'istockphoto-1138234731-612x612','uploads/all/UNEO1sr56kntWBvvgnksRxanRiduyViTC4DDCrTH.jpg',9,45397,'jpg','image','2021-01-14 07:13:53','2021-01-14 07:13:53',NULL),(1127,'61kJbjio9RL._SL1024_','uploads/all/zW4elwyM0UjSsYvyFK8clNH3F9TbdgQtMyVz7ztJ.jpg',9,71619,'jpg','image','2021-01-14 07:16:51','2021-01-14 07:16:51',NULL),(1128,'1563285080964_0.','uploads/all/Chn2evwU1zV2oOn4ls7XZFsJlawG6fDT5bScehrb.webp',9,188990,'webp','image','2021-01-14 07:17:37','2021-01-14 07:17:37',NULL),(1129,'EW7A5088','uploads/all/UvgyqK30LaURnLLZrPllL1vrttXtcgvUYEMi4Sl1.jpg',9,357495,'jpg','image','2021-01-14 08:09:05','2021-01-14 08:09:05',NULL),(1130,'EW7A5094','uploads/all/vUWFtlwHT3wN4L3TY8sGUFjmhDgbC0RmQzz4wLvI.jpg',9,1379893,'jpg','image','2021-01-14 08:09:06','2021-01-14 08:09:06',NULL),(1131,'EW7A5090','uploads/all/iLxH8lpYIHn4lRFwP9W8Xe4btImIVewZFSMNaL7q.jpg',9,1442300,'jpg','image','2021-01-14 08:09:07','2021-01-14 08:09:07',NULL),(1132,'siz chats-03','uploads/all/tK9ohytHX5KqR75IZIznz0pMkWuquzTnscagrjYB.jpg',9,597586,'jpg','image','2021-01-14 08:15:25','2021-01-14 08:15:25',NULL),(1133,'siz chats-01','uploads/all/Gk05hXNcyN8hpXUkjyH46MMnwAZUOnHot5fLpbyA.jpg',9,647977,'jpg','image','2021-01-14 08:15:26','2021-01-14 08:15:26',NULL),(1134,'siz chats-02','uploads/all/ZKQADAPOuYR72SawD0V9VMDlxSvq1vS2m9s7EUgd.jpg',9,510718,'jpg','image','2021-01-14 08:15:26','2021-01-14 08:15:26',NULL),(1135,'siz chats-04','uploads/all/IaO74gyJTrq2jRUp4cVGxxAwvikbRFehlha4BLZ9.jpg',9,447104,'jpg','image','2021-01-14 08:15:26','2021-01-14 08:15:26',NULL),(1136,'EW7A5119','uploads/all/uaAVA3ajOAPeIWHAPUl5hGF2asnHbvRiUF95I2sy.jpg',9,402771,'jpg','image','2021-01-14 08:42:54','2021-01-14 08:42:54',NULL),(1137,'EW7A5122','uploads/all/wbvKalboKgd8JDO4ZkLzoTQ2HXRLMeX1pNT6ucYK.jpg',9,1203624,'jpg','image','2021-01-14 08:42:55','2021-01-14 08:42:55',NULL),(1138,'EW7A5115','uploads/all/FWcNJAmmrYGbZLgerOcxk57LXGO97s7J4qeLk5EQ.jpg',9,2233137,'jpg','image','2021-01-14 08:42:57','2021-01-14 08:42:57',NULL),(1139,'EW7A3008','uploads/all/ozKT4O5itGuyTaNq1OUY23HTRbsWkDTJ79Iw2lPa.jpg',9,1680435,'jpg','image','2021-01-14 08:53:09','2021-01-14 08:53:09',NULL),(1140,'EW7A3078','uploads/all/s4IBvWYlo7aG1oUORBp5xfzwZNYF5oD9pXXszyps.jpg',9,1224626,'jpg','image','2021-01-14 08:53:09','2021-01-14 08:53:09',NULL),(1141,'EW7A3079','uploads/all/x3XU9JACsMZ6AwUc78Zz6vYrEKgQ8bl6veMSmryz.jpg',9,2839934,'jpg','image','2021-01-14 08:53:23','2021-01-14 08:53:23',NULL),(1142,'EW7A3077','uploads/all/1YU0YWAUrMwfeNoBkUMKkiibc1BzF69fmSyIdnw6.jpg',9,3705430,'jpg','image','2021-01-14 08:53:38','2021-01-14 08:53:38',NULL),(1143,'EW7A5137','uploads/all/jdB4DCCYSJs8mjJEJhmrMSmFrjEw17Jh7IyK8u6y.jpg',9,2262183,'jpg','image','2021-01-14 08:54:09','2021-01-14 08:54:09',NULL),(1144,'EW7A5132','uploads/all/V3yUSs1dkbTGj9NgUbk1BKsMPkkRdM2qVVsQXCHO.jpg',9,503444,'jpg','image','2021-01-14 08:54:23','2021-01-14 08:54:23',NULL),(1145,'EW7A5127','uploads/all/cTgbGZwru7UggmEM7I1rav71cPGvMQ9PQ62nypii.jpg',9,2737689,'jpg','image','2021-01-14 08:54:28','2021-01-14 08:54:28',NULL),(1146,'EW7A5191','uploads/all/PEs6yT1UYLz90xShyNjoitYrSUuhPyXvtrWQXVoH.jpg',9,738320,'jpg','image','2021-01-14 08:58:51','2021-01-14 08:58:51',NULL),(1147,'EW7A5194','uploads/all/KwoJrFddPBmRAAQk3Zm7VDIzlTBDoCsVpJh1uCUS.jpg',9,2775385,'jpg','image','2021-01-14 08:58:53','2021-01-14 08:58:53',NULL),(1148,'EW7A3081','uploads/all/CJTHuIgltmmhFVCUcVRBVoRKteoIwS6bog4KmoYq.jpg',9,1684003,'jpg','image','2021-01-14 08:59:54','2021-01-14 08:59:54',NULL),(1149,'EW7A3080','uploads/all/ELKeJSHCUjBFiyMfmAs2IiuPAZC7k1FoN3FxK3Ep.jpg',9,3833829,'jpg','image','2021-01-14 09:00:14','2021-01-14 09:00:14',NULL),(1150,'EW7A3085','uploads/all/qbh7h5Cc5YicEULra2hqUISoebK8tGeag4FjLYDx.jpg',9,3341897,'jpg','image','2021-01-14 09:00:24','2021-01-14 09:00:24',NULL),(1151,'EW7A3001','uploads/all/tpC77aeaR1K7qxOjQ9WWTM6DhgvSvEs74d4Ozh9O.jpg',9,1889823,'jpg','image','2021-01-14 09:00:34','2021-01-14 09:00:34',NULL),(1152,'EW7A5189','uploads/all/W9WjUwj6quGuwWZ72xQK9cLDr5W8LytSCk4u5C4k.jpg',9,3049458,'jpg','image','2021-01-14 09:05:16','2021-01-14 09:05:16',NULL),(1153,'EW7A3030','uploads/all/Tlk0HM3lRttrBzIhjDaWJEraRED62XFs8UpW7ZkG.jpg',9,694076,'jpg','image','2021-01-14 09:10:21','2021-01-14 09:10:21',NULL),(1154,'EW7A3027','uploads/all/Fu5PGp3lOvdBg8CD7cZ2VJsJwUG1CQ0s357odAsh.jpg',9,1583119,'jpg','image','2021-01-14 09:10:30','2021-01-14 09:10:30',NULL),(1155,'EW7A3004','uploads/all/Tzzrhuz5f32EyVTqfIkdnmhG9eX4fjE1Kb52ASDG.jpg',9,1453121,'jpg','image','2021-01-14 09:10:46','2021-01-14 09:10:46',NULL),(1156,'EW7A3023','uploads/all/tTo4wL8NnXOOS4JpfH7ePgbM6cv3BESjzKWx8mAe.jpg',9,2827418,'jpg','image','2021-01-14 09:11:18','2021-01-14 09:11:18',NULL),(1157,'237by70','uploads/all/2hNTOEOBHMwKCzPCehdtxtmLc9n92EcCMDjRDNvi.png',9,3360,'png','image','2021-01-14 09:45:53','2021-01-14 09:45:53',NULL),(1158,'final-fianl','uploads/all/5WhxkYRMWhZip3NTpMDI1ZazpywqkAuNTo3jAO6I.png',9,3372,'png','image','2021-01-14 09:52:32','2021-01-14 09:52:32',NULL),(1159,'final11111111111111','uploads/all/T6gE8hbNTHmmHrjjoM8t2tB8HuBPSFDDbmnisMD3.png',9,1106,'png','image','2021-01-14 09:55:22','2021-01-14 09:55:22',NULL),(1160,'images (1)','uploads/all/9SlS66iXFJGV0Nh7czVWN0qF6OOAdXsrwylAVxdJ.jpg',9,3598,'jpg','image','2021-01-14 10:01:58','2021-01-14 10:01:58',NULL),(1161,'perfume-holding','uploads/all/h36xyfcgYeuFbLDCLkzJ55gLmcRNLbWQL2YpEa8k.jpg',9,91958,'jpg','image','2021-01-14 10:01:58','2021-01-14 10:01:58',NULL),(1162,'candice-swanepoel-women-blonde-long-hair-look-blue-eyes-perfume-bokeh-wallpaper-preview','uploads/all/EEcr2GwSL8pSpPtlNuUwDkmCABy8VrzS0IQxDfy3.jpg',9,42999,'jpg','image','2021-01-14 10:01:59','2021-01-14 10:01:59',NULL),(1163,'wp7225286','uploads/all/pUOOtHTmUbQyKmHPEZGAFZEHauq5NJqIP7TdMXbA.jpg',9,71430,'jpg','image','2021-01-14 10:01:59','2021-01-14 10:01:59',NULL),(1164,'download','uploads/all/4oULPGck1ftfKQvGmrpOrFr3s6A9Cfug2x8HxEnI.png',9,6118,'png','image','2021-01-14 10:11:58','2021-01-14 10:11:58',NULL),(1165,'rocket-premium-3-72pc','uploads/all/96l4Auni4wPEvUpu06s9HXRaGAhHz5jyyw35HQ3s.jpg',9,40134,'jpg','image','2021-01-14 10:11:58','2021-01-14 10:11:58',NULL),(1166,'pampers-stand-supermarket-42632909','uploads/all/7Xc6nEeff0MGnuA0GKIVlcigy9VKp6Az4O8NSxJ8.jpg',9,58198,'jpg','image','2021-01-14 10:11:58','2021-01-14 10:11:58',NULL),(1167,'download (1)','uploads/all/8KzpRvES1o0BDNDc9t86CObt0afVharePGScUjle.jpg',9,6078,'jpg','image','2021-01-14 10:14:28','2021-01-14 10:14:28',NULL),(1168,'fe20a8b99b0ab1db9ca72d428e4ff3ed','uploads/all/OK4HVZXZbg8DufDiyNuaQElHatzKoXVZpAMAcCX0.png',9,21263,'png','image','2021-01-14 10:14:28','2021-01-14 10:14:28',NULL),(1169,'download (2)','uploads/all/8n9WtDAKxnWq2SAKVb4Yq1zmoTLsWaPcCFJmtV7j.png',9,7011,'png','image','2021-01-14 10:22:13','2021-01-14 10:22:13',NULL),(1170,'download (4)','uploads/all/CGMBujm8xJMFM0F4y8c4sQT3uEzmsJaMU3PWBEov.jpg',9,10650,'jpg','image','2021-01-14 10:22:13','2021-01-14 10:22:13',NULL),(1171,'download (3)','uploads/all/wsMhF2bOaCLhlHotTwQHdv7TLZ3RknPETinDDsp5.jpg',9,12111,'jpg','image','2021-01-14 10:22:14','2021-01-14 10:22:14',NULL),(1172,'download (2)','uploads/all/XkL0DwKZCIHEMlZTZvm0pnfw6upxttU8vW56ozD4.jpg',9,4441,'jpg','image','2021-01-14 10:22:14','2021-01-14 10:22:14',NULL),(1173,'beaconhouse-1','uploads/all/ywNWaVIKPQXMVKI4Lu6P9QBzubOGZpqaosZfwC3c.jpg',9,23061,'jpg','image','2021-01-14 10:22:14','2021-01-14 10:22:14',NULL),(1174,'3460','uploads/all/O2Sq1UrZaLfmaVNH4uiyYcoqzVX3lvlqqd4N2hXR.jpg',9,15257,'jpg','image','2021-01-14 10:22:14','2021-01-14 10:22:14',NULL),(1175,'the-educators-1','uploads/all/b6MEghuE46X4OvYvMqWDR0439pXQzDbWeQMbh4Wm.jpg',9,22501,'jpg','image','2021-01-14 10:22:14','2021-01-14 10:22:14',NULL),(1176,'punjab','uploads/all/5OLYuYvltCNpAOxvtVQS6z1cw8kHdnHoJzENtRH4.jpg',9,100536,'jpg','image','2021-01-14 10:22:15','2021-01-14 10:22:15',NULL),(1177,'download (1)','uploads/all/a6g5CvKYNhQqCvKb23Wmb29jV38tKiyGvztcGcKW.png',9,4569,'png','image','2021-01-14 10:22:15','2021-01-14 10:22:15',NULL),(1178,'icons-08','uploads/all/DkPhB6Ktwv4gVwZkaTy8cRKUME9ZYOW2QfnCyWxu.jpg',9,590793,'jpg','image','2021-01-14 10:26:23','2021-01-14 10:26:23',NULL),(1179,'icons-02','uploads/all/BRRMkeqteMmOCp7DxEXMIpSPuUCeejdj68xpB467.png',9,255726,'png','image','2021-01-14 10:26:23','2021-01-14 10:26:23',NULL),(1180,'icons-07','uploads/all/CPJiPdN2HtShUmAOaPNdyJ6Q2eqGLyns4wh3ODvL.jpg',9,856038,'jpg','image','2021-01-14 10:26:23','2021-01-14 10:26:23',NULL),(1181,'icons-09','uploads/all/FFQufB9H9kWFvMB50husnTGcknlWDvI1uMPFvmTq.jpg',9,915246,'jpg','image','2021-01-14 10:26:23','2021-01-14 10:26:23',NULL),(1182,'icons-01','uploads/all/g2u9NxnSGvfgqdFISFY5oRWMyuyF0BTSuQO4vohW.png',9,225635,'png','image','2021-01-14 10:26:23','2021-01-14 10:26:23',NULL),(1183,'Untitled-3-01','uploads/all/tWCM2SFzO6e524c2kxBao1peCpOgc90DRK6ZeIJO.jpg',9,67242,'jpg','image','2021-01-14 10:26:24','2021-01-14 10:26:24',NULL),(1184,'Untitled-3-02','uploads/all/54SuoiKj3tFjgJiRFERWkm6Ndigeto79pMerePEm.jpg',9,91779,'jpg','image','2021-01-14 10:26:24','2021-01-14 10:26:24',NULL),(1185,'Untitled-3-03','uploads/all/fb7HwJBP1DPR1C1SBRB3DtdtKHITZimfccOoEuvH.jpg',9,71471,'jpg','image','2021-01-14 10:26:24','2021-01-14 10:26:24',NULL),(1186,'icons-10','uploads/all/UmKpMwB3eq3QeIotk0iXgh0TETbpaYsRxEwvaVu0.jpg',9,1333468,'jpg','image','2021-01-14 10:26:24','2021-01-14 10:26:24',NULL),(1187,'Untitled-3-04','uploads/all/bg08np7cfzbMuFna64YDb7GoDVtun2opRi5WpYxc.jpg',9,58833,'jpg','image','2021-01-14 10:26:24','2021-01-14 10:26:24',NULL),(1188,'Untitled-3-05','uploads/all/futjcIS80FjD6ZhajbemMh0RTXdmohZtxpkpeacY.jpg',9,62050,'jpg','image','2021-01-14 10:26:24','2021-01-14 10:26:24',NULL),(1189,'icons-04','uploads/all/Rx6i4YPSWs3OegLglpP3vMXG50jk1MfQxdi7fpUU.jpg',9,1028770,'jpg','image','2021-01-14 10:26:26','2021-01-14 10:26:26',NULL),(1190,'download (5)','uploads/all/XStZ1Z9sa5gX5cyy8BG38ADzkbDlhLj8kdyXy9jb.jpg',9,7385,'jpg','image','2021-01-14 10:41:43','2021-01-14 10:41:43',NULL),(1191,'Punjab_Group_Of_Colleges_Logo','uploads/all/ilHSbvDQ313hrSVS90orszwDTUOx33aLmeG2Z3TJ.jpg',9,20509,'jpeg','image','2021-01-14 10:41:43','2021-01-14 10:41:43',NULL),(1192,'image_2021_01_14T15_39_49_345Z','uploads/all/5ZwAmNtoxEYiuylvnlT1tKp1OtD7rdLxIJXX5Sfl.png',9,42385,'png','image','2021-01-14 10:41:44','2021-01-14 10:41:44',NULL),(1193,'image_2021_01_14T15_38_42_669Z','uploads/all/WNqiSM4THe8lRdZaFQXB0vAJsSSDzhy4jxfEwAsO.png',9,1146099,'png','image','2021-01-14 10:41:45','2021-01-14 10:41:45',NULL),(1194,'image_2021_01_14T15_42_30_631Z','uploads/all/sr0uufjRfCi9M7eoEuwohOOYMNgbkoFvcU1PAGab.png',9,156331,'png','image','2021-01-14 10:44:36','2021-01-14 10:44:36',NULL),(1195,'image_2021_01_14T16_21_35_617Z','uploads/all/QWgvH8tV1QasaM1PlcNokEtRGqXD2YBbkEXDRIKP.png',9,216751,'png','image','2021-01-14 11:22:27','2021-01-14 11:22:27',NULL),(1196,'EW7A5088','uploads/all/2CzL7pjg2ym26WyM9pa0nimWz6DjAgBx3Cgn8VeI.jpg',9,357495,'jpg','image','2021-01-16 02:12:00','2021-01-16 02:12:00',NULL),(1197,'EW7A6272','uploads/all/voZTjeUpJEJBQTS3Rzx2EuhYqRDwKzLdjDLdchm5.jpg',9,285833,'jpg','image','2021-01-16 02:12:06','2021-01-16 02:12:06',NULL),(1198,'EW7A5090','uploads/all/Neq3dpCiE6Raj68JPaj0WkaZUjn7bJepjlMLe8Jz.jpg',9,1442300,'jpg','image','2021-01-16 02:12:20','2021-01-16 02:12:20',NULL),(1199,'EW7A5469','uploads/all/wjiZqRmP3i84tFSKxQqBaLBJAKqu27JaVcWdhKkt.jpg',9,776354,'jpg','image','2021-01-16 02:12:25','2021-01-16 02:12:25',NULL),(1200,'EW7A5094','uploads/all/jf2Luzl4n1CP2DoIi7lXygzKl1RWD1oPu9MeCkl5.jpg',9,1379893,'jpg','image','2021-01-16 02:12:36','2021-01-16 02:12:36',NULL),(1201,'EW7A3108','uploads/all/JSCdOReTtxZxu8kXRRtAJTpuS5oED8u7Y99w3wnf.jpg',9,380452,'jpg','image','2021-01-16 02:14:50','2021-01-16 02:14:50',NULL),(1202,'EW7A3021','uploads/all/KYpM4Wr0YH7af2GO1xIOAGRyydCv19CS1VczPb1p.jpg',9,737903,'jpg','image','2021-01-16 02:14:50','2021-01-16 02:14:50',NULL),(1203,'EW7A3107','uploads/all/bAhpyz4sSXxKOCPfHLZU1mJszKRRERBiSkquK17x.jpg',9,1161520,'jpg','image','2021-01-16 02:14:53','2021-01-16 02:14:53',NULL),(1204,'EW7A3111','uploads/all/CX48loUVnUKi7xI1LH5QIf43oa1aPCoJETWYjzD8.jpg',9,1455251,'jpg','image','2021-01-16 02:14:54','2021-01-16 02:14:54',NULL),(1205,'EW7A5038','uploads/all/yE5obJBvwK8EbE5vllzVSRPVIKzAqoBnHsqEG1Ho.jpg',9,1314576,'jpg','image','2021-01-16 02:18:03','2021-01-16 02:18:03',NULL),(1206,'EW7A5032','uploads/all/3ikKhclc4q5x4mBSZSnKQ30lSqo591DwFPQm9Tni.jpg',9,850244,'jpg','image','2021-01-16 02:18:05','2021-01-16 02:18:05',NULL),(1207,'EW7A3036','uploads/all/6R1neIMAL0ENkr7lCMR8VMCu3NbSJGoUT7GAO9Fr.jpg',9,1538219,'jpg','image','2021-01-16 02:18:08','2021-01-16 02:18:08',NULL),(1208,'EW7A5037','uploads/all/wjTxeJeqWw9zqdLpkBadYT7Q5qtjUosMg3JwQLXa.jpg',9,1499516,'jpg','image','2021-01-16 02:18:10','2021-01-16 02:18:10',NULL),(1209,'EW7A3034','uploads/all/GcHrte7xf9EG2OPhm6WBM9ycziGUqdCjOZcOUFrh.jpg',9,3495523,'jpg','image','2021-01-16 02:18:25','2021-01-16 02:18:25',NULL),(1210,'EW7A3037','uploads/all/W3khDNOnDnSHfPmvJ5X1cEcKffxcQMPVMNzXxk4u.jpg',9,3393751,'jpg','image','2021-01-16 02:18:29','2021-01-16 02:18:29',NULL),(1211,'EW7A3000','uploads/all/lqPLvwq9mTOwUOyR8KpRkX8nlwRVtlbXI8exIz6Z.jpg',9,2066279,'jpg','image','2021-01-16 02:18:30','2021-01-16 02:18:30',NULL),(1212,'EW7A5030','uploads/all/bE5OKZokKHdFsERmDwfuogTZMhMdN9tKF6peYB4c.jpg',9,3600528,'jpg','image','2021-01-16 02:18:36','2021-01-16 02:18:36',NULL),(1213,'EW7A3054','uploads/all/LzstzYGQ2vnKOVRKNDTUoWFmRm1uIv48QHVXBXS7.jpg',9,338929,'jpg','image','2021-01-16 02:25:31','2021-01-16 02:25:31',NULL),(1214,'EW7A3055','uploads/all/kytidpOVgdzpJjan1bJFDHGU0ibW3taGdKmVwGrk.jpg',9,703773,'jpg','image','2021-01-16 02:25:32','2021-01-16 02:25:32',NULL),(1215,'EW7A3005','uploads/all/DmGyRTO5Fk1MEUz4pqrjeQ3J2RryNAn1tkQWmMft.jpg',9,739093,'jpg','image','2021-01-16 02:25:32','2021-01-16 02:25:32',NULL),(1216,'EW7A6241','uploads/all/KFyRGugA7gEjktUuugG5R9NCKHieVszVfLd9du49.jpg',9,618949,'jpg','image','2021-01-16 02:25:33','2021-01-16 02:25:33',NULL),(1217,'EW7A6272','uploads/all/kr9nPcovxjhBoQjG4qSKGuBtv2PCJnHCTmgjrihm.jpg',9,285833,'jpg','image','2021-01-16 02:25:33','2021-01-16 02:25:33',NULL),(1218,'EW7A5472','uploads/all/GXmVpavTzklQwbQZtTywHzdqI1T3C7m5coU8WGuy.jpg',9,1070150,'jpg','image','2021-01-16 02:25:37','2021-01-16 02:25:37',NULL),(1219,'EW7A3052','uploads/all/TaCeMJRwx0CFSCP3t4SAbaX0gfpVjZ7pbm3q0pXR.jpg',9,1153170,'jpg','image','2021-01-16 02:25:37','2021-01-16 02:25:37',NULL),(1220,'EW7A6239','uploads/all/JVk8LA48YsEMRCgJBgWVUh2c4yXiHOegYUD4MirK.jpg',9,2679019,'jpg','image','2021-01-16 02:25:39','2021-01-16 02:25:39',NULL),(1221,'EW7A6243','uploads/all/rlKnPeRey2RRRIRxMRSRmXBQnSjTeulw8mZEAdZt.jpg',9,2462021,'jpg','image','2021-01-16 02:25:39','2021-01-16 02:25:39',NULL),(1222,'EW7A3090','uploads/all/EeENFM5zFRcezdpCjWI1uHeN8NHKVMq5CWYWo0zt.jpg',9,2895160,'jpg','image','2021-01-16 02:34:09','2021-01-16 02:34:09',NULL),(1223,'EW7A3017','uploads/all/Z0haWlOqqSK8nm7enTrO0oWPmWREuwp1WKZERs3H.jpg',9,1737503,'jpg','image','2021-01-16 02:34:11','2021-01-16 02:34:11',NULL),(1224,'EW7A3088','uploads/all/ftzZsVEgkU1uEmTGQpPMRYZY8lopD81OaMTx71Pj.jpg',9,1373236,'jpg','image','2021-01-16 02:34:11','2021-01-16 02:34:11',NULL),(1225,'EW7A5037','uploads/all/QgGMtPDioBYjgr50pr4jBm57AJ5f7hFe59191Woi.jpg',9,1499516,'jpg','image','2021-01-16 02:34:12','2021-01-16 02:34:12',NULL),(1226,'EW7A5038','uploads/all/a9yyJAxSjhhwJ1brY4VXM0wDYkc1SWpkJkdk1hzy.jpg',9,1314576,'jpg','image','2021-01-16 02:34:15','2021-01-16 02:34:15',NULL),(1227,'EW7A5032','uploads/all/c9PjoNhANJUovX0F6HobpmN9dwNUrGIrPKi2CTUf.jpg',9,850244,'jpg','image','2021-01-16 02:34:15','2021-01-16 02:34:15',NULL),(1228,'EW7A5108','uploads/all/xOHbPXVwdd4vqwDK78YAxX0V9EWQk6bIqC5kVfw2.jpg',9,1103803,'jpg','image','2021-01-16 02:34:15','2021-01-16 02:34:15',NULL),(1229,'EW7A3086','uploads/all/EBHUCNa1LbuGTVULoDc4dy9lOHlHJ0VmU0adueFh.jpg',9,3732564,'jpg','image','2021-01-16 02:34:16','2021-01-16 02:34:16',NULL),(1230,'EW7A6272','uploads/all/HqnZYEtzUcgTqwQGHZgDWmJXGFSWpLASvCdQJzek.jpg',9,285833,'jpg','image','2021-01-16 02:34:20','2021-01-16 02:34:20',NULL),(1231,'EW7A5030','uploads/all/pVPhei1b9W5JoHiVG8CEviG5k05F7Dp3LZ56xVbh.jpg',9,3600528,'jpg','image','2021-01-16 02:34:20','2021-01-16 02:34:20',NULL),(1232,'EW7A5107','uploads/all/XmdnDFuDvObqpLnYO0GcluizM2b9tS7smJvgmOSV.jpg',9,4121674,'jpg','image','2021-01-16 02:34:23','2021-01-16 02:34:23',NULL),(1233,'EW7A5111','uploads/all/xble2HOqRfjRa4xdEJbLq1YYT4MJpkyL5FtyVEmM.jpg',9,3728210,'jpg','image','2021-01-16 02:34:23','2021-01-16 02:34:23',NULL),(1234,'EW7A5449','uploads/all/i09jemGlfotXMELphwAhAZ5IyLV1y0WeaM2J8mld.jpg',9,1231842,'jpg','image','2021-01-16 02:34:23','2021-01-16 02:34:23',NULL),(1235,'EW7A3001','uploads/all/7uMsN9NYYs4kSeivQz36cxqIwylVkZGeislutKPf.jpg',9,1889823,'jpg','image','2021-01-16 02:39:16','2021-01-16 02:39:16',NULL),(1236,'EW7A3080','uploads/all/yrXDy1iXFmrONb8xCPUPECiKwblsEmaJVIm78myD.jpg',9,3833829,'jpg','image','2021-01-16 02:39:23','2021-01-16 02:39:23',NULL),(1237,'EW7A3081','uploads/all/MQng2vqtPjXPkCdf0MvzQMvGHRM80NAqgTrsTC9h.jpg',9,1684003,'jpg','image','2021-01-16 02:39:25','2021-01-16 02:39:25',NULL),(1238,'EW7A3085','uploads/all/GPM59HaR7cgIFXbdcWiJlCOyWJzTgHRYQT8HLINV.jpg',9,3341897,'jpg','image','2021-01-16 02:39:35','2021-01-16 02:39:35',NULL),(1239,'EW7A4975','uploads/all/BnDu0UvGAhbYNnJvUxakBL4u5HridSiDcAGFpuXu.jpg',9,1380188,'jpg','image','2021-01-16 02:39:38','2021-01-16 02:39:38',NULL),(1240,'EW7A5462','uploads/all/9Y9COlsRWV4APrq2CvgIyOt2FxLR560hNeOSeXfr.jpg',9,1381527,'jpg','image','2021-01-16 02:39:42','2021-01-16 02:39:42',NULL),(1241,'EW7A6266','uploads/all/KF027IKZD9e2Ob8b87puSlZePM7VwmW7tyFUY73n.jpg',9,1458374,'jpg','image','2021-01-16 02:39:45','2021-01-16 02:39:45',NULL),(1242,'EW7A6268','uploads/all/me9oc1v8tqlITHQnV5NvqnMO3BVkUCSMlcDRupl2.jpg',9,3254730,'jpg','image','2021-01-16 02:39:52','2021-01-16 02:39:52',NULL),(1243,'EW7A6273','uploads/all/dwRo0CTZ1JaXESxvCf4f2EQiRRoe5LPgaWjtcC7c.jpg',9,352417,'jpg','image','2021-01-16 02:39:53','2021-01-16 02:39:53',NULL),(1244,'EW7A4973','uploads/all/ABBIVVOVJNe2m13SUJf0zqj5i2fGe5vEZEpat3JZ.jpg',9,752359,'jpg','image','2021-01-16 02:40:03','2021-01-16 02:40:03',NULL),(1245,'EW7A4977','uploads/all/tIeZYt8cRAC1DLwyC8kXqjGMgzsotXt96eXqpSqU.jpg',9,1149488,'jpg','image','2021-01-16 02:40:05','2021-01-16 02:40:05',NULL),(1246,'EW7A6263','uploads/all/j0aQftCa9P7x9OwMTv9qeSddxXZvIdDxZFvbtpNg.jpg',9,3743863,'jpg','image','2021-01-16 02:40:18','2021-01-16 02:40:18',NULL),(1247,'EW7A4965','uploads/all/w4iCzNGIc2pVQK8Hcr2nzPqGXKztgX7kCTxYw1mI.jpg',9,2305530,'jpg','image','2021-01-16 02:40:47','2021-01-16 02:40:47',NULL),(1248,'EW7A5634','uploads/all/8Z0b2BxNv0sXyExhLR9NfXhAyCcxvyAxKpmy4iwB.jpg',9,372330,'jpg','image','2021-01-16 02:50:54','2021-01-16 02:50:54',NULL),(1249,'EW7A6273','uploads/all/YHNfSGFbwtBtISwYytFQNv86bm83GtO9MuuXumA1.jpg',9,352417,'jpg','image','2021-01-16 02:50:54','2021-01-16 02:50:54',NULL),(1250,'EW7A5439','uploads/all/8uiBouQS9bLNPnBcXF8sKjhHoN3zWxE6zl8TpN3j.jpg',9,797714,'jpg','image','2021-01-16 02:50:54','2021-01-16 02:50:54',NULL),(1251,'EW7A5638','uploads/all/HPK3BzE3LmTkggoF6NSwoap44STEVR7hHHu4liJq.jpg',9,1305887,'jpg','image','2021-01-16 02:50:55','2021-01-16 02:50:55',NULL),(1252,'EW7A5632','uploads/all/UmPFi52t5C5aiLEWX9ZqbYsQRscIKGLjBz0UWbgd.jpg',9,1927237,'jpg','image','2021-01-16 02:50:56','2021-01-16 02:50:56',NULL),(1253,'EW7A5067','uploads/all/yJuf7OuZyqBTleKVflRqCbSiiKEPjpvKF14C7d2U.jpg',9,633177,'jpg','image','2021-01-16 03:01:29','2021-01-16 03:01:29',NULL),(1254,'EW7A5070','uploads/all/7xtGFGE52bXHn1Bxof8zc6Vp6LphI2bNxFAH3uv7.jpg',9,1156288,'jpg','image','2021-01-16 03:01:29','2021-01-16 03:01:29',NULL),(1255,'EW7A5068','uploads/all/AIDyoo7FcPKxCFRKPmirD4ne0SeMbOSzqAeGt6mr.jpg',9,1217600,'jpg','image','2021-01-16 03:01:30','2021-01-16 03:01:30',NULL),(1256,'EW7A5065','uploads/all/R4lZh1lq1TIgl03QdkKQv56sBJhNv2ALQMdCC4WB.jpg',9,2132762,'jpg','image','2021-01-16 03:01:30','2021-01-16 03:01:30',NULL),(1257,'EW7A6273','uploads/all/WkD93I4wMktRupOI0yz5QkXSyPTRNfrEJjKwuW72.jpg',9,352417,'jpg','image','2021-01-16 03:04:29','2021-01-16 03:04:29',NULL),(1258,'EW7A5115','uploads/all/s9OrPBI2KF3xsRsGnOACa1yPP8mXn7UoZLATllyp.jpg',9,2233137,'jpg','image','2021-01-16 03:04:30','2021-01-16 03:04:30',NULL),(1259,'EW7A5119','uploads/all/0qdcbUXygnrejVdcX3Z0uRwYxS6imawSo8Oao1Mw.jpg',9,402771,'jpg','image','2021-01-16 03:04:30','2021-01-16 03:04:30',NULL),(1260,'EW7A5440','uploads/all/nMzmFZbqiZR2T7Stw6VlzkdLigdEjbE7QUfZPSex.jpg',9,645207,'jpg','image','2021-01-16 03:04:30','2021-01-16 03:04:30',NULL),(1261,'EW7A5122','uploads/all/owezwpE26cVf8KCcRGaSgXVQFOHBgCU6rwf6ybf2.jpg',9,1203624,'jpg','image','2021-01-16 03:04:31','2021-01-16 03:04:31',NULL),(1262,'EW7A3008','uploads/all/lsvRL7JrK8rrpgcgzzle1jGxYE1hLFWGnKucCfc6.jpg',9,1680435,'jpg','image','2021-01-16 03:08:00','2021-01-16 03:08:00',NULL),(1263,'EW7A3079','uploads/all/jy2tltKCAYb7twQzkn4vU4H3HU4mtmqYtKzsYDO6.jpg',9,2839934,'jpg','image','2021-01-16 03:08:03','2021-01-16 03:08:03',NULL),(1264,'EW7A3078','uploads/all/SeJcpM99WyiAOKzm66uD9qj9nBtkRuv1cEi9NtqM.jpg',9,1224626,'jpg','image','2021-01-16 03:08:04','2021-01-16 03:08:04',NULL),(1265,'EW7A3077','uploads/all/EMm9hovhaMm06sNCD3GeNg6eLrFaD7U19FjmTHQf.jpg',9,3705430,'jpg','image','2021-01-16 03:08:05','2021-01-16 03:08:05',NULL),(1266,'EW7A3015','uploads/all/JAYA6cGrEWNvgay2kPCrzK4PrVdxe420drDJ7kwx.jpg',9,736342,'jpg','image','2021-01-16 03:15:30','2021-01-16 03:15:30',NULL),(1267,'EW7A3104','uploads/all/Ful4UGVn6bAghzKX0TebviIB2sHY72abhBnWkM4D.jpg',9,526633,'jpg','image','2021-01-16 03:15:30','2021-01-16 03:15:30',NULL),(1268,'EW7A3106','uploads/all/FhpJ0NMUqm5RVSZmWnWUGj7dvXrXIBy2mKfIX8f2.jpg',9,980316,'jpg','image','2021-01-16 03:15:31','2021-01-16 03:15:31',NULL),(1269,'EW7A3102','uploads/all/aleUaRY8iyt5vDi3dr8PJKawWNB1xE35WluCMZfo.jpg',9,2015468,'jpg','image','2021-01-16 03:15:31','2021-01-16 03:15:31',NULL),(1270,'EW7A3048','uploads/all/7MgUfzqjUHUYCtvqYxGtX5osGJdN0o2VO0qPAZNG.jpg',9,353276,'jpg','image','2021-01-16 03:17:52','2021-01-16 03:17:52',NULL),(1271,'EW7A2996','uploads/all/eSQxEclo9yHCm07msBpdRpMadIAGQeEJsbrLRJPh.jpg',9,743417,'jpg','image','2021-01-16 03:17:52','2021-01-16 03:17:52',NULL),(1272,'EW7A3015','uploads/all/Y1VRSzViiBtR5e8IDo3hB9ow7wtALgGbWxEncln2.jpg',9,736342,'jpg','image','2021-01-16 03:17:53','2021-01-16 03:17:53',NULL),(1273,'EW7A3050','uploads/all/hHDuiG5bKFtTMCYm9YL3JprVtX5RkkXqggbySsr7.jpg',9,1326652,'jpg','image','2021-01-16 03:17:56','2021-01-16 03:17:56',NULL),(1274,'EW7A4959','uploads/all/CRnuxaTzYAPZcHf3coVQHSrbIP5EpMAi2acFYYya.jpg',9,1552792,'jpg','image','2021-01-16 03:17:56','2021-01-16 03:17:56',NULL),(1275,'EW7A4955','uploads/all/0PO4NPjUYB7tDnBbLcP7ni4AKEJFsliD443H2P8u.jpg',9,957147,'jpg','image','2021-01-16 03:17:57','2021-01-16 03:17:57',NULL),(1276,'EW7A4956','uploads/all/IqQ1r1AhNwD3L3r7mNO1gGyNDSxr26Z2f9XHMDQB.jpg',9,1749967,'jpg','image','2021-01-16 03:17:57','2021-01-16 03:17:57',NULL),(1277,'EW7A5629','uploads/all/ztkdWWixzlACj21rKSU0jhtXf4SU5XXrmHaPiBBM.jpg',9,370384,'jpg','image','2021-01-16 03:17:58','2021-01-16 03:17:58',NULL),(1278,'EW7A5624','uploads/all/Tg9uiGJzMyukUomxGl3nfPwKmBewvWm71pEnS2xo.jpg',9,1551082,'jpg','image','2021-01-16 03:17:59','2021-01-16 03:17:59',NULL),(1279,'EW7A3047','uploads/all/ASDyQSR4BS3GLvSfCbNyjGXVPhDqy1GKXuKkyxhq.jpg',9,2069993,'jpg','image','2021-01-16 03:17:59','2021-01-16 03:17:59',NULL),(1280,'EW7A5461','uploads/all/vDlTxZQaOl5Axj2gWDvvJvsAEZgcxOMP3dpc6f4m.jpg',9,854175,'jpg','image','2021-01-16 03:17:59','2021-01-16 03:17:59',NULL),(1281,'EW7A5630','uploads/all/J1H0tzef7quA8woUODmmFOmqJA8xML5prBfAe3y6.jpg',9,1397689,'jpg','image','2021-01-16 03:18:01','2021-01-16 03:18:01',NULL),(1282,'EW7A6273','uploads/all/fJMeyn6IkCf4hQB0IPfedrmwoFCNjWlV9cednCKu.jpg',9,352417,'jpg','image','2021-01-16 03:18:01','2021-01-16 03:18:01',NULL),(1283,'EW7A4954','uploads/all/2ncz4Ku2XoHdMRoPYi6xJmk3bdb3YZIH4L573iad.jpg',9,2732120,'jpg','image','2021-01-16 03:18:05','2021-01-16 03:18:05',NULL),(1284,'EW7A5150','uploads/all/EdFKrCEvqvRV2XNs4oLL9X4JQJHcdZt46sGv25Nt.jpg',9,375971,'jpg','image','2021-01-16 03:22:52','2021-01-16 03:22:52',NULL),(1285,'EW7A5143','uploads/all/Oj9JlNSE0P0uzNxOeVyH5SqWFmkANetOE18xfp7J.jpg',9,1703879,'jpg','image','2021-01-16 03:22:52','2021-01-16 03:22:52',NULL),(1286,'EW7A5440','uploads/all/Tad6G1vnbQtzUw5sT6EyumwhDeSxXJTW3tRvwa5Z.jpg',9,645207,'jpg','image','2021-01-16 03:22:53','2021-01-16 03:22:53',NULL),(1287,'EW7A6273','uploads/all/8wQVrkgHN8OpDu7NG6RwJc1HMjMy5HHLSJjjFylu.jpg',9,352417,'jpg','image','2021-01-16 03:22:54','2021-01-16 03:22:54',NULL),(1288,'EW7A5151','uploads/all/ziI8trTPqtjjKiAhxemvJBPx7CQGFWZmZEiKVtHa.jpg',9,1200322,'jpg','image','2021-01-16 03:22:54','2021-01-16 03:22:54',NULL),(1289,'EW7A6273','uploads/all/zF5MHn473e3Mg2jm7eVd3VCBBhTSHH6usnldndsa.jpg',9,352417,'jpg','image','2021-01-16 03:25:40','2021-01-16 03:25:40',NULL),(1290,'EW7A5156','uploads/all/d8roqPNMt29P0IrBSlHLkrQeNWWChRC84SdZCjbS.jpg',9,372272,'jpg','image','2021-01-16 03:25:40','2021-01-16 03:25:40',NULL),(1291,'EW7A5431','uploads/all/ySHQNyW6ytJE1Xojw4GtzdQJhQZexhzHy037efzL.jpg',9,716874,'jpg','image','2021-01-16 03:25:41','2021-01-16 03:25:41',NULL),(1292,'EW7A5160','uploads/all/EbF0D9m2IaSN9psyyUBnkLGv6if7sUL4wBmt0k92.jpg',9,926309,'jpg','image','2021-01-16 03:25:42','2021-01-16 03:25:42',NULL),(1293,'EW7A5154','uploads/all/olfXHMZSEOpfhM0A9eTqGBPj8RTIwZlCA95DQw82.jpg',9,1637247,'jpg','image','2021-01-16 03:25:46','2021-01-16 03:25:46',NULL),(1294,'EW7A6273','uploads/all/x8uVNEkOh3pgaEEbuNhpUUByOsiuV1nHY882JnFv.jpg',9,352417,'jpg','image','2021-01-16 03:29:32','2021-01-16 03:29:32',NULL),(1295,'EW7A5166','uploads/all/VNsKqXp6DRrUpnOIXwL0oC4gfnkIupI5pljiiRsI.jpg',9,1068926,'jpg','image','2021-01-16 03:29:34','2021-01-16 03:29:34',NULL),(1296,'EW7A3032','uploads/all/IeEqTjmj1ZL3YlWYEdizpxh6rM49NaIZQx7MnJ8h.jpg',9,493933,'jpg','image','2021-01-16 03:29:40','2021-01-16 03:29:40',NULL),(1297,'EW7A3006','uploads/all/ZRl13zeyGYK5iJZkW5UCfzjjaCi05Ti6XJex08WT.jpg',9,1076314,'jpg','image','2021-01-16 03:29:42','2021-01-16 03:29:42',NULL),(1298,'EW7A3031','uploads/all/JFGhSOVZVJV1JK215xN7yDn5czC7dQ0yM6bHGN7q.jpg',9,2285817,'jpg','image','2021-01-16 03:29:43','2021-01-16 03:29:43',NULL),(1299,'EW7A5163','uploads/all/6nIF6tY3oI3j4RpgevNF4RN1IjDrANasdA8dU4HU.jpg',9,3352834,'jpg','image','2021-01-16 03:29:43','2021-01-16 03:29:43',NULL),(1300,'EW7A5168','uploads/all/xpx9ge0uoQC7zebKMRkjukIXxDArCHDa3s5bEeTx.jpg',9,3288938,'jpg','image','2021-01-16 03:29:44','2021-01-16 03:29:44',NULL),(1301,'EW7A5456','uploads/all/F0tP9yECf4y8qGiDLGNNw4fJKtjl17vd2ViOvYn2.jpg',9,1236344,'jpg','image','2021-01-16 03:29:44','2021-01-16 03:29:44',NULL),(1302,'EW7A3033','uploads/all/cQTBRs1weZHdiLcYnt1F7f0bOC6ZooAugUZC8ku1.jpg',9,1359998,'jpg','image','2021-01-16 03:29:45','2021-01-16 03:29:45',NULL),(1303,'EW7A6273','uploads/all/QOIDUabkvHLajmq4Oo6tq7VmQTe5QojpuRhQu688.jpg',9,352417,'jpg','image','2021-01-16 03:31:33','2021-01-16 03:31:33',NULL),(1304,'EW7A5166','uploads/all/TYWtHjfN4Ip4BK7gbl4FgUQacIbqCw0MKNdmdZBi.jpg',9,1068926,'jpg','image','2021-01-16 03:31:36','2021-01-16 03:31:36',NULL),(1305,'EW7A5456','uploads/all/TvlLyBRV0vw8yTwpDhusSvxzVHL6U3UEyLgvtVbx.jpg',9,1236344,'jpg','image','2021-01-16 03:31:36','2021-01-16 03:31:36',NULL),(1306,'EW7A5163','uploads/all/q0FzCak4bkM78FWuq3d7qmH2Tc9PaxKmDiEzE4zk.jpg',9,3352834,'jpg','image','2021-01-16 03:31:37','2021-01-16 03:31:37',NULL),(1307,'EW7A5038','uploads/all/HfxSqVmyXsQxW9yVuCVtofVDWWM2R2cd3PaC0gq0.jpg',9,928466,'jpg','image','2021-01-16 03:31:40','2021-01-16 03:31:40',NULL),(1308,'EW7A5037','uploads/all/dSNaWIrX0b1lowy1oQzZBtspp9QEMyeo6MM036Fc.jpg',9,2317155,'jpg','image','2021-01-16 03:31:40','2021-01-16 03:31:40',NULL),(1309,'EW7A5040','uploads/all/LMcerkc835poPExWIKv1cqd6mWu8FvIWA3qIDI90.jpg',9,1500371,'jpg','image','2021-01-16 03:31:41','2021-01-16 03:31:41',NULL),(1310,'EW7A5168','uploads/all/DFO8HcMaUrQFcqToCnMJPiS1ITVvBxNc1GMPZfHH.jpg',9,3288938,'jpg','image','2021-01-16 03:31:41','2021-01-16 03:31:41',NULL),(1311,'EW7A5039','uploads/all/izwzNxJj8GGQavLZctfere47itLz4KtOiVZo7LdB.jpg',9,1732682,'jpg','image','2021-01-16 03:31:43','2021-01-16 03:31:43',NULL),(1312,'EW7A5176','uploads/all/vVXtpdEEMs0Lnmc34Oqi8HXEvKVhkgZaeAwkVta3.jpg',9,533310,'jpg','image','2021-01-16 03:32:26','2021-01-16 03:32:26',NULL),(1313,'EW7A5458','uploads/all/TzcMPxpZUkTgzkPsv5tzJFrSeJqMKJjESeNVa081.jpg',9,1009253,'jpg','image','2021-01-16 03:32:30','2021-01-16 03:32:30',NULL),(1314,'EW7A5179','uploads/all/Ot42RqC5HpzPKwXgISX1gj2WYztn9T0KejH2DCvV.jpg',9,1805378,'jpg','image','2021-01-16 03:32:30','2021-01-16 03:32:30',NULL),(1315,'EW7A5173','uploads/all/7MLZ0I6Jvk11WDnjskJKJGJV43qv94UIYAodydLH.jpg',9,2835525,'jpg','image','2021-01-16 03:32:32','2021-01-16 03:32:32',NULL),(1316,'EW7A5058','uploads/all/25npFqdAbrKGdonnxbiDTQ4rxlzJpJQkPEnZXCti.jpg',9,541932,'jpg','image','2021-01-16 03:37:24','2021-01-16 03:37:24',NULL),(1317,'EW7A5062','uploads/all/nTjO3qFLNw2hsPFUQgWkRr4QEASgDcBubIt0ho1x.jpg',9,1110762,'jpg','image','2021-01-16 03:37:25','2021-01-16 03:37:25',NULL),(1318,'EW7A5063','uploads/all/TF7mJM50DAbfQyWNByi2JF1WAvl5TWAgJksElrXw.jpg',9,1003299,'jpg','image','2021-01-16 03:37:26','2021-01-16 03:37:26',NULL),(1319,'EW7A5047','uploads/all/kX9GTuXOaweiSvWosfpnneDzf6xi6FzWIamdwjfW.jpg',9,3464546,'jpg','image','2021-01-16 03:37:29','2021-01-16 03:37:29',NULL),(1320,'EW7A6273','uploads/all/F7anHoFYeNM9W2Vy2hohxc4RyklROFYyGqyOgH5q.jpg',9,352417,'jpg','image','2021-01-16 03:37:42','2021-01-16 03:37:42',NULL),(1321,'EW7A5453','uploads/all/TEJ1A3L3415biq8Bo8uZXZIrrXaygIxXgc2zrdcp.jpg',9,1166191,'jpg','image','2021-01-16 03:37:43','2021-01-16 03:37:43',NULL),(1322,'EW7A6247','uploads/all/zMqMf2uG4ZgpYPhdAknoAcSFdRsy5Ox81KjLKL0L.jpg',9,608062,'jpg','image','2021-01-16 03:37:43','2021-01-16 03:37:43',NULL),(1323,'EW7A6245','uploads/all/SVF5PNF56dLHqqf39r45UICv0kT6flGtXx1lj0k4.jpg',9,3490303,'jpg','image','2021-01-16 03:37:47','2021-01-16 03:37:47',NULL),(1324,'EW7A6248','uploads/all/zOfpsCrxzFNsogTl6yQALzscK0IqDOlHdvp2Rani.jpg',9,2328578,'jpg','image','2021-01-16 03:37:48','2021-01-16 03:37:48',NULL),(1325,'EW7A5455','uploads/all/uK41APciVSPtwnyuPCeR2NDXG8Hb1gh0vGn64Ipq.jpg',9,832904,'jpg','image','2021-01-16 03:38:48','2021-01-16 03:38:48',NULL),(1326,'EW7A6223','uploads/all/LPQymcVjVypfiqv5EF1itFXl8AhjL4LiPFXps1vc.jpg',9,1474226,'jpg','image','2021-01-16 03:38:49','2021-01-16 03:38:49',NULL),(1327,'EW7A6273','uploads/all/vi3y98iyeKb3XpkaBKZGJnLe1JUQRBt0erVQvrNH.jpg',9,352417,'jpg','image','2021-01-16 03:38:49','2021-01-16 03:38:49',NULL),(1328,'EW7A6231','uploads/all/T6ltxYTQrW1TgvvRM7FALhVwQbtyGj6niiH4sjgh.jpg',9,875607,'jpg','image','2021-01-16 03:38:49','2021-01-16 03:38:49',NULL),(1329,'EW7A6232','uploads/all/FVS1jvKsCPT5iZdyAqmcfObou2hG6CdtHmQivmUU.jpg',9,1083696,'jpg','image','2021-01-16 03:38:52','2021-01-16 03:38:52',NULL),(1330,'EW7A5027','uploads/all/0ap5vCDLzkVchsD9u8HPaVqsrndojX0xfSW40myL.jpg',9,1209771,'jpg','image','2021-01-16 03:39:44','2021-01-16 03:39:44',NULL),(1331,'EW7A5023','uploads/all/HfMCcuy8Ae9WUgtffRvSCPHTr72GYLqBfTiFWdBD.jpg',9,676044,'jpg','image','2021-01-16 03:39:50','2021-01-16 03:39:50',NULL),(1332,'EW7A5022','uploads/all/NdwIyUsYd6UTmZFsMZ2YD5PJfOJb5tLA8u6XDmAy.jpg',9,2024301,'jpg','image','2021-01-16 03:39:51','2021-01-16 03:39:51',NULL),(1333,'EW7A5025','uploads/all/NL8RS8KwzaWqiNFwpwYpAPfUvnWFOdsw8B5dmKg9.jpg',9,1274028,'jpg','image','2021-01-16 03:39:52','2021-01-16 03:39:52',NULL),(1334,'EW7A5007','uploads/all/FiSjDrzgMFSIGMWQE6Kj8Y5s0VMTFEyEBJ4Vqw4q.jpg',9,800988,'jpg','image','2021-01-16 03:41:04','2021-01-16 03:41:04',NULL),(1335,'EW7A5001','uploads/all/52slxPK58ChecnrBzaEb0qlZlmZXNToLL4K8HkV0.jpg',9,2318138,'jpg','image','2021-01-16 03:41:06','2021-01-16 03:41:06',NULL),(1336,'EW7A5009','uploads/all/F7N2vKFsBDuJu0O7lpk9OsmG6HUhqiX8w1rkGzpO.jpg',9,1394615,'jpg','image','2021-01-16 03:41:06','2021-01-16 03:41:06',NULL),(1337,'EW7A5010','uploads/all/tEYShZjr1841ayNWJ4SOFszW7GvqOKzbrhLbbZTY.jpg',9,1351785,'jpg','image','2021-01-16 03:41:06','2021-01-16 03:41:06',NULL),(1338,'EW7A4986','uploads/all/kw7yjQgTgSJoAC5VJtYVrExw1gXirdrkgZx24o1Q.jpg',9,922271,'jpg','image','2021-01-16 03:42:13','2021-01-16 03:42:13',NULL),(1339,'EW7A4985','uploads/all/uvRcrXuOP80nNId7OWG9XN9kQhYwTgI6S6A92ATo.jpg',9,3064189,'jpg','image','2021-01-16 03:42:14','2021-01-16 03:42:14',NULL),(1340,'EW7A4987','uploads/all/oVri38tq6aoChkIyshFCt1IU4JGgrYdhOPi2zD2a.jpg',9,1479649,'jpg','image','2021-01-16 03:42:14','2021-01-16 03:42:14',NULL),(1341,'EW7A4989','uploads/all/L91O5aT2mSHq621W4xNSnvp0VHBT4o3MoKj1tN7Q.jpg',9,1608458,'jpg','image','2021-01-16 03:42:14','2021-01-16 03:42:14',NULL),(1342,'EW7A5072','uploads/all/ae4rFkGCoHYvOjTYsocNOSiQgwmRodVMUX9gutzE.jpg',9,459006,'jpg','image','2021-01-16 03:43:42','2021-01-16 03:43:42',NULL),(1343,'EW7A5071','uploads/all/vsJIl0xveNLVJ1rZgkPmEIbapMarEBPgGnNSN1mS.jpg',9,1266730,'jpg','image','2021-01-16 03:43:42','2021-01-16 03:43:42',NULL),(1344,'EW7A5074','uploads/all/Mp4hCA1kE6U3VEgZwWsWVJpzNyMWAV5Foci6khre.jpg',9,593689,'jpg','image','2021-01-16 03:43:44','2021-01-16 03:43:44',NULL),(1345,'EW7A5073','uploads/all/q1UgBtB417QVwvi2DEyf439qnlkkljkKBR1ZNqdi.jpg',9,915129,'jpg','image','2021-01-16 03:43:45','2021-01-16 03:43:45',NULL),(1346,'EW7A5032','uploads/all/0oZB1sMrUBpY8Mg2dYNxOzCAhgmOQ21NmVJ95lyE.jpg',9,850244,'jpg','image','2021-01-16 03:44:38','2021-01-16 03:44:38',NULL),(1347,'EW7A5037','uploads/all/ZkDMWRoXAUowmrDD09jSw62KsNOOzZAXKI5nM0Co.jpg',9,1499516,'jpg','image','2021-01-16 03:44:44','2021-01-16 03:44:44',NULL),(1348,'EW7A5030','uploads/all/yDtb7PDPFTgvYv47IODjTqhgEhPLmYTnV2GBCY7a.jpg',9,3600528,'jpg','image','2021-01-16 03:44:57','2021-01-16 03:44:57',NULL),(1349,'EW7A5022','uploads/all/bZnwwfJkZScSKMX3Tpeft6bfDIkPoCvG8VLWHmes.jpg',9,814310,'jpg','image','2021-01-16 03:45:00','2021-01-16 03:45:00',NULL),(1350,'EW7A5038','uploads/all/y8J0suAYwzkHdDnakfx5Fw78q6n0oRllt35R16mk.jpg',9,1314576,'jpg','image','2021-01-16 03:45:03','2021-01-16 03:45:03',NULL),(1351,'EW7A5023','uploads/all/IntcdkGmneZH7iSAFD9c23SEyLQJnIni9iPQaOhm.jpg',9,1605723,'jpg','image','2021-01-16 03:45:11','2021-01-16 03:45:11',NULL),(1352,'EW7A5024','uploads/all/Csy053BurO680HjThhQRcbNXBNPZtiBdStwSqapW.jpg',9,1181787,'jpg','image','2021-01-16 03:45:16','2021-01-16 03:45:16',NULL),(1353,'EW7A5021','uploads/all/vdWbnZhkkjtz9q723neF9YITAUwZv6Byxs44KpIo.jpg',9,1645207,'jpg','image','2021-01-16 03:45:17','2021-01-16 03:45:17',NULL),(1354,'EW7A5001','uploads/all/E20WtBewR4F8MJdH4V4doq3TahCu82CaCvQB6xha.jpg',9,2318138,'jpg','image','2021-01-16 03:47:13','2021-01-16 03:47:13',NULL),(1355,'EW7A5007','uploads/all/n2jSaL3XTFEZmtVE9HAvoa67NuZ79EJR7Ve96yjg.jpg',9,800988,'jpg','image','2021-01-16 03:47:13','2021-01-16 03:47:13',NULL),(1356,'EW7A5010','uploads/all/QTW0hu8n8GdaXlBju7jxDlSKuoCuqQUYiClVHddE.jpg',9,1351785,'jpg','image','2021-01-16 03:47:13','2021-01-16 03:47:13',NULL),(1357,'EW7A5009','uploads/all/X3Y8eoWg7u2ncgWYpyD7LEdFEl4E6Lx0WSkch6KS.jpg',9,1394615,'jpg','image','2021-01-16 03:47:13','2021-01-16 03:47:13',NULL),(1358,'EW7A5028','uploads/all/LBkPQ0Sep2fB7FGtZc80AiS4yjMhNk0zDzUbaCvK.jpg',9,1038952,'jpg','image','2021-01-16 03:47:26','2021-01-16 03:47:26',NULL),(1359,'EW7A5025','uploads/all/scawV5mfwD9pEOvbdXelgKtS5icCaJmuhLVyxKcq.jpg',9,2106210,'jpg','image','2021-01-16 03:47:27','2021-01-16 03:47:27',NULL),(1360,'EW7A5026','uploads/all/FmLRMrQ92TTbJCVji8dH1PaWAdqsaDazfc12ACd7.jpg',9,688748,'jpg','image','2021-01-16 03:47:27','2021-01-16 03:47:27',NULL),(1361,'EW7A5027','uploads/all/OR9L3YwjZvy0syaR3jpqizjA0CV1wXKRA7Qh4obj.jpg',9,1322321,'jpg','image','2021-01-16 03:47:28','2021-01-16 03:47:28',NULL),(1362,'EW7A4955','uploads/all/9Uz0J5Aqs7kbYz2AY2SG5USPFLzw1XTBS8EL5ZCa.jpg',9,957147,'jpg','image','2021-01-16 03:48:58','2021-01-16 03:48:58',NULL),(1363,'EW7A4956','uploads/all/76DPkXcRhSDq21bDdKEyIVSWKZK7LPXH6yheIZd0.jpg',9,1749967,'jpg','image','2021-01-16 03:48:59','2021-01-16 03:48:59',NULL),(1364,'EW7A4959','uploads/all/gpAo0OTdLWvksD4Z74YiqiyjbBZqecHyMK7BLQ5S.jpg',9,1552792,'jpg','image','2021-01-16 03:49:00','2021-01-16 03:49:00',NULL),(1365,'EW7A4954','uploads/all/paCu547e0YyK2j5pAvI6U8zUkFO3ll2nnoycKn1T.jpg',9,2732120,'jpg','image','2021-01-16 03:49:00','2021-01-16 03:49:00',NULL),(1366,'EW7A5023','uploads/all/ys0G2Wtay5yb768vPfBBtBdXUZMjpQL7dIJ0z759.jpg',9,676044,'jpg','image','2021-01-16 03:49:11','2021-01-16 03:49:11',NULL),(1367,'EW7A5022','uploads/all/Jp9ZQn57KQMsl8yFpjg324tomckQt14N1STQSmqv.jpg',9,2024301,'jpg','image','2021-01-16 03:49:12','2021-01-16 03:49:12',NULL),(1368,'EW7A5025','uploads/all/XnnRHdbgprFkh93g2YpyOg1b8M9pzi3pqStudsqF.jpg',9,1274028,'jpg','image','2021-01-16 03:49:13','2021-01-16 03:49:13',NULL),(1369,'EW7A5027','uploads/all/CIYhOFGUuBEfyaFLNWhoJzztlgKLSN77WfZYxxB3.jpg',9,1209771,'jpg','image','2021-01-16 03:49:13','2021-01-16 03:49:13',NULL),(1370,'EW7A5015','uploads/all/ZiU3sdB7QayIU0kTkO4raF3EoUZbpEY2BAGncgvV.jpg',9,744654,'jpg','image','2021-01-16 03:50:37','2021-01-16 03:50:37',NULL),(1371,'EW7A5019','uploads/all/ujMyTlDWJfCQRjB6XpusVTjAtLRgSgr2Kvkti68a.jpg',9,1414240,'jpg','image','2021-01-16 03:50:41','2021-01-16 03:50:41',NULL),(1372,'EW7A5020','uploads/all/NQawSgTZ80eT3PNtSED3Vi5umtJzSqIPuds1js9m.jpg',9,1312384,'jpg','image','2021-01-16 03:50:43','2021-01-16 03:50:43',NULL),(1373,'EW7A5014','uploads/all/VdoFyTdk3XODBv8NtqfBT07lW10P6aKlsO2cXzkP.jpg',9,2938089,'jpg','image','2021-01-16 03:50:49','2021-01-16 03:50:49',NULL),(1374,'EW7A3015','uploads/all/UpGtcI3G9Ht9WZBAh6iHKaUPY3uTCfhrwdPTfKYD.jpg',9,736342,'jpg','image','2021-01-16 03:50:56','2021-01-16 03:50:56',NULL),(1375,'EW7A4935','uploads/all/zUof4jNN559lSPcbAN8ICdcbLPHzSQXpcKkRO1Yt.jpg',9,933248,'jpg','image','2021-01-16 03:50:57','2021-01-16 03:50:57',NULL),(1376,'EW7A4933','uploads/all/W47UdMqwSMVEHhY1BzcoOSwCm6ScUsUGuFHOMWdK.jpg',9,350566,'jpg','image','2021-01-16 03:50:58','2021-01-16 03:50:58',NULL),(1377,'EW7A4932','uploads/all/TriqRTPqBind73d6YdeFtadCLGb1t1QH5smU6ZDT.jpg',9,2137000,'jpg','image','2021-01-16 03:51:07','2021-01-16 03:51:07',NULL),(1378,'EW7A5030','uploads/all/g7mOr0B1tiu5IXhbuyjwMy3azAG7UOK0c5yGKOCK.jpg',9,737244,'jpg','image','2021-01-16 03:52:23','2021-01-16 03:52:23',NULL),(1379,'EW7A5029','uploads/all/UMgjrPTsKxdbbNIMJfeqRHpdpuu6rUQD8mWYWmmw.jpg',9,2852635,'jpg','image','2021-01-16 03:52:25','2021-01-16 03:52:25',NULL),(1380,'EW7A5032','uploads/all/6FBwInS1wKxmFcWRbsDBaRBoSsCNeHi3I7UM6Ca8.jpg',9,1298528,'jpg','image','2021-01-16 03:52:26','2021-01-16 03:52:26',NULL),(1381,'EW7A5031','uploads/all/5ZtoX7V7ib527wi5YgFKRZQ3sWVPsnnKzw4ccHLd.jpg',9,1442119,'jpg','image','2021-01-16 03:52:26','2021-01-16 03:52:26',NULL),(1382,'EW7A6273','uploads/all/lPtAN0ET6Nxy9JLCWnr7Eeat99sAPT0RLUeuj8Xt.jpg',9,352417,'jpg','image','2021-01-16 03:52:35','2021-01-16 03:52:35',NULL),(1383,'EW7A5658','uploads/all/XDyPTQPFYGLD2XJmTvdAUTx0wAMCupJEULKTHu1f.jpg',9,392376,'jpg','image','2021-01-16 03:52:35','2021-01-16 03:52:35',NULL),(1384,'EW7A5440','uploads/all/3QdXEE90stt5JgrTg4EFvUbiBTKCDdz6yqNke9P4.jpg',9,645207,'jpg','image','2021-01-16 03:52:35','2021-01-16 03:52:35',NULL),(1385,'EW7A5660','uploads/all/XIB6YZopCGlYwPtEMhjlhX2V0u4DbvC06xiLd8MO.jpg',9,1273087,'jpg','image','2021-01-16 03:52:36','2021-01-16 03:52:36',NULL),(1386,'EW7A5655','uploads/all/PBOszN5H2ORt1d4Qge3LgejtyxJBwPI3D9bLMEPu.jpg',9,1705580,'jpg','image','2021-01-16 03:52:36','2021-01-16 03:52:36',NULL),(1387,'EW7A5039','uploads/all/cyzuRFFpGbEirTXKo5Ae97mWO7uwavzVepHVyKnt.jpg',9,1451569,'jpg','image','2021-01-16 03:53:57','2021-01-16 03:53:57',NULL),(1388,'EW7A5040','uploads/all/icJDYs6VZ79H0EwPzpjiUVf3TjaOMvFFbzz5ycxx.jpg',9,434411,'jpg','image','2021-01-16 03:53:57','2021-01-16 03:53:57',NULL),(1389,'EW7A5042','uploads/all/WCyPOLQ19qMJu6Faj167QpaXjgjIQkStYPorIVvX.jpg',9,556057,'jpg','image','2021-01-16 03:53:58','2021-01-16 03:53:58',NULL),(1390,'EW7A5041','uploads/all/ltsLUbQ51lx9tgyhV2ZxM26SGZXR6rIHMZJ4QGQi.jpg',9,868937,'jpg','image','2021-01-16 03:53:59','2021-01-16 03:53:59',NULL),(1391,'EW7A4987','uploads/all/ZxWGCZGg36feEZwfNxBjFfKRevLKx8RwgoCZDrIU.jpg',9,1479649,'jpg','image','2021-01-16 03:55:26','2021-01-16 03:55:26',NULL),(1392,'EW7A4989','uploads/all/2x091B6jAdw8bjNQySeOcT9M6WQAdFugqIo4gaC0.jpg',9,1608458,'jpg','image','2021-01-16 03:55:26','2021-01-16 03:55:26',NULL),(1393,'EW7A4986','uploads/all/K8jlhOEkVQUm7tKOxzmLxoUNeJcUFLZvRPqRe3Uq.jpg',9,922271,'jpg','image','2021-01-16 03:55:27','2021-01-16 03:55:27',NULL),(1394,'EW7A4985','uploads/all/J65wZrHo2eX74GMO6gEHD1dJDdOIdcb3I7UoIaEI.jpg',9,3064189,'jpg','image','2021-01-16 03:55:27','2021-01-16 03:55:27',NULL),(1395,'EW7A5033','uploads/all/jKrQHIxLVTYFKvKvhilpPXDMD4or4sMGJFfbmdvB.jpg',9,1676380,'jpg','image','2021-01-16 03:55:58','2021-01-16 03:55:58',NULL),(1396,'EW7A5035','uploads/all/BQw3JKrwrynLqqDHrubfUUPMhtdVp0lXgGXoRiN0.jpg',9,1665350,'jpg','image','2021-01-16 03:55:58','2021-01-16 03:55:58',NULL),(1397,'EW7A5034','uploads/all/ZulXE3y6Dmzy7XOFmph7StINcDIDdpWG7XniTAXo.jpg',9,811925,'jpg','image','2021-01-16 03:56:00','2021-01-16 03:56:00',NULL),(1398,'EW7A5036','uploads/all/VGJ2bbp2NDJHd712nFfc8ARCLTz2XIi6OUwvwrvL.jpg',9,1146639,'jpg','image','2021-01-16 03:56:00','2021-01-16 03:56:00',NULL),(1399,'EW7A5039','uploads/all/RRXw4gP1KcbtfY3vhBb93KUyVE6mDofyji7Ts6gr.jpg',9,1451569,'jpg','image','2021-01-16 03:57:05','2021-01-16 03:57:05',NULL),(1400,'EW7A5042','uploads/all/5bjdOzkxWW41JqrQFGKd8pi07VrrVulu33qfxtsP.jpg',9,556057,'jpg','image','2021-01-16 03:57:05','2021-01-16 03:57:05',NULL),(1401,'EW7A5041','uploads/all/BPcR5DA44Y66BSBEJRyJdnUMpFMLjZMNWI5n5Mwd.jpg',9,868937,'jpg','image','2021-01-16 03:57:05','2021-01-16 03:57:05',NULL),(1402,'EW7A5040','uploads/all/SM53hy3OpGs9EgipptlRN0jeyHiwcgz8nIuCXFjZ.jpg',9,434411,'jpg','image','2021-01-16 03:57:05','2021-01-16 03:57:05',NULL),(1403,'EW7A5032','uploads/all/lvdzBeVcRjyc0VVjCsiD0t8pXSzr5tzFy4m2tozu.jpg',9,850244,'jpg','image','2021-01-16 03:57:30','2021-01-16 03:57:30',NULL),(1404,'EW7A5038','uploads/all/fwissrHIXeLL3h2EnTDeIgPI7ZrwwPiOWze5WJ27.jpg',9,1314576,'jpg','image','2021-01-16 03:57:31','2021-01-16 03:57:31',NULL),(1405,'EW7A5030','uploads/all/mqoKchTwu2LKtOcmzjQ3UqRWPHyJ2MqsZTaLOvQ4.jpg',9,3600528,'jpg','image','2021-01-16 03:57:31','2021-01-16 03:57:31',NULL),(1406,'EW7A5037','uploads/all/tpVdZMopNkMDDvsTWkdmztbSjNpfU9c8x3mwVoR0.jpg',9,1499516,'jpg','image','2021-01-16 03:57:31','2021-01-16 03:57:31',NULL),(1407,'EW7A5078','uploads/all/NlKEZG8J1TBgyRJ4RVh2NDjLBQOD1Sp8xyFeshWK.jpg',9,532873,'jpg','image','2021-01-16 03:58:06','2021-01-16 03:58:06',NULL),(1408,'EW7A5076','uploads/all/EAcLmsWc3KwRCYXpJpreM6KsGluZ6XLai6mCkFk4.jpg',9,434630,'jpg','image','2021-01-16 03:58:06','2021-01-16 03:58:06',NULL),(1409,'EW7A5077','uploads/all/cJYuSHBUlnq8oPmqsu3EJe1JBxpDF7Z93DmDtHqM.jpg',9,825455,'jpg','image','2021-01-16 03:58:10','2021-01-16 03:58:10',NULL),(1410,'EW7A5075','uploads/all/9znvUlsKNjlVLqg2LpW2bL8EWLA0x1JOBZ64x15I.jpg',9,1311174,'jpg','image','2021-01-16 03:58:14','2021-01-16 03:58:14',NULL),(1411,'EW7A5033','uploads/all/MtWpDGhFcbZOJRIIBgYy6GRBLrPGy9jT2mdizf0t.jpg',9,1676380,'jpg','image','2021-01-16 03:59:21','2021-01-16 03:59:21',NULL),(1412,'EW7A5034','uploads/all/c6E4wRBXQobueCUR3tDhNVpl2wyZbp7gWn01RgXr.jpg',9,811925,'jpg','image','2021-01-16 03:59:22','2021-01-16 03:59:22',NULL),(1413,'EW7A5036','uploads/all/K8mIhsAoYlupzmNMEm3O74acTX0ReFEFvLGwmJ76.jpg',9,1146639,'jpg','image','2021-01-16 03:59:22','2021-01-16 03:59:22',NULL),(1414,'EW7A5035','uploads/all/Bf4Xie5S52LlN7Uyy9plFtGFMkIbs9lZIcYiEh9K.jpg',9,1665350,'jpg','image','2021-01-16 03:59:25','2021-01-16 03:59:25',NULL),(1415,'EW7A4979','uploads/all/knKONEYjjDT9PseWZBROkm4QRS31iQeZ98dEy3LW.jpg',9,662382,'jpg','image','2021-01-16 04:00:31','2021-01-16 04:00:31',NULL),(1416,'EW7A4978','uploads/all/8QFjwaHMfEHMQTFEdrDuKqXed8SErp6bBW9Lz5sf.jpg',9,1492079,'jpg','image','2021-01-16 04:00:32','2021-01-16 04:00:32',NULL),(1417,'EW7A4981','uploads/all/npwWZW10VhKzqKjOZidx8u4eNpT6SYeqMI31EXHy.jpg',9,986629,'jpg','image','2021-01-16 04:00:33','2021-01-16 04:00:33',NULL),(1418,'EW7A4980','uploads/all/oiNmWnJQeSQ7Ahqj2ybZ0SqG91LfWcdaXRln5V6t.jpg',9,1279975,'jpg','image','2021-01-16 04:00:33','2021-01-16 04:00:33',NULL),(1419,'EW7A5040','uploads/all/ZzFIAK9FAsYOk9cZuKCmSlcSQeEQTf6ECBD7Svtq.jpg',9,434411,'jpg','image','2021-01-16 04:01:06','2021-01-16 04:01:06',NULL),(1420,'EW7A5041','uploads/all/TeXfJrIJcdW55ct1J3fnXjTBMvrHpREMffPITFFD.jpg',9,868937,'jpg','image','2021-01-16 04:01:06','2021-01-16 04:01:06',NULL),(1421,'EW7A5042','uploads/all/JCk1siT4Suw8vAoJQwQsHkAVPcrQOI2SOG6ynirj.jpg',9,556057,'jpg','image','2021-01-16 04:01:07','2021-01-16 04:01:07',NULL),(1422,'EW7A5039','uploads/all/jjZzxZGzN6DWufIct5wdg91paedvxcl2T4zQxjPE.jpg',9,1451569,'jpg','image','2021-01-16 04:01:07','2021-01-16 04:01:07',NULL),(1423,'EW7A5038','uploads/all/pYBrQ8GHop7RqYJ37CJSLAMWfzzDviFRvKkYM79w.jpg',9,928466,'jpg','image','2021-01-16 04:02:06','2021-01-16 04:02:06',NULL),(1424,'EW7A5039','uploads/all/qEffEn91zyo9Wm2F0SYvCVMsz9NlX3WDgaFXrotV.jpg',9,1732682,'jpg','image','2021-01-16 04:02:06','2021-01-16 04:02:06',NULL),(1425,'EW7A5037','uploads/all/5nMJiKgbE60Y6wTIQtMut1qF0Uzih3uySiGaQlJF.jpg',9,2317155,'jpg','image','2021-01-16 04:02:06','2021-01-16 04:02:06',NULL),(1426,'EW7A5040','uploads/all/gb58GLCw96CEKkA0QbkvkY80kXf8Tu07C0GhtT7V.jpg',9,1500371,'jpg','image','2021-01-16 04:02:10','2021-01-16 04:02:10',NULL),(1427,'EW7A5642','uploads/all/cICJKmwleT6bf4E79DF7Fvn5DKleLrJ0X9HkpSV5.jpg',9,381882,'jpg','image','2021-01-16 04:03:09','2021-01-16 04:03:09',NULL),(1428,'EW7A5459','uploads/all/Mi6DPyik66E1ofZOrMWoO8fJ1zts3lcCnWzKECuD.jpg',9,591088,'jpg','image','2021-01-16 04:03:11','2021-01-16 04:03:11',NULL),(1429,'EW7A6273','uploads/all/d2EbBYOTlc0Xf4JF58MLwtIjXhcn1vnvvb2GOHM0.jpg',9,352417,'jpg','image','2021-01-16 04:03:12','2021-01-16 04:03:12',NULL),(1430,'EW7A5640','uploads/all/t72ND7Qy6sDXh5C1nFeI2Zv9bhm3ZUKJgXX3iVE5.jpg',9,1902601,'jpg','image','2021-01-16 04:03:13','2021-01-16 04:03:13',NULL),(1431,'EW7A5644','uploads/all/NBFq8LbRLiNqTk07WN1uT28GBamfdQ6sf5DtPqcy.jpg',9,1552661,'jpg','image','2021-01-16 04:03:17','2021-01-16 04:03:17',NULL),(1432,'EW7A5038','uploads/all/41IAmYFy0mnMRuxxZ6SLk3zMTPUrwyLOf2WKVw1m.jpg',9,1314576,'jpg','image','2021-01-16 04:03:27','2021-01-16 04:03:27',NULL),(1433,'EW7A5037','uploads/all/pBfW14PVlmM9ZQMEIVlr4UGZ7wpVay8DjlDPIlyN.jpg',9,1499516,'jpg','image','2021-01-16 04:03:28','2021-01-16 04:03:28',NULL),(1434,'EW7A5030','uploads/all/ltiJOgUDj35b4ezB51SLQCFMzRWr8BTm99IcJDpm.jpg',9,3600528,'jpg','image','2021-01-16 04:03:28','2021-01-16 04:03:28',NULL),(1435,'EW7A5032','uploads/all/LSipFO0V00t3CbVUIlwTDCOLVif0TYFND7NyYj3U.jpg',9,850244,'jpg','image','2021-01-16 04:03:31','2021-01-16 04:03:31',NULL),(1436,'EW7A4986','uploads/all/veMuQrFCkUPtKlMP7958ip5p0BL5U5VP0Yf3xcKr.jpg',9,922271,'jpg','image','2021-01-16 04:04:30','2021-01-16 04:04:30',NULL),(1437,'EW7A4987','uploads/all/AG4sOrsLr7HLxPXnoX6H5fYQj6xSpXmsrh7GH1pU.jpg',9,1479649,'jpg','image','2021-01-16 04:04:32','2021-01-16 04:04:32',NULL),(1438,'EW7A4989','uploads/all/GQIkz2DuEis2dhsHxOP7Q5P1aHYolKAY20djDme3.jpg',9,1608458,'jpg','image','2021-01-16 04:04:32','2021-01-16 04:04:32',NULL),(1439,'EW7A4985','uploads/all/RkunMRpo7OZeqbXnymJvw97ypVnyMqQKii2Y8wHA.jpg',9,3064189,'jpg','image','2021-01-16 04:04:33','2021-01-16 04:04:33',NULL),(1440,'EW7A4902','uploads/all/hNcJUdigPRYl1eLSbw68J5cLcNqilg8L948mapPL.jpg',9,3149414,'jpg','image','2021-01-16 04:05:38','2021-01-16 04:05:38',NULL),(1441,'EW7A3007','uploads/all/72Su0dNj6MY99rMsJn2QeFwP9Nr19hExqOh7ieuS.jpg',9,1329624,'jpg','image','2021-01-16 04:05:38','2021-01-16 04:05:38',NULL),(1442,'EW7A4904','uploads/all/OYNomjcjnS8MpjYkZaiFlXD2mqaUGwts1lUxBbHB.jpg',9,782747,'jpg','image','2021-01-16 04:05:38','2021-01-16 04:05:38',NULL),(1443,'EW7A4909','uploads/all/J4EV6h71S9BmKJSHnwnbxtGmhlKwWbENZ3yfcWiF.jpg',9,1997267,'jpg','image','2021-01-16 04:05:40','2021-01-16 04:05:40',NULL),(1444,'EW7A3000','uploads/all/PxVHUPs4QoyHsDiM0EF0lAlqNHoj1DfIeh965UeN.jpg',9,2066279,'jpg','image','2021-01-16 04:06:41','2021-01-16 04:06:41',NULL),(1445,'EW7A3036','uploads/all/MqdQQoyTpFoVNuISd5Jt6rIdeJya8KM8VqOhOaLJ.jpg',9,1538219,'jpg','image','2021-01-16 04:06:43','2021-01-16 04:06:43',NULL),(1446,'EW7A3034','uploads/all/a3OiKKGImOR75he2XnANaeuFUKakwXpp4yNlEIFz.jpg',9,3495523,'jpg','image','2021-01-16 04:06:44','2021-01-16 04:06:44',NULL),(1447,'EW7A3037','uploads/all/oz2hS8ed6uC0fMdNcD43j0B5tSKsQMxuxHArIj5u.jpg',9,3393751,'jpg','image','2021-01-16 04:06:47','2021-01-16 04:06:47',NULL),(1448,'EW7A5014','uploads/all/xBQkMgOPeicEP85EdV4DuJ1meMTFCEKgw8rnjnBT.jpg',9,2938089,'jpg','image','2021-01-16 04:07:10','2021-01-16 04:07:10',NULL),(1449,'EW7A5015','uploads/all/kJvnGApU6Hi0bMqrTtWkFcSDlQCwRY4k13vwSAAS.jpg',9,744654,'jpg','image','2021-01-16 04:07:10','2021-01-16 04:07:10',NULL),(1450,'EW7A5019','uploads/all/QAUNlkQjIPuhSEoyr034kugxZ5eWR3XAqSfdI8Ms.jpg',9,1414240,'jpg','image','2021-01-16 04:07:10','2021-01-16 04:07:10',NULL),(1451,'EW7A5020','uploads/all/NNiCapRMvJuRD5G7uvxJGtnXpRhoTFsDmfTZfSxw.jpg',9,1312384,'jpg','image','2021-01-16 04:07:11','2021-01-16 04:07:11',NULL),(1452,'EW7A4939','uploads/all/DTytzucMAcPcIbIJM9ZSWDAfb176zTP5ismAfbR7.jpg',9,3872535,'jpg','image','2021-01-16 04:08:26','2021-01-16 04:08:26',NULL),(1453,'EW7A4942','uploads/all/colMJqZJPm0QE1MSyzfxrakUsPUcfm1DG30ObBzR.jpg',9,1059647,'jpg','image','2021-01-16 04:08:26','2021-01-16 04:08:26',NULL),(1454,'EW7A2984','uploads/all/ZvZvC7F9R2zZGgP8XHwocRgkx0QjMvjl7V3Wh9sB.jpg',9,1851556,'jpg','image','2021-01-16 04:08:33','2021-01-16 04:08:33',NULL),(1455,'EW7A4943','uploads/all/NQ2AA7QlKQfLLxxk3mk6BfWQT3RuZl1OF5HyYJZJ.jpg',9,2713631,'jpg','image','2021-01-16 04:08:34','2021-01-16 04:08:34',NULL),(1456,'EW7A5191','uploads/all/Fr0mIuMJUefUnKebwDnsDvI4IoSeCIWryj3qdBGy.jpg',9,738320,'jpg','image','2021-01-16 04:08:37','2021-01-16 04:08:37',NULL),(1457,'EW7A6273','uploads/all/hnJ6uUWOQwGN12bqZgJawfAHos1SlNWwvltRY7OX.jpg',9,352417,'jpg','image','2021-01-16 04:08:37','2021-01-16 04:08:37',NULL),(1458,'EW7A5189','uploads/all/pWwO1pLwHE7YHlHkhK2UfZ63idephZNGGI6GONKp.jpg',9,3049458,'jpg','image','2021-01-16 04:08:37','2021-01-16 04:08:37',NULL),(1459,'EW7A5442','uploads/all/qdHrp9o3rjRItGufZmXLel7tBBzMuMbMJSObzrkW.jpg',9,1050295,'jpg','image','2021-01-16 04:08:38','2021-01-16 04:08:38',NULL),(1460,'EW7A5194','uploads/all/hVvbVVlRdkB2EHQl2v81FCIewk2fs9waIQ431DyB.jpg',9,2775385,'jpg','image','2021-01-16 04:08:39','2021-01-16 04:08:39',NULL),(1461,'EW7A3017','uploads/all/XIZY4fhGTruUW3g8rKrHhwiM4dKDtOr4pPOdsjSx.jpg',9,1737503,'jpg','image','2021-01-16 04:09:58','2021-01-16 04:09:58',NULL),(1462,'EW7A3088','uploads/all/89lZ9LKwgYJHqoMT6Jra2z4LuQKbjAJcmgzOARha.jpg',9,1373236,'jpg','image','2021-01-16 04:09:59','2021-01-16 04:09:59',NULL),(1463,'EW7A3090','uploads/all/3RSLVg1hnyeS98um5Cl4JxtOzEoDnEIRxom6EozF.jpg',9,2895160,'jpg','image','2021-01-16 04:10:03','2021-01-16 04:10:03',NULL),(1464,'EW7A3086','uploads/all/Misny8ZqGVJtK1AYQJ3DHakh0D01L5nudJFaTsNh.jpg',9,3732564,'jpg','image','2021-01-16 04:10:05','2021-01-16 04:10:05',NULL),(1465,'EW7A3015','uploads/all/hBvzO5NYuBl2GebVkbiAO6JnYUeSaBe1PG2SsVxJ.jpg',9,736342,'jpg','image','2021-01-16 04:10:52','2021-01-16 04:10:52',NULL),(1466,'EW7A4921','uploads/all/LoxkOP3adTAehlrIi4KTTaUeQkC8IExRmSO80MxA.jpg',9,530138,'jpg','image','2021-01-16 04:10:52','2021-01-16 04:10:52',NULL),(1467,'EW7A4922','uploads/all/rTdQslwV29oRjWZroqczrFiyv5l1mUoDpKsHPaHR.jpg',9,882310,'jpg','image','2021-01-16 04:10:53','2021-01-16 04:10:53',NULL),(1468,'EW7A4918','uploads/all/KyVndtGotLDpDOXaJBjMQxx926CYJPRWsb6J4pNk.jpg',9,2242960,'jpg','image','2021-01-16 04:10:53','2021-01-16 04:10:53',NULL),(1469,'EW7A2996','uploads/all/iF76ESfJ4nNDUcyRhRe2gKkTiyxyTsb125Mnsb2F.jpg',9,743417,'jpg','image','2021-01-16 04:11:25','2021-01-16 04:11:25',NULL),(1470,'EW7A3094','uploads/all/vQQxyyrf75FZVLHqS6ZnMZdwEhzxEj7b4ziiEt3P.jpg',9,523111,'jpg','image','2021-01-16 04:11:25','2021-01-16 04:11:25',NULL),(1471,'EW7A3091','uploads/all/npUXatQgcxqT9SA0EyeZzEm5uGDG1HbTQZegTCDA.jpg',9,1911006,'jpg','image','2021-01-16 04:11:26','2021-01-16 04:11:26',NULL),(1472,'EW7A3096','uploads/all/lCPfIW7pfczcpVlmGu9oJVXYvYWtKctZDzppjl4S.jpg',9,939964,'jpg','image','2021-01-16 04:11:27','2021-01-16 04:11:27',NULL),(1473,'EW7A3069','uploads/all/vtmYD6E5JtvVA9kPfduUJGQxQeF5YBKv0cCBrMZM.jpg',9,661383,'jpg','image','2021-01-16 04:13:03','2021-01-16 04:13:03',NULL),(1474,'EW7A3009','uploads/all/vDGRBwp5eNia5uzDxKmJPR5PT736nQo3vg6tyZ32.jpg',9,1127199,'jpg','image','2021-01-16 04:13:03','2021-01-16 04:13:03',NULL),(1475,'EW7A3073','uploads/all/cYNcvOT5dlMCRNiY3ik3Yq6wo2dpSsiPdF4hx9db.jpg',9,1715987,'jpg','image','2021-01-16 04:13:13','2021-01-16 04:13:13',NULL),(1476,'EW7A3064','uploads/all/UUm8fywUZcgNsoTWFfgADLTm9Uai784uRQjRobRq.jpg',9,2741387,'jpg','image','2021-01-16 04:13:18','2021-01-16 04:13:18',NULL),(1477,'EW7A3015','uploads/all/dDZpxyEKuJCWkaWqH3kuLikLSJORhh4YRyPEJ6Dj.jpg',9,736342,'jpg','image','2021-01-16 04:13:29','2021-01-16 04:13:29',NULL),(1478,'EW7A3097','uploads/all/3ToiFKhHY6q8Smi9n0zBIzkBTzHij08N3LNMUMC7.jpg',9,1910496,'jpg','image','2021-01-16 04:13:31','2021-01-16 04:13:31',NULL),(1479,'EW7A3100','uploads/all/iOgCN5FfTqiST1e4w6wJiStfjjzvVJw4zEnFvq0I.jpg',9,563227,'jpg','image','2021-01-16 04:13:31','2021-01-16 04:13:31',NULL),(1480,'EW7A3101','uploads/all/7stPpldwsZhkcMc31k7am06G6DVqbL6ljSXw6auU.jpg',9,986143,'jpg','image','2021-01-16 04:13:31','2021-01-16 04:13:31',NULL),(1481,'EW7A4937','uploads/all/o9ovq7JoLMU3vCYLWG6xBslZMn44Qi1ZRa35ZpqC.jpg',9,633182,'jpg','image','2021-01-16 04:14:51','2021-01-16 04:14:51',NULL),(1482,'EW7A2991','uploads/all/mAytrBO4TCNRCmuqGcmimSeCt6kSWyUeyfieWBkb.jpg',9,1177609,'jpg','image','2021-01-16 04:14:51','2021-01-16 04:14:51',NULL),(1483,'EW7A4938','uploads/all/pTCrFPoZVBfewezaV8agYLnETX1feeSH9GmtO705.jpg',9,2064448,'jpg','image','2021-01-16 04:14:55','2021-01-16 04:14:55',NULL),(1484,'EW7A4936','uploads/all/38TTEVECkWw2EfIQ2CASVXnZGRf39ngIw1C9xeIz.jpg',9,3373362,'jpg','image','2021-01-16 04:14:59','2021-01-16 04:14:59',NULL),(1485,'EW7A4973','uploads/all/oRN0PQrxJcfIC9vmV849umIunqWb8nZW9PDxej8t.jpg',9,752359,'jpg','image','2021-01-16 04:15:05','2021-01-16 04:15:05',NULL),(1486,'EW7A4977','uploads/all/htJTwdhmUdi8SgKzWFhNmBs0LCfSfT9e8S6Yo2KI.jpg',9,1149488,'jpg','image','2021-01-16 04:15:05','2021-01-16 04:15:05',NULL),(1487,'EW7A4975','uploads/all/LGNrL62SzEAyLyXPj6QFczK6duA8icfrmdIKsTCY.jpg',9,1380188,'jpg','image','2021-01-16 04:15:06','2021-01-16 04:15:06',NULL),(1488,'EW7A4965','uploads/all/xEOHDVnbT4bB3uAy6czD01q66Ghh5uLlWOc0tfmu.jpg',9,2305530,'jpg','image','2021-01-16 04:15:08','2021-01-16 04:15:08',NULL),(1489,'EW7A3060','uploads/all/BI43rnDrKkjg0eW77X6RREtx057fttKiHfJIiKp7.jpg',9,1785398,'jpg','image','2021-01-16 04:16:29','2021-01-16 04:16:29',NULL),(1490,'EW7A6254','uploads/all/zmxMKCz2t4ks5rGtFlvFvWqopSBEPDfChlBduoTZ.jpg',9,4088157,'jpg','image','2021-01-16 04:16:32','2021-01-16 04:16:32',NULL),(1491,'EW7A2983','uploads/all/8upDjkojvGOcV6Mv2MKMrttQw4Z9Y6YNUqmvinq5.jpg',9,2152496,'jpg','image','2021-01-16 04:16:33','2021-01-16 04:16:33',NULL),(1492,'EW7A5454','uploads/all/dfA46ltQpOq0ZzvWjBdFoYX56dnoDiIvSkwvDPpX.jpg',9,1456804,'jpg','image','2021-01-16 04:16:33','2021-01-16 04:16:33',NULL),(1493,'EW7A3056','uploads/all/le0LhkCzCvZ9FRkN0gpbirbikXQA198rsD9iH9O5.jpg',9,3265638,'jpg','image','2021-01-16 04:16:33','2021-01-16 04:16:33',NULL),(1494,'EW7A6273','uploads/all/sjMgjCG7vncpy1BqlS8x0qLFLr5LLoZNdSVV6CJK.jpg',9,352417,'jpg','image','2021-01-16 04:16:34','2021-01-16 04:16:34',NULL),(1495,'EW7A6256','uploads/all/gaB0YGab4WGkW6IUZc5XKRBYGC8j73ertSqJzqip.jpg',9,1796864,'jpg','image','2021-01-16 04:16:35','2021-01-16 04:16:35',NULL),(1496,'EW7A6261','uploads/all/1m75YBnZxviQQjj5xc16jwaQ5wTqT7G2erXrhnmv.jpg',9,3753766,'jpg','image','2021-01-16 04:16:41','2021-01-16 04:16:41',NULL),(1497,'EW7A3061','uploads/all/Kfo3NxxzMepTfNLFdmzee2VSCU0MtPWQvjdDjshL.jpg',9,3506538,'jpg','image','2021-01-16 04:16:45','2021-01-16 04:16:45',NULL),(1498,'EW7A3020','uploads/all/UQuMzayHLOxuDqsYXoS5g8wlQ1gAhlRfh7Ky5Yij.jpg',9,1373298,'jpg','image','2021-01-16 04:19:48','2021-01-16 04:19:48',NULL),(1499,'EW7A4925','uploads/all/3mXlQIbQzeFp7HNr5uSjl1iq5jvck37U4NcD8WTE.jpg',9,3195122,'jpg','image','2021-01-16 04:19:49','2021-01-16 04:19:49',NULL),(1500,'EW7A4927','uploads/all/plluKEvGmrujgEfhBzicFrgtKBgWaasNDsQFxVz0.jpg',9,1281661,'jpg','image','2021-01-16 04:19:55','2021-01-16 04:19:55',NULL),(1501,'EW7A4931','uploads/all/7uNzoFpFoziVWeTZhcnpALEqtpXQb31YVHzBfd3u.jpg',9,2016220,'jpg','image','2021-01-16 04:20:01','2021-01-16 04:20:01',NULL),(1502,'EW7A5042','uploads/all/CdHqRiT7h007jpNjDUewRn1Z07FoK05kEO3Ne6Ww.jpg',9,947949,'jpg','image','2021-01-16 04:21:41','2021-01-16 04:21:41',NULL),(1503,'EW7A5043','uploads/all/6zBNUNR5DteM46InRoGfse6jLFA8vCetSWy5dwxO.jpg',9,1763536,'jpg','image','2021-01-16 04:21:41','2021-01-16 04:21:41',NULL),(1504,'EW7A5044','uploads/all/OcIPTi46w4S4NL3cHGyCl9XJpLRjc3rtTNIckbA2.jpg',9,1508521,'jpg','image','2021-01-16 04:21:41','2021-01-16 04:21:41',NULL),(1505,'EW7A5041','uploads/all/cItZL31T1WlqwYZlipbEzKNrpSOyOoHTlkcAIcTv.jpg',9,2325170,'jpg','image','2021-01-16 04:21:42','2021-01-16 04:21:42',NULL),(1506,'EW7A6277','uploads/all/UVAgDzqyNU6qFDFyUUOfXxNodtHpMEj55M31ZooI.jpg',9,548774,'jpg','image','2021-01-16 04:22:59','2021-01-16 04:22:59',NULL),(1507,'EW7A5669','uploads/all/TH2wScBqLufd3a58WlUb7VIRzFGJQXMqDiAJImaY.jpg',9,3197755,'jpg','image','2021-01-16 04:23:01','2021-01-16 04:23:01',NULL),(1508,'EW7A5464','uploads/all/jQaBbHu32y7mjYHvXxXEassigHbw58ghRNwOcy3V.jpg',9,1537943,'jpg','image','2021-01-16 04:23:02','2021-01-16 04:23:02',NULL),(1509,'EW7A5673','uploads/all/OAqr6fTEC0oJl3qvmAxlWXQmJ37N5qBkWJSeoKce.jpg',9,992725,'jpg','image','2021-01-16 04:23:02','2021-01-16 04:23:02',NULL),(1510,'EW7A5675','uploads/all/daWU7vkPmOkh8I5PJk0uPIuuOCEQncRpyHhGxrOL.jpg',9,2809931,'jpg','image','2021-01-16 04:23:03','2021-01-16 04:23:03',NULL),(1511,'EW7A3030','uploads/all/UIGjKXk7iQZaV33vFgyIqUd7MNNlptLsKhaxwMUT.jpg',9,694076,'jpg','image','2021-01-16 04:25:15','2021-01-16 04:25:15',NULL),(1512,'EW7A3027','uploads/all/cpdfa7dF507BxryXnV3cvcaTXYGMapsyB0Pulfix.jpg',9,1583119,'jpg','image','2021-01-16 04:25:17','2021-01-16 04:25:17',NULL),(1513,'EW7A3004','uploads/all/TWmElPiKtYy8GeTVB7qi3ByBkvVp0c06XsdkvwID.jpg',9,1453121,'jpg','image','2021-01-16 04:25:24','2021-01-16 04:25:24',NULL),(1514,'EW7A3023','uploads/all/5D0B3cpalgIIaTVYCuz5xKtv7gOopSzNmptxnTx8.jpg',9,2827418,'jpg','image','2021-01-16 04:25:44','2021-01-16 04:25:44',NULL),(1515,'EW7A5022','uploads/all/uzY3E6nJlZTvPvPMCck1u6g2vzRMivnpSIykrpfd.jpg',9,814310,'jpg','image','2021-01-16 04:27:13','2021-01-16 04:27:13',NULL),(1516,'EW7A5024','uploads/all/IdmxuYl8Ro2Ax2FgbZVvCUUqWMyWixB8rilEI26J.jpg',9,1181787,'jpg','image','2021-01-16 04:27:15','2021-01-16 04:27:15',NULL),(1517,'EW7A5023','uploads/all/Yc3y0G4aNyLrWN9KyRCn86SBlgexLOzYP0fhge0G.jpg',9,1605723,'jpg','image','2021-01-16 04:27:15','2021-01-16 04:27:15',NULL),(1518,'EW7A5021','uploads/all/cECBDQOlHe5BYBhXmIm8ct6MgH9IPp9xJtKt8EXn.jpg',9,1645207,'jpg','image','2021-01-16 04:27:15','2021-01-16 04:27:15',NULL),(1519,'EW7A5074','uploads/all/VTbmb0U0khCfR0JlzwkyWZdANhOfp1xKikZVa9qb.jpg',9,593689,'jpg','image','2021-01-16 04:29:08','2021-01-16 04:29:08',NULL),(1520,'EW7A5071','uploads/all/4UMkYDGlVFHoXmTDgG5wH75Z6MzIEnH7ndesWtfY.jpg',9,1266730,'jpg','image','2021-01-16 04:29:08','2021-01-16 04:29:08',NULL),(1521,'EW7A5073','uploads/all/VHZzt5nfc4KpXdUebvM4JSIVDzHcw368cUawW0kd.jpg',9,915129,'jpg','image','2021-01-16 04:29:08','2021-01-16 04:29:08',NULL),(1522,'EW7A5072','uploads/all/uBKkVtYOkOElR8C8IoXCHEl7MfFkmVu4A7TLa3f1.jpg',9,459006,'jpg','image','2021-01-16 04:29:09','2021-01-16 04:29:09',NULL),(1523,'EW7A6274','uploads/all/6OnPEn4R7pMtK97jq8N9opv3ZDzUjCqUMUGNtJLy.jpg',9,432907,'jpg','image','2021-01-16 04:30:37','2021-01-16 04:30:37',NULL),(1524,'EW7A5652','uploads/all/pzPeISu8hk1vTW4eO0e671AcsKEWZ0OWLDE3Xf2p.jpg',9,1355001,'jpg','image','2021-01-16 04:30:38','2021-01-16 04:30:38',NULL),(1525,'EW7A5648','uploads/all/oDbXtVh4Kr0zmXAUhXo93iZEitlQg5e4apVKmaQf.jpg',9,550722,'jpg','image','2021-01-16 04:30:38','2021-01-16 04:30:38',NULL),(1526,'EW7A5450','uploads/all/DbMBstBPm2nJ9fxACUJszuazSVSU4wTelKHck5J0.jpg',9,1260104,'jpg','image','2021-01-16 04:30:40','2021-01-16 04:30:40',NULL),(1527,'EW7A5646','uploads/all/3vEsb9Lcjn8QO5T1qCO2YCXEdKGQJ9ARPHrhM6MI.jpg',9,2663478,'jpg','image','2021-01-16 04:30:40','2021-01-16 04:30:40',NULL),(1528,'EW7A4973','uploads/all/2EtbMwpPzXQAzK4JVXTUkRVNg6jvDDEoRkAl4ea5.jpg',9,752359,'jpg','image','2021-01-16 04:33:10','2021-01-16 04:33:10',NULL),(1529,'EW7A4975','uploads/all/he8FQ6nK9KtKMiReWjnjSxrmAzWByk2JFzbQAwoV.jpg',9,1380188,'jpg','image','2021-01-16 04:33:15','2021-01-16 04:33:15',NULL),(1530,'EW7A4977','uploads/all/lEtIOBEKvntDZrgukif9PzcLfTLvLbWNcFSZCq9V.jpg',9,1149488,'jpg','image','2021-01-16 04:33:15','2021-01-16 04:33:15',NULL),(1531,'EW7A4965','uploads/all/JmDgMNWgOSQmvNxgCEhmMXlElfyVcCD5GvkXbMfM.jpg',9,2305530,'jpg','image','2021-01-16 04:33:16','2021-01-16 04:33:16',NULL),(1532,'EW7A5032','uploads/all/JflMEVEfNKKQxgqCduoibzopq5hjJfHNVXeC4COk.jpg',9,850244,'jpg','image','2021-01-16 04:34:49','2021-01-16 04:34:49',NULL),(1533,'EW7A5030','uploads/all/gfo9DAQGlXFjIczs2deRUK0pM2OnvBhUQW4M3D0a.jpg',9,3600528,'jpg','image','2021-01-16 04:34:50','2021-01-16 04:34:50',NULL),(1534,'EW7A5038','uploads/all/gQzbkGmTVgNfg5AJDvItCpKrylUHPjuRERjD87Ch.jpg',9,1314576,'jpg','image','2021-01-16 04:34:51','2021-01-16 04:34:51',NULL),(1535,'EW7A5037','uploads/all/eCwKcetg6BRZ0PfaPilicXxvnb2Ds750FjBzp0aR.jpg',9,1499516,'jpg','image','2021-01-16 04:34:53','2021-01-16 04:34:53',NULL),(1536,'EW7A3015','uploads/all/o2I2xvCKPBdceRg8sPLEUgbqjW1oJelf4SNjCgH2.jpg',9,736342,'jpg','image','2021-01-16 04:36:18','2021-01-16 04:36:18',NULL),(1537,'EW7A4914','uploads/all/CIwGpcc7ddLtwqmZGccNOXJ0RJN8r0je58Ws11rG.jpg',9,525954,'jpg','image','2021-01-16 04:36:18','2021-01-16 04:36:18',NULL),(1538,'EW7A4916','uploads/all/6AxIRYe6dHsibExC9H5MXmj3uWsOwE6sB8g72BNF.jpg',9,1000704,'jpg','image','2021-01-16 04:36:18','2021-01-16 04:36:18',NULL),(1539,'EW7A4913','uploads/all/wgxDfF7WBKzR8EWIBSusoWNWg2ONaU9IsvDCAdM3.jpg',9,2165632,'jpg','image','2021-01-16 04:36:19','2021-01-16 04:36:19',NULL),(1540,'EW7A5101','uploads/all/Tf4VAk7SAMla95OAneVdGaF3uDq2g42BGvlBHB3p.jpg',9,434241,'jpg','image','2021-01-16 04:37:38','2021-01-16 04:37:38',NULL),(1541,'EW7A5099','uploads/all/G61evqsPbfxEhFsL4L0jvoGBTc9ViYH7jmxbBNWY.jpg',9,1628540,'jpg','image','2021-01-16 04:37:38','2021-01-16 04:37:38',NULL),(1542,'EW7A6273','uploads/all/X7eh71g3mOqwKLg3yC84QVSSYWdnCX8tqZlocHGr.jpg',9,352417,'jpg','image','2021-01-16 04:37:38','2021-01-16 04:37:38',NULL),(1543,'EW7A5103','uploads/all/V3N6iE1budAKVw6GBpk71DMkpT75pLadG3cP7tnC.jpg',9,1425756,'jpg','image','2021-01-16 04:37:39','2021-01-16 04:37:39',NULL),(1544,'EW7A5447','uploads/all/4dtydYTgc1FoXwR4oNKYRjw2nu0MwwncehoLoTGe.jpg',9,942189,'jpg','image','2021-01-16 04:37:40','2021-01-16 04:37:40',NULL),(1545,'EW7A3041','uploads/all/CXsJZ1SQGjyJV6odM8QTvJxH2PlBHbVEIJfqfkKU.jpg',9,510922,'jpg','image','2021-01-16 04:39:36','2021-01-16 04:39:36',NULL),(1546,'EW7A2987','uploads/all/9QadqfS9rhmeweq88C6xjxnkbUzgZ1XEbAOZTov9.jpg',9,1218066,'jpg','image','2021-01-16 04:39:36','2021-01-16 04:39:36',NULL),(1547,'EW7A3045','uploads/all/RcLwZ3tjXFfsWfZ2Ul1YpP2HPozTYZl2NUNhaGBv.jpg',9,1710706,'jpg','image','2021-01-16 04:39:38','2021-01-16 04:39:38',NULL),(1548,'EW7A3040','uploads/all/nLYIoKvD67e1MBw3E6ua5C20WP5RDNsWUl0dbcUP.jpg',9,2531486,'jpg','image','2021-01-16 04:39:41','2021-01-16 04:39:41',NULL),(1549,'EW7A5030','uploads/all/ZKFn5FxCOyXt3cmQ4DKpgeKOYRIkqGEf4xgQoGsd.jpg',9,737244,'jpg','image','2021-01-16 04:40:49','2021-01-16 04:40:49',NULL),(1550,'EW7A5032','uploads/all/FLvvNWLcsmbzMr1WTElXo7jcZU5XDD0UiuKC0AR5.jpg',9,1298528,'jpg','image','2021-01-16 04:40:50','2021-01-16 04:40:50',NULL),(1551,'EW7A5029','uploads/all/Lv4MABGzVq4DklyEjHgitxYYVXKSa79svk8hCEdB.jpg',9,2852635,'jpg','image','2021-01-16 04:40:50','2021-01-16 04:40:50',NULL),(1552,'EW7A5031','uploads/all/EcvFlXHP0c4cii4YcpNNxMZIqu78GRaZDQeXHuaG.jpg',9,1442119,'jpg','image','2021-01-16 04:40:50','2021-01-16 04:40:50',NULL),(1553,'EW7A5132','uploads/all/GGjoeSpkA7EPuwZWuJgmFOciAt8mb1fozMwNLidD.jpg',9,503444,'jpg','image','2021-01-16 04:42:30','2021-01-16 04:42:30',NULL),(1554,'EW7A5435','uploads/all/F3KvPR9oIkC5btlrkdbhI4ymAIKehA6rNPzPsKrd.jpg',9,867397,'jpg','image','2021-01-16 04:42:30','2021-01-16 04:42:30',NULL),(1555,'EW7A6273','uploads/all/TWtAWGbQ0glMz8CPQ0Ku6fv05JumNtzJ8uZuEnTe.jpg',9,352417,'jpg','image','2021-01-16 04:42:30','2021-01-16 04:42:30',NULL),(1556,'EW7A5137','uploads/all/avInHNnHM9S2OGAG2ZWg69VGjAjNfhr2aDLFgK3n.jpg',9,2262183,'jpg','image','2021-01-16 04:42:31','2021-01-16 04:42:31',NULL),(1557,'EW7A5127','uploads/all/gLhblKhBMjTfTbeccUiKwR5g4zsoFkJ5AGCNJjch.jpg',9,2737689,'jpg','image','2021-01-16 04:42:33','2021-01-16 04:42:33',NULL),(1558,'EW7A4986','uploads/all/gSxYksYaLn7jahsTwc6DV5kVF1PKvyGbhA7pioyO.jpg',9,922271,'jpg','image','2021-01-16 04:44:50','2021-01-16 04:44:50',NULL),(1559,'EW7A4987','uploads/all/xp8HIXz7kD6gn5qFYy88rCs1kJiDvadXbaLORpPx.jpg',9,1479649,'jpg','image','2021-01-16 04:44:51','2021-01-16 04:44:51',NULL),(1560,'EW7A4989','uploads/all/w0Iiyju0mwnzKQz48Q3Ec4nfwtVLJCpRsa9eOCPp.jpg',9,1608458,'jpg','image','2021-01-16 04:44:51','2021-01-16 04:44:51',NULL),(1561,'EW7A4985','uploads/all/gOJS3tAN5Ng6z9u1MM840VT4fEjOBjVCzwfOOI2y.jpg',9,3064189,'jpg','image','2021-01-16 04:44:51','2021-01-16 04:44:51',NULL),(1562,'EW7A5030','uploads/all/qhIVbVdWRVF8A2juq4lae3asKHNMZVwUR4SVBNne.jpg',9,3600528,'jpg','image','2021-01-16 04:46:05','2021-01-16 04:46:05',NULL),(1563,'EW7A5037','uploads/all/jPydmBWb5LFvigxJnDQ9dSRObnOM36E0gHP8TXeK.jpg',9,1499516,'jpg','image','2021-01-16 04:46:06','2021-01-16 04:46:06',NULL),(1564,'EW7A5032','uploads/all/stpsdr9wym5iGSSAJI21vleURQK2ZisFPwRqOsCK.jpg',9,850244,'jpg','image','2021-01-16 04:46:07','2021-01-16 04:46:07',NULL),(1565,'EW7A5038','uploads/all/2Y6taKRVUHKcMangm2KxwjQOhKYl9oQoGMD5zmTY.jpg',9,1314576,'jpg','image','2021-01-16 04:46:08','2021-01-16 04:46:08',NULL),(1566,'EW7A5440','uploads/all/IMB9Tn1Zp1ICFcs2tp1vvqY1h7B8VEExPtPxIziJ.jpg',9,645207,'jpg','image','2021-01-16 04:47:24','2021-01-16 04:47:24',NULL),(1567,'EW7A6250','uploads/all/ifl8YndpiyfTceRs00hOlxBrtSpwUW4H3PPvGV2i.jpg',9,393559,'jpg','image','2021-01-16 04:47:24','2021-01-16 04:47:24',NULL),(1568,'EW7A6273','uploads/all/Prm6gd2Q72rOVAhFZwyEHJPtRzV4NX17cXMaYfv9.jpg',9,352417,'jpg','image','2021-01-16 04:47:25','2021-01-16 04:47:25',NULL),(1569,'EW7A6249','uploads/all/vAsMxN3XOiijitjDbSMntgbHdb82mMhvGl4IMZEh.jpg',9,1705580,'jpg','image','2021-01-16 04:47:26','2021-01-16 04:47:26',NULL),(1570,'EW7A6251','uploads/all/Y0e05aYE7Q0YLJsuTk1x7xDL8k7WuhTv055AgICC.jpg',9,1320036,'jpg','image','2021-01-16 04:47:26','2021-01-16 04:47:26',NULL),(1571,'EW7A6332','uploads/all/toRD72WRlgnmBH7mrpH5vmZR30ZYXhVq2kCI09rP.jpg',9,1885300,'jpg','image','2021-01-16 06:09:36','2021-01-16 06:09:36',NULL),(1572,'EW7A6376','uploads/all/iGJGv7BKrSJdTgcplFTb0rQhhrm3QUlxVmyO4OoE.jpg',9,717176,'jpg','image','2021-01-16 06:09:37','2021-01-16 06:09:37',NULL),(1573,'EW7A6333','uploads/all/XI0d9f5k4u3oAVZ9rX1OYCtIoEgrhCKEUgHacStr.jpg',9,3117121,'jpg','image','2021-01-16 06:09:37','2021-01-16 06:09:37',NULL),(1574,'EW7A6416','uploads/all/5HtoaiQJZ2CPO2s1LTeVTfR2r2yKyYKmquiKikf0.jpg',9,1878465,'jpg','image','2021-01-16 06:09:40','2021-01-16 06:09:40',NULL),(1575,'EW7A6373','uploads/all/o7m8QWI070zHwx2mTqnwwvjHXZpWRMK3LRgPXDUR.jpg',9,2364235,'jpg','image','2021-01-16 06:09:40','2021-01-16 06:09:40',NULL),(1576,'EW7A6377','uploads/all/yYXypG99KKlETXTgkn5AG9bQMObtTctIKILrEVLX.jpg',9,1677872,'jpg','image','2021-01-16 06:09:40','2021-01-16 06:09:40',NULL),(1577,'EW7A6335','uploads/all/7VNCFYLK1e3uQnGBCa8Rd8ZPeSexf7JhsxJItKbj.jpg',9,3404262,'jpg','image','2021-01-16 06:09:40','2021-01-16 06:09:40',NULL),(1578,'EW7A6325','uploads/all/DnnyDaqdoSjtWYBeiKEglsSevpkYmEHux21A320b.jpg',9,483495,'jpg','image','2021-01-16 06:12:54','2021-01-16 06:12:54',NULL),(1579,'EW7A6326','uploads/all/tjAVvOJUvuYxxPgxYlea4F0r7WJOz6PsG1eHAmya.jpg',9,2289588,'jpg','image','2021-01-16 06:12:57','2021-01-16 06:12:57',NULL),(1580,'EW7A6423','uploads/all/2ZxvNFD0VyhVADvFgH2x9puK5DXvCixQcIQdatTm.jpg',9,1353998,'jpg','image','2021-01-16 06:12:57','2021-01-16 06:12:57',NULL),(1581,'EW7A6322','uploads/all/X1xhEGM2HcKnpbFRy36AVo3YXcAiKgmPmSplhC6Z.jpg',9,2042002,'jpg','image','2021-01-16 06:13:19','2021-01-16 06:13:19',NULL),(1582,'EW7A6361','uploads/all/sXJRuLmk45hQp6mhhPVUd0DiujeFduLcZrppHO9l.jpg',9,311750,'jpg','image','2021-01-16 06:15:36','2021-01-16 06:15:36',NULL),(1583,'EW7A6298','uploads/all/V0kdMkaDUWtdUJY7CZAjVC9DqJtodzgPjFfvcIYj.jpg',9,1796236,'jpg','image','2021-01-16 06:15:37','2021-01-16 06:15:37',NULL),(1584,'EW7A6430','uploads/all/QiOQvRS0ByPMC94WWYA4rwzeJUt01QpfzfB1EvuT.jpg',9,1573706,'jpg','image','2021-01-16 06:15:37','2021-01-16 06:15:37',NULL),(1585,'EW7A6300','uploads/all/1SddWcAISwTtD3dbh0J8FVcBZGyr3pfU56q9dSfg.jpg',9,3269696,'jpg','image','2021-01-16 06:15:38','2021-01-16 06:15:38',NULL),(1586,'EW7A6301','uploads/all/TtJbNdqoJH2AeaUW5psvqavDIyv22exs5fWVluZC.jpg',9,3172873,'jpg','image','2021-01-16 06:15:39','2021-01-16 06:15:39',NULL),(1587,'EW7A6359','uploads/all/mRhTgLDse4kCF8b6A3uCLnf9hO46AB5iymndncvG.jpg',9,437362,'jpg','image','2021-01-16 06:18:35','2021-01-16 06:18:35',NULL),(1588,'EW7A6360','uploads/all/mvM4NtPItBRMa4WO6N1KSvuPSOtE45eQ0pSrNT8V.jpg',9,1571528,'jpg','image','2021-01-16 06:18:44','2021-01-16 06:18:44',NULL),(1589,'EW7A6415','uploads/all/5t62cVVMczXlLOzTnCgAwRAKgReVbbJlSqGgXTGx.jpg',9,821450,'jpg','image','2021-01-16 06:18:46','2021-01-16 06:18:46',NULL),(1590,'EW7A6403','uploads/all/7jX9NHsWsLQaUurgY1xcmmxQ2uNZOMPx5QYz0Q2Y.jpg',9,767825,'jpg','image','2021-01-16 06:18:57','2021-01-16 06:18:57',NULL),(1591,'EW7A6404','uploads/all/Tb6XXZxW9vAtdFqtyHU5cEgHnsHRDPg3tN0hlf5y.jpg',9,1416497,'jpg','image','2021-01-16 06:18:59','2021-01-16 06:18:59',NULL),(1592,'EW7A6356','uploads/all/0ILB56L4noh2kfE6w0ApPwtd4fcj7tdph3qyqNpR.jpg',9,1538994,'jpg','image','2021-01-16 06:19:01','2021-01-16 06:19:01',NULL),(1593,'EW7A6400','uploads/all/gUg9JB3W3o7rT6XuVSOINDS2ki6p76KG7STPvk7j.jpg',9,2548529,'jpg','image','2021-01-16 06:20:25','2021-01-16 06:20:25',NULL),(1594,'EW7A6303','uploads/all/JFalJH5qTyQLqnmRp2eLh9L6HG90aOqSu3Q6dNsO.jpg',9,1413708,'jpg','image','2021-01-16 06:28:14','2021-01-16 06:28:14',NULL),(1595,'EW7A6408','uploads/all/Xppdyeh2SkyeTyFJX7voGkUNHSGnCyCR8PUXmeky.jpg',9,1669012,'jpg','image','2021-01-16 06:28:15','2021-01-16 06:28:15',NULL),(1596,'EW7A6304','uploads/all/3oGs5ZMRYBf9fQkncHVNLIMP5vKUvXxhkYDWBvl9.jpg',9,3201566,'jpg','image','2021-01-16 06:28:18','2021-01-16 06:28:18',NULL),(1597,'EW7A6305','uploads/all/sMFz59SyuRTf2Nf647wSwHLjeilgkrqQ9r9by8KY.jpg',9,2905757,'jpg','image','2021-01-16 06:28:19','2021-01-16 06:28:19',NULL),(1598,'EW7A6328','uploads/all/JuBldMymV0RxJjBF1so0WeXBCTMtE88pc8mD56hv.jpg',9,438475,'jpg','image','2021-01-16 06:30:32','2021-01-16 06:30:32',NULL),(1599,'EW7A6422','uploads/all/MJgi3MNkPHqG5ayKYpI2yPH9XZUqGhXcxklY7jNR.jpg',9,924268,'jpg','image','2021-01-16 06:30:32','2021-01-16 06:30:32',NULL),(1600,'EW7A6327','uploads/all/6sFFwmWIDX8eHYHeK8lE9LQM2qGdMbh5ddzTc5eT.jpg',9,1699478,'jpg','image','2021-01-16 06:30:33','2021-01-16 06:30:33',NULL),(1601,'EW7A6329','uploads/all/zehB2ss3vrdZdlMER3PN3lYUoYwmMOnr6dn1fVGx.jpg',9,1863607,'jpg','image','2021-01-16 06:30:33','2021-01-16 06:30:33',NULL),(1602,'EW7A6363','uploads/all/hjwUM2Jupdh8GCVqv8P0syQw5fkIkZq0S78z7xkb.jpg',9,290478,'jpg','image','2021-01-16 06:37:33','2021-01-16 06:37:33',NULL),(1603,'EW7A6390','uploads/all/eAftZsnZLEKj1h6kUUy1ARVaJov52KZ2VX5XT8CU.jpg',9,444314,'jpg','image','2021-01-16 06:37:33','2021-01-16 06:37:33',NULL),(1604,'EW7A6387','uploads/all/m7wTXJfNGD1w63T5plP8nTi9b6u7uDkVMvdzZ7q1.jpg',9,1863677,'jpg','image','2021-01-16 06:37:34','2021-01-16 06:37:34',NULL),(1605,'EW7A6426','uploads/all/IKIlfDW9bLnMdmr8YL1RvkiVk0FmYWYprJW2x7SN.jpg',9,828590,'jpg','image','2021-01-16 06:37:34','2021-01-16 06:37:34',NULL),(1606,'EW7A6392','uploads/all/tO0sMuYiQ66QuzTAzOZJSXzLlPpIKeAmTqBzSjA1.jpg',9,1730160,'jpg','image','2021-01-16 06:37:34','2021-01-16 06:37:34',NULL),(1607,'EW7A6391','uploads/all/8fRpQkpnPGL83J913eajt49dcOIS7QSzkM5S8SCb.jpg',9,2022168,'jpg','image','2021-01-16 06:37:35','2021-01-16 06:37:35',NULL),(1608,'EW7A6366','uploads/all/9ibaWHaQHc8FaKs7RaAN5f0x87pIwdxHlE7Y3IP6.jpg',9,512166,'jpg','image','2021-01-16 06:39:39','2021-01-16 06:39:39',NULL),(1609,'EW7A6369','uploads/all/7Oa9qHt2mw4vXbCYXKVAna2XWzdItQkXfhELtpuY.jpg',9,1915713,'jpg','image','2021-01-16 06:39:40','2021-01-16 06:39:40',NULL),(1610,'EW7A6370','uploads/all/JB0ZUQfVkSkzSyUFU1zrKFAMZeH0bbiqHAH9TQtH.jpg',9,2240074,'jpg','image','2021-01-16 06:39:40','2021-01-16 06:39:40',NULL),(1611,'EW7A6368','uploads/all/Bkw7fJn6GQ3QNChqyQjpCN3GaJoThcPOT1eLKaHm.jpg',9,2057982,'jpg','image','2021-01-16 06:39:41','2021-01-16 06:39:41',NULL),(1612,'EW7A6393','uploads/all/hYCiBUvnUVqEPSmaCQRNsxSL9KduTtbp6D8Dg0lI.jpg',9,659958,'jpg','image','2021-01-16 06:42:08','2021-01-16 06:42:08',NULL),(1613,'EW7A6345','uploads/all/sRN8eMsAqGA2j619VvUxZS8wb5TBtWrdhjwL95yv.jpg',9,2001875,'jpg','image','2021-01-16 06:42:09','2021-01-16 06:42:09',NULL),(1614,'EW7A6396','uploads/all/mH8VSzuxM4wbqbGb1Xx8iVt23JyOPDyKj8zx4WQc.jpg',9,1557046,'jpg','image','2021-01-16 06:42:10','2021-01-16 06:42:10',NULL),(1615,'EW7A6397','uploads/all/OFoPIVw7fW9cPCk4MrtkCPVFetIgxVUGWqePeO9c.jpg',9,972058,'jpg','image','2021-01-16 06:42:10','2021-01-16 06:42:10',NULL),(1616,'EW7A6346','uploads/all/vuJW00CvcaYOqeJtpUlwI8ZNUVhyWMsMXxpw4BBA.jpg',9,3779487,'jpg','image','2021-01-16 06:42:11','2021-01-16 06:42:11',NULL),(1617,'EW7A6399','uploads/all/t3g0YcRlbGXMCJCtuJ7TeA2UYXoai3AOiAIOpI58.jpg',9,2242829,'jpg','image','2021-01-16 06:42:12','2021-01-16 06:42:12',NULL),(1618,'EW7A6343','uploads/all/vYB9WiqI4xQIUtVU4hHtBg3eon1E9QY1Y9KiaHoq.jpg',9,3754024,'jpg','image','2021-01-16 06:42:17','2021-01-16 06:42:17',NULL),(1619,'EW7A6318','uploads/all/AkbqqwVWDWWX6Iy25Sph7Zt9bSYiwMVQyB81C2qO.jpg',9,695907,'jpg','image','2021-01-16 06:45:06','2021-01-16 06:45:06',NULL),(1620,'EW7A6424','uploads/all/FNlAbo6aZ1UzoV3tNVoPqqvT026UbIFYsOYJ6RPS.jpg',9,1865882,'jpg','image','2021-01-16 06:45:08','2021-01-16 06:45:08',NULL),(1621,'EW7A6319','uploads/all/Tcq6eXLWTCdFRPt56H8DgWkrYyx9Kf2H53IC0SyI.jpg',9,2696119,'jpg','image','2021-01-16 06:45:09','2021-01-16 06:45:09',NULL),(1622,'EW7A6320','uploads/all/6Jr9CpddM6ib4xi3EiUe9xmtTILO8cApUbPQHdmw.jpg',9,3007843,'jpg','image','2021-01-16 06:45:09','2021-01-16 06:45:09',NULL),(1623,'EW7A6339','uploads/all/GQy4y9yKY2md6Ray1CTJgYOpaj74kkcMrkh12VzW.jpg',9,551440,'jpg','image','2021-01-16 07:05:03','2021-01-16 07:05:03',NULL),(1624,'EW7A6340','uploads/all/HKRcmE5R4O5Op8CrRubqTKOQc7aYgaS01JYCaXEx.jpg',9,1534954,'jpg','image','2021-01-16 07:05:04','2021-01-16 07:05:04',NULL),(1625,'EW7A6363','uploads/all/3EAaEc3MKVmZepP6sWmK0BASB03nGzY48qw3TLae.jpg',9,290478,'jpg','image','2021-01-16 07:05:04','2021-01-16 07:05:04',NULL),(1626,'EW7A6338','uploads/all/cegdghCFgdKI6RZp3SOX91WfO5aHEldegVEbUfaZ.jpg',9,2181178,'jpg','image','2021-01-16 07:05:05','2021-01-16 07:05:05',NULL),(1627,'EW7A6427','uploads/all/ecKh4TofymDAoHPUuM7qR9hgPqEzMvJRLeTIyFkb.jpg',9,1043199,'jpg','image','2021-01-16 07:05:05','2021-01-16 07:05:05',NULL),(1628,'EW7A6341','uploads/all/g7r3c7PIZ4YYZhzr8h2MF2FIH9GrjvthTeT56i77.jpg',9,2038909,'jpg','image','2021-01-16 07:05:08','2021-01-16 07:05:08',NULL),(1629,'EW7A6428','uploads/all/2cBftB7VqtUuhtBVlppeHO9Cvyqb3MFltk8dRVjf.jpg',9,1361675,'jpg','image','2021-01-16 07:07:12','2021-01-16 07:07:12',NULL),(1630,'EW7A6313','uploads/all/6YppCC6iZx09Jk0feMd8YbttRvxzuYLwzIeRFdpT.jpg',9,584262,'jpg','image','2021-01-16 07:07:13','2021-01-16 07:07:13',NULL),(1631,'EW7A6315','uploads/all/3FeSXZNiGkfKm9J39cep9Yu8NHXnkbsYAHhBqf1i.jpg',9,2257801,'jpg','image','2021-01-16 07:07:13','2021-01-16 07:07:13',NULL),(1632,'EW7A6309','uploads/all/smZrkTMOuXf43a1I8cRKqALV9hjb0cQXa9rZc8Mj.jpg',9,2746321,'jpg','image','2021-01-16 07:07:15','2021-01-16 07:07:15',NULL),(1633,'EW7A6351','uploads/all/DZg5KVLvTuaH6meYO4cj7CGPkSPC73TC6CTiKeyX.jpg',9,533155,'jpg','image','2021-01-16 07:09:21','2021-01-16 07:09:21',NULL),(1634,'EW7A6382','uploads/all/s4XrGcsROSz9KBk3GN29Eag2rT9gK3l1kLAtHlec.jpg',9,1167332,'jpg','image','2021-01-16 07:09:22','2021-01-16 07:09:22',NULL),(1635,'EW7A6421','uploads/all/uLQszNtiaRIOH3Wii391LHujblh2zxdux804lmQh.jpg',9,953155,'jpg','image','2021-01-16 07:09:22','2021-01-16 07:09:22',NULL),(1636,'EW7A6380','uploads/all/VRjvr4TOXX1JH8L7P2CnLvRnV8TW59IV7jNGSqw2.jpg',9,850117,'jpg','image','2021-01-16 07:09:23','2021-01-16 07:09:23',NULL),(1637,'EW7A6349','uploads/all/oI5vq0N3B1npeutBjMOYvwcwCSm3zzFZymWz0u6X.jpg',9,1817034,'jpg','image','2021-01-16 07:09:24','2021-01-16 07:09:24',NULL),(1638,'EW7A6378','uploads/all/noQMC5PF3vUhfovQo94sDxlf5iz1t9AE4zekPNzN.jpg',9,2226185,'jpg','image','2021-01-16 07:09:30','2021-01-16 07:09:30',NULL),(1639,'EW7A6353','uploads/all/NbGPVaO4sM6AclyEb8Le6U8M7H9hwAQvCMMZABlT.jpg',9,2202181,'jpg','image','2021-01-16 07:09:30','2021-01-16 07:09:30',NULL),(1640,'EW7A6361','uploads/all/gHBSsvSJ21DOkSvd0n83bYnMBEC3Basl5oUQYoxO.jpg',9,311750,'jpg','image','2021-01-16 07:15:50','2021-01-16 07:15:50',NULL),(1641,'EW7A6292','uploads/all/XCYUB4LseBTMz4osks50ytJp96ICX9p8kY1hspQu.jpg',9,437139,'jpg','image','2021-01-16 07:15:50','2021-01-16 07:15:50',NULL),(1642,'EW7A6429','uploads/all/TdqS7CfaWQSKlDBUZTk9FqNyEiHtstlxoP1eDioZ.jpg',9,880987,'jpg','image','2021-01-16 07:15:50','2021-01-16 07:15:50',NULL),(1643,'EW7A6288','uploads/all/yBGIXw27dBcwVlFMPBFH6uHMpCTNIlbMDKGJpChX.jpg',9,1611325,'jpg','image','2021-01-16 07:15:51','2021-01-16 07:15:51',NULL),(1644,'EW7A6291','uploads/all/IPISkGIMgpZoQzpmhEaGnjpGbsUzaRItgE0AmXSk.jpg',9,2170476,'jpg','image','2021-01-16 07:15:54','2021-01-16 07:15:54',NULL),(1645,'EW7A3021','uploads/all/ncorBQKKNDqlnEhyRsZwodsT9D6EqKMZzY6aHejE.jpg',9,728096,'jpg','image','2021-01-16 07:43:08','2021-01-16 07:43:08',NULL),(1646,'EW7A3015','uploads/all/m5N5A0wi2r0xXL6W4VAfz7HqCeO8ufwN9kw4Rlij.jpg',9,726654,'jpg','image','2021-01-16 07:43:08','2021-01-16 07:43:08',NULL),(1647,'EW7A2996','uploads/all/hg7rImUZcFHG1ZS8uBqCuynV5Yz4yS5yckcCu1DX.jpg',9,733787,'jpg','image','2021-01-16 07:43:08','2021-01-16 07:43:08',NULL),(1648,'white without button','uploads/all/MLWKwfh3ktaAMBc5o7UjDHcv6BR3p6ZYW0isjA3T.jpg',9,726654,'jpg','image','2021-01-16 07:46:52','2021-01-16 07:46:52',NULL),(1649,'off white','uploads/all/JEPdnGh482os6SjFpDsRhMRSAosVTlmofTjeQ97p.jpg',9,728096,'jpg','image','2021-01-16 07:46:52','2021-01-16 07:46:52',NULL),(1650,'white with button','uploads/all/Z8XDFbiUjQ0IQm0mInkzNFmMKQ3cUWI3d79kGW5s.jpg',9,733787,'jpg','image','2021-01-16 07:46:53','2021-01-16 07:46:53',NULL),(1651,'WhatsApp Image 2021-01-16 at 2.12.16 PM (1)','uploads/all/Qf1sQIrE1pGHKHZtlCqjZ2p6ic8EOv5iTEmegq79.jpg',9,278548,'jpeg','image','2021-01-16 08:06:37','2021-01-16 08:06:37',NULL),(1652,'siz chats-03','uploads/all/hRjTQkYDERqIfx0nifpVaRFSTm9NNO2BzbBjTOFW.jpg',9,597586,'jpg','image','2021-01-16 08:17:59','2021-01-16 08:17:59',NULL),(1653,'logo icons-20','uploads/all/NrqflwBHB05xQIDQReCRcPSjYTC1f9Ij5SrZQJXu.jpg',9,336039,'jpg','image','2021-01-18 07:19:58','2021-01-18 07:19:58',NULL),(1654,'logo icons-18','uploads/all/bb9f3qi8ioFQUsh3NIJxyQx7HpfAUIdWaUa8U14t.jpg',9,318479,'jpg','image','2021-01-18 07:20:00','2021-01-18 07:20:00',NULL),(1655,'logo icons-17','uploads/all/UnigVt4gT3SAFKFmAkPZC8tqfOkILfJhC4OWvzMA.jpg',9,313795,'jpg','image','2021-01-18 07:20:01','2021-01-18 07:20:01',NULL),(1656,'logo icons-19','uploads/all/1ejbSEqXvs2wwPfsunzVMgzhPVNwdyhrDwCP7xrf.jpg',9,196445,'jpg','image','2021-01-18 07:20:03','2021-01-18 07:20:03',NULL),(1657,'logo icons-10','uploads/all/GDQVOiCjsigwofZDFGRAuuvNEh96Had5Y6ArZJTr.jpg',9,354388,'jpg','image','2021-01-18 07:20:05','2021-01-18 07:20:05',NULL),(1658,'logo icons-12','uploads/all/BJz4klXcqTpnwy4wfjU5W8SUz0ITENIlseGM3CWm.jpg',9,233087,'jpg','image','2021-01-18 07:20:09','2021-01-18 07:20:09',NULL),(1659,'logo icons-08','uploads/all/OB82L0epzmIVyQdDHDhwAtLEmyKWtHOyqGIwNx9J.jpg',9,420947,'jpg','image','2021-01-18 07:20:09','2021-01-18 07:20:09',NULL),(1660,'logo icons-06','uploads/all/neIQCd2QSaopP8l8KJg4uUmthv541VujEWQDrU5K.jpg',9,339376,'jpg','image','2021-01-18 07:20:12','2021-01-18 07:20:12',NULL),(1661,'logo icons-01','uploads/all/iRV81nF9geY7HLsBlTPuiW79fpi26NIejl4yUfTI.jpg',9,291251,'jpg','image','2021-01-18 07:20:12','2021-01-18 07:20:12',NULL),(1662,'logo icons-14','uploads/all/hR8PcLFOHFJcw6hfqWLigoQP8t9PrOznDtNn9mzd.jpg',9,319988,'jpg','image','2021-01-18 07:20:14','2021-01-18 07:20:14',NULL),(1663,'logo icons-13','uploads/all/Uys0mXQ4GO5C4C2d03kvTYBx7Kc4V42abliD0hiz.jpg',9,259171,'jpg','image','2021-01-18 07:20:14','2021-01-18 07:20:14',NULL),(1664,'logo icons-15','uploads/all/GJNTxfkXKNgwt82hiygbzEzeUiywZaCqhw1rFtOI.jpg',9,324778,'jpg','image','2021-01-18 07:20:17','2021-01-18 07:20:17',NULL),(1665,'logo icons-11','uploads/all/ZbpxqJdv9C5md1KYOnafRnckLKMxbXPraxwTm6nj.jpg',9,244123,'jpg','image','2021-01-18 07:20:18','2021-01-18 07:20:18',NULL),(1666,'logo icons-05','uploads/all/lpCuxk3hwDY5sB7Z1OEEvHHCHYEiVSRG50yG1OLn.jpg',9,310003,'jpg','image','2021-01-18 07:20:20','2021-01-18 07:20:20',NULL),(1667,'logo icons-03','uploads/all/B6AfpmQorSJyZq6QNvcN5FyDQNIDVddSy1z8hvtT.jpg',9,291897,'jpg','image','2021-01-18 07:20:23','2021-01-18 07:20:23',NULL),(1668,'logo icons-09','uploads/all/Ql6rfVLLwRXRBJ1W7CRI4wQ0gQLHSbedrEQ7NXbk.jpg',9,240088,'jpg','image','2021-01-18 07:20:25','2021-01-18 07:20:25',NULL),(1669,'logo icons-16','uploads/all/afaV5oni4FaeTrcikWkTSMEuRcHbO4tfPyECXd25.jpg',9,163812,'jpg','image','2021-01-18 07:20:25','2021-01-18 07:20:25',NULL),(1670,'logo icons-04','uploads/all/nZVLZx4LiH6IrZ2toAtF5gPewW9hxVYDvai83X5D.jpg',9,333162,'jpg','image','2021-01-18 07:20:26','2021-01-18 07:20:26',NULL),(1671,'logo icons-02','uploads/all/yCaMiwC7HERNwUm3yUcfXFDUjE2NikQr8RarPibT.jpg',9,262018,'jpg','image','2021-01-18 07:20:27','2021-01-18 07:20:27',NULL),(1672,'logo icons-07','uploads/all/8T1EvFpAi5ol9RCEwPexesk5iGwwKoasHDAkNps5.jpg',9,270090,'jpg','image','2021-01-18 07:20:29','2021-01-18 07:20:29',NULL),(1673,'logo icons-01','uploads/all/Rv09xB8nf7MWC8rtrSTB1KMzdOkEVMf77rwmQQhC.jpg',9,291251,'jpg','image','2021-01-19 02:34:44','2021-01-19 02:34:44',NULL),(1674,'Untitled-3-02','uploads/all/S9emmu1hUR6s7P38xwBLiu1FKjTDYgOKW4icawWH.jpg',9,91779,'jpg','image','2021-01-19 02:44:18','2021-01-19 02:44:18',NULL),(1675,'EW7A6273','uploads/all/Sa147tCln5a1ySsjDsgEWl980Hnpdegs8D3atjBZ.jpg',9,352417,'jpg','image','2021-01-19 02:53:30','2021-01-19 02:53:30',NULL),(1676,'EW7A3086','uploads/all/Maqcfm0bOQcU3XgC126rMbl3CgHfzNPu3iishaDi.jpg',9,3732564,'jpg','image','2021-01-19 02:55:13','2021-01-19 02:55:13',NULL),(1677,'logo iconssample-01','uploads/all/z3yoI6OFloB7diuJKyE24BeaA7AUoLBlOEjr1q5M.jpg',9,278388,'jpg','image','2021-01-19 02:56:14','2021-01-19 02:56:14',NULL),(1678,'EW7A3052','uploads/all/oxMGwOObXBVaQL6QAcEAqf9mgih8A8soUy23lU0e.jpg',9,1153170,'jpg','image','2021-01-19 03:12:39','2021-01-19 03:12:39',NULL),(1679,'EW7A3021','uploads/all/shulFHHnFyumNqaZqf9ZcJWNWcWIx1mPANk6l7QA.jpg',9,731182,'jpg','image','2021-01-19 04:01:49','2021-01-19 04:01:49',NULL),(1680,'white with button','uploads/all/r2Z3qxPrEn0plvppCtYyvhCpRUXy11ACwirVpu8J.jpg',9,754452,'jpg','image','2021-01-19 04:01:58','2021-01-19 04:01:58',NULL),(1681,'white without buton','uploads/all/fVAAK0ocyfH3iMvH6hYxuqz0ivylve6AHefu9mBR.jpg',9,755047,'jpg','image','2021-01-19 04:02:23','2021-01-19 04:02:23',NULL),(1682,'EW7A6411','uploads/all/EBN6ObCH3NcZlOBYInAdH6SmADIgxu4BGfMeG38r.jpg',9,1995884,'jpg','image','2021-01-19 05:40:45','2021-01-19 05:40:45',NULL),(1683,'siz chats-07','uploads/all/NepRXulWw8fa4uR1rR1ejcdMouqZa2Q8uqnApfX6.jpg',9,682602,'jpg','image','2021-01-19 06:05:51','2021-01-19 06:05:51',NULL),(1684,'siz chats-06','uploads/all/0iaNzh80Fkj4hqfa7wtVBrCofoHYcekv5bOWODbk.jpg',9,460353,'jpg','image','2021-01-19 06:05:56','2021-01-19 06:05:56',NULL),(1685,'siz chats-01','uploads/all/qqxnPAQtP4eEQ4SfE9qTt9dqUSL8BWEKB12GZ0yl.jpg',9,647977,'jpg','image','2021-01-19 06:05:57','2021-01-19 06:05:57',NULL),(1686,'siz chats-04','uploads/all/b8XKSFPcO4LcsqSfcNOHyg0Gu3jXMfnfLCFm6tSQ.jpg',9,447104,'jpg','image','2021-01-19 06:05:59','2021-01-19 06:05:59',NULL),(1687,'siz chats-05','uploads/all/Z4NPzsICy74vCZ6RISHMzFtbZpqzHY9fH9UZ290e.jpg',9,556929,'jpg','image','2021-01-19 06:06:00','2021-01-19 06:06:00',NULL),(1688,'siz chats-03','uploads/all/sAYfyvkr2THqtnM6ArPgXtF5LlXN6pAs6FfFcTKW.jpg',9,597586,'jpg','image','2021-01-19 06:06:03','2021-01-19 06:06:03',NULL),(1689,'siz chats-08','uploads/all/SKenIPqxnoE5kUjde3npbC9qUET6CWEkPylvIleS.jpg',9,433670,'jpg','image','2021-01-19 06:06:07','2021-01-19 06:06:07',NULL),(1690,'siz chats-09','uploads/all/ROxsJP23XFfhKfEC2ifMeBatz8cIxE2IKXFaFcsy.jpg',9,396803,'jpg','image','2021-01-19 06:06:08','2021-01-19 06:06:08',NULL),(1691,'siz chats-10','uploads/all/nyf92gtryMOBdZhlNjs2qg8g0suySim1k6oXs58r.jpg',9,430812,'jpg','image','2021-01-19 06:06:11','2021-01-19 06:06:11',NULL),(1692,'siz chats-02','uploads/all/zXIXDBlgeE59morjwWvgOdeRVjMySoNSwpw5MPZx.jpg',9,510718,'jpg','image','2021-01-19 06:06:14','2021-01-19 06:06:14',NULL),(1693,'c25ea79ffbf93b7e08969e7706029404','uploads/all/N17muECClN7XlYMy6tTN7UixqqpE1xgSqHIcsWjF.jpg',9,227117,'jpg','image','2021-01-19 08:14:32','2021-01-19 08:14:32',NULL),(1694,'images (3)','uploads/all/6Rt1xhionAHSZ6renfFGHyOHI3033F7G6Hr3pCGi.jpg',9,5150,'jpg','image','2021-01-19 08:20:57','2021-01-19 08:20:57',NULL),(1695,'images (2)','uploads/all/PVRTuRcuKmfOvV4gJ3ZQYD7dmSPNjU3ZvDc3G7M2.jpg',9,9216,'jpg','image','2021-01-19 08:20:57','2021-01-19 08:20:57',NULL),(1696,'download (5)','uploads/all/Swn9sNZ34JzoQcaKtiyGJhqVZpwUt3nBBvCSsKt5.jpg',9,7123,'jpg','image','2021-01-19 08:20:58','2021-01-19 08:20:58',NULL),(1697,'Untitled-3-04','uploads/all/7KedanD1Xb2CEwmtgMeX8vHtqDhheGmbDdx7vRgR.jpg',9,58833,'jpg','image','2021-01-19 08:24:21','2021-01-19 08:24:21',NULL),(1698,'ccebb027663e1c103b716a39d69f6c3b6f3963ef','uploads/all/bTvvZI5Eii22vRJFFUGaW8tjaeBgpn7T3Z0D5j20.jpg',9,46815,'jpg','image','2021-01-19 08:34:38','2021-01-19 08:34:38',NULL),(1699,'76100402950ef8bbd2f3b6cf1a344964','uploads/all/qjOFV574vshcd4Mjntf1L18SnczyvlbLFf9ug3a6.jpg',9,38342,'jpg','image','2021-01-19 08:35:18','2021-01-19 08:35:18',NULL),(1700,'EW7A3094','uploads/all/KLphlISEvLagWPa9ZhHO74LfcS8mYWMLXiohnqLk.jpg',9,523111,'jpg','image','2021-01-19 08:41:19','2021-01-19 08:41:19',NULL),(1701,'EW7A5032','uploads/all/T6uw3KLOV0Dw5IrL4Hb9tNc5H3Dml7QnYUdtXkbs.jpg',9,850244,'jpg','image','2021-01-19 08:42:59','2021-01-19 08:42:59',NULL),(1702,'EW7A5150','uploads/all/y78Yb41eQ6ATJQNMIfpG7ZTZld5ocau6rX6jbJZB.jpg',9,375971,'jpg','image','2021-01-19 08:55:33','2021-01-19 08:55:33',NULL),(1703,'water bottels grid-02','uploads/all/LO3h8lEq2tZSJqOMjVI1eWs11qKSM836oEndVp96.jpg',9,918698,'jpg','image','2021-01-19 08:58:32','2021-01-19 08:58:32',NULL),(1704,'SB-21-PURPLE','uploads/all/OsE7NaL5KZ6urZp7ikqX5zhiHLCiMirtqsXREfxv.jpg',9,88644,'jpg','image','2021-01-19 09:01:13','2021-01-19 09:01:13',NULL),(1705,'LB1-12','uploads/all/tTiEyC8bAvsUWzBwYzWFRWvVROKrTzIMmNrchbY5.jpg',9,974008,'jpg','image','2021-01-19 09:02:49','2021-01-19 09:02:49',NULL),(1706,'perfumes gridArtboard 30','uploads/all/U5CI0q3SFFlQydPyKX2owImY6xMettszSNWk4uQb.jpg',9,57197,'jpg','image','2021-01-19 09:24:51','2021-01-19 09:24:51',NULL),(1707,'perfumes gridArtboard 44','uploads/all/G340ZVGC46x0sZmrX4q7kWZUkfGa6tGKz10UMClI.jpg',9,53730,'jpg','image','2021-01-19 09:26:04','2021-01-19 09:26:04',NULL),(1708,'perfumes gridArtboard 37','uploads/all/uH5NP53tZeDuQR1Ih40S5dIejqCq8zdp11Uku9TP.jpg',9,66018,'jpg','image','2021-01-19 09:26:31','2021-01-19 09:26:31',NULL),(1709,'body day 2Artboard 9','uploads/all/zZLXaZwpu5LTekCF8LjXnoVRWy9zcnQ0oc6D9uAe.jpg',9,59408,'jpg','image','2021-01-19 09:47:13','2021-01-19 09:47:13',NULL),(1710,'body sprey gridsArtboard 56','uploads/all/A82SkeWSaNo9tTFL3ukY6UMysJfNhesowtz3Zxia.jpg',9,53908,'jpg','image','2021-01-19 10:05:45','2021-01-19 10:05:45',NULL),(1711,'01 (2)-min','uploads/all/AgHUlVd2kxejqEQjsck0DRIUGQ53YoH26uK3CPXa.jpg',9,220667,'jpg','image','2021-01-20 03:00:09','2021-01-20 03:00:09',NULL),(1712,'01 (3)-min','uploads/all/WQCd2KvgLBoux8AfSriwpJC2yGlNZPkmHkTNPjmE.jpg',9,252266,'jpg','image','2021-01-20 03:00:10','2021-01-20 03:00:10',NULL),(1713,'01 (1)-min','uploads/all/92nF25prxelSiXWwiY2An5M1TeG8flT6YAcgpncI.jpg',9,177113,'jpg','image','2021-01-20 03:00:12','2021-01-20 03:00:12',NULL),(1714,'01 (4)-min','uploads/all/2uEc62waUt7RGYuwYd3AM5huyqmJlYmFrT24wnLt.jpg',9,154816,'jpg','image','2021-01-20 03:06:02','2021-01-20 03:06:02',NULL),(1715,'01 (5)-min','uploads/all/fLdZRPEaeSyjRtQJuOtyTCvBKXsnRfvQhX2Ji0xb.jpg',9,186072,'jpg','image','2021-01-20 03:06:03','2021-01-20 03:06:03',NULL),(1716,'01 (6)-min','uploads/all/SruWHiFqZO60D5rvfPnMpjaipwi7e0B2rcmkoHGz.jpg',9,217921,'jpg','image','2021-01-20 03:06:04','2021-01-20 03:06:04',NULL),(1717,'WhatsApp Image 2021-01-20 at 1.26.52 PM','uploads/all/eVfItOdhK20E444NAE7ExoyZWat1KOxORWpDzw0m.jpg',9,99747,'jpeg','image','2021-01-20 04:11:00','2021-01-20 04:11:00',NULL),(1718,'WhatsApp Image 2021-01-20 at 1.26.52 PM (1)','uploads/all/Htfw4xTtoFk6ofRC5Msx5MURXS3r7CT5lk6AQevu.jpg',9,108825,'jpeg','image','2021-01-20 04:11:01','2021-01-20 04:11:01',NULL),(1719,'WhatsApp Image 2021-01-20 at 1.26.51 PM (1)','uploads/all/7yjE1m6RX9SgHXvKtOngYlDv2xadO1EO6OC7OlQT.jpg',9,170579,'jpeg','image','2021-01-20 04:11:02','2021-01-20 04:11:02',NULL),(1720,'WhatsApp Image 2021-01-20 at 1.26.53 PM (1)','uploads/all/VV6OR7j6S2iO2WGfh50DTJToBDbxccICI06cG0V4.jpg',9,145041,'jpeg','image','2021-01-20 04:11:03','2021-01-20 04:11:03',NULL),(1721,'WhatsApp Image 2021-01-20 at 1.26.54 PM','uploads/all/qkYKxQJSfUMKY3YyOF484HBhq8xu45jfGVwwepLr.jpg',9,83586,'jpeg','image','2021-01-20 04:11:05','2021-01-20 04:11:05',NULL),(1722,'WhatsApp Image 2021-01-20 at 1.26.51 PM','uploads/all/qFOxEcPCKJyhkqvXGsN16UoEydGxo7hUvp79IQ8t.jpg',9,195476,'jpeg','image','2021-01-20 04:11:05','2021-01-20 04:11:05',NULL),(1723,'WhatsApp Image 2021-01-20 at 1.26.48 PM','uploads/all/9gZiPNVmfZdkPpWD9cXbp36AOrvdAbItrqINVlkO.jpg',9,136436,'jpeg','image','2021-01-20 04:11:06','2021-01-20 04:11:06',NULL),(1724,'WhatsApp Image 2021-01-20 at 1.26.55 PM','uploads/all/vInTfWLc9BjTPmn9p5klB8QvisdxRmP8GFwCmpDH.jpg',9,101759,'jpeg','image','2021-01-20 04:11:07','2021-01-20 04:11:07',NULL),(1725,'WhatsApp Image 2021-01-20 at 1.26.53 PM','uploads/all/MwMKPtH7d9vA5Mp1Atn55DAVPEU9yZvmWEYPmX1Q.jpg',9,100315,'jpeg','image','2021-01-20 04:11:08','2021-01-20 04:11:08',NULL),(1726,'WhatsApp Image 2021-01-20 at 1.26.54 PM (1)','uploads/all/Gw52qm2zkurgQEYvP5sPCrafb94uKZdu61A256PC.jpg',9,117938,'jpeg','image','2021-01-20 04:11:10','2021-01-20 04:11:10',NULL),(1727,'01 (7)-min','uploads/all/cJk5STo1nAoOSMPklZy0ewewRD6EjtF5ViGasJAT.jpg',9,164502,'jpg','image','2021-01-20 09:45:47','2021-01-20 09:45:47',NULL),(1728,'01 (8)-min','uploads/all/7wcF7eOsBZj9CXfkaLqLjgAxKSZaHTWLE1bPMfok.jpg',9,211486,'jpg','image','2021-01-20 09:45:48','2021-01-20 09:45:48',NULL),(1729,'01 (9)-min','uploads/all/fLhshWrO7mwhI8j07tz5ihA94EPaVDILkgxmM1vW.jpg',9,232767,'jpg','image','2021-01-20 09:45:49','2021-01-20 09:45:49',NULL),(1730,'01 (10)-min','uploads/all/AzWumed1kZ6poSSZYl02p5pgsUwmkBBJUDne8Qz1.jpg',9,239446,'jpg','image','2021-01-20 09:49:28','2021-01-20 09:49:28',NULL),(1731,'01 (11)-min','uploads/all/ona6Xj0B25Eb3qqv7AluphKa4IMLhVTeP6kGSKaU.jpg',9,260368,'jpg','image','2021-01-20 09:49:28','2021-01-20 09:49:28',NULL),(1732,'01 (12)-min','uploads/all/9tSSOebutuauQkDKUkcMd2eU4FaejAJhxkmZhdnn.jpg',9,513950,'jpg','image','2021-01-20 09:49:31','2021-01-20 09:49:31',NULL),(1733,'01 (13)-min','uploads/all/a22VrLrLtJdWwRj1Fg7lihMnmSAruqiMO9mkm2p7.jpg',9,173319,'jpg','image','2021-01-20 09:54:58','2021-01-20 09:54:58',NULL),(1734,'01 (14)-min','uploads/all/PyEvxvW5JBafhjOy6F3qHmWwZfD2YAZ4iK1FFAZv.jpg',9,237147,'jpg','image','2021-01-20 09:55:00','2021-01-20 09:55:00',NULL),(1735,'01 (15)-min','uploads/all/sjPqNNQQZ4Qu8kzMWNKENhuY7BgMDQNXHhIge2wk.jpg',9,121456,'jpg','image','2021-01-20 10:01:51','2021-01-20 10:01:51',NULL),(1736,'01 (16)-min','uploads/all/WptmW9WfX8YZV6vwFianVDxn69ZNSiMICZ3nj4sm.jpg',9,169926,'jpg','image','2021-01-20 10:01:52','2021-01-20 10:01:52',NULL),(1737,'01 (17)-min','uploads/all/eif96IrLUQHmdpLjM7JEmmGzOUooq4lH3mNETVz8.jpg',9,82110,'jpg','image','2021-01-20 10:05:30','2021-01-20 10:05:30',NULL),(1738,'01 (18)-min','uploads/all/raZO5tk040cJ2wwJ6yPu6Ve8WZhEbxKCbA3bjjZ9.jpg',9,284629,'jpg','image','2021-01-20 10:05:36','2021-01-20 10:05:36',NULL),(1739,'01 (19)-min','uploads/all/ze4IS4G6UOWu4iWB4HyThyqiJQ1sxI6SAkQmvn9v.jpg',9,400241,'jpg','image','2021-01-20 10:05:39','2021-01-20 10:05:39',NULL),(1740,'01 (20)-min','uploads/all/GRwGwu29OtAH7dGXLbQUON9w6GCqE4BfAggiYwzM.jpg',9,378584,'jpg','image','2021-01-20 10:05:39','2021-01-20 10:05:39',NULL),(1741,'01 (21)-min','uploads/all/eW92hZdqVeylKJQKG1OT0bqtM2cW6BMVGueDB8rm.jpg',9,132287,'jpg','image','2021-01-20 10:09:18','2021-01-20 10:09:18',NULL),(1742,'01 (22)-min','uploads/all/aDxaFrsrVOvGJkg2fLGCoUlPFpPdzJVFhnZmzbNh.jpg',9,269369,'jpg','image','2021-01-20 10:09:20','2021-01-20 10:09:20',NULL),(1743,'01 (23)-min','uploads/all/pyPIXCWKQHYoH9deLEo08kxl0flWNtrKaf04eqB5.jpg',9,167764,'jpg','image','2021-01-20 10:09:20','2021-01-20 10:09:20',NULL),(1744,'01 (26)-min','uploads/all/2EEsgiR70qFyfDgxwU0FUpCPiG3gsmTaMZP1VKwf.jpg',9,89864,'jpg','image','2021-01-20 10:15:09','2021-01-20 10:15:09',NULL),(1745,'01 (27)-min','uploads/all/A5ZUTC0XICmHtdlcIfloghCmI1ndhgMTMbIEltL2.jpg',9,162403,'jpg','image','2021-01-20 10:15:10','2021-01-20 10:15:10',NULL),(1746,'01 (28)-min','uploads/all/Jn31aJAUgP6qXgZ4Ib4eUb30vyS5lDMDLiEmjbdo.jpg',9,316231,'jpg','image','2021-01-20 10:19:05','2021-01-20 10:19:05',NULL),(1747,'01 (29)-min','uploads/all/YlpTkyHqcaLs7AyWoLpykkYnFMUdr5zhpnLbVlck.jpg',9,369943,'jpg','image','2021-01-20 10:19:07','2021-01-20 10:19:07',NULL),(1748,'01 (30)-min','uploads/all/SuitbNQxXa1qsWoa1oRFZDMLyVMs52rW87vvTCV2.jpg',9,164443,'jpg','image','2021-01-20 10:23:36','2021-01-20 10:23:36',NULL),(1749,'01 (31)-min','uploads/all/4dPTmWwkOF6Qhbded2j1sIR7KR942PKRuIzc5B9N.jpg',9,219318,'jpg','image','2021-01-20 10:23:37','2021-01-20 10:23:37',NULL),(1750,'01 (34)-min','uploads/all/6ddRsaPBwyyZ6BZWUEE9PqgI6AGa9D7ZoVjM0b1W.jpg',9,86668,'jpg','image','2021-01-20 10:27:42','2021-01-20 10:27:42',NULL),(1751,'01 (36)-min','uploads/all/JqO0sIBZB8nBWupZOfKQqmzdRhLtHvVJWlVQEOuq.jpg',9,110238,'jpg','image','2021-01-20 10:27:43','2021-01-20 10:27:43',NULL),(1752,'01 (35)-min','uploads/all/UbJ5TnVPKfh7H1f1iiTyrM8DapIQSFdR5tVnqYA8.jpg',9,130229,'jpg','image','2021-01-20 10:27:43','2021-01-20 10:27:43',NULL),(1753,'01 (41)-min','uploads/all/SFdTaHPdleJYYhtx0ce18gVROqzpnghpavSTZH9i.jpg',9,63537,'jpg','image','2021-01-20 10:32:32','2021-01-20 10:32:32',NULL),(1754,'01 (40)-min','uploads/all/AlGdr5EFVJB808rct6V08vDXzjr6jnj7shksDk30.jpg',9,109190,'jpg','image','2021-01-20 10:32:38','2021-01-20 10:32:38',NULL),(1755,'01 (42)-min','uploads/all/XBu4Zd7tGusaFUszBdSWbqpWo7t6fGnlwJlavxZX.jpg',9,85167,'jpg','image','2021-01-20 10:32:39','2021-01-20 10:32:39',NULL),(1756,'01 (43)-min','uploads/all/yWFYUy8B7VDcmSkofPDyK2q60fDhcQBUP959FPbB.jpg',9,73653,'jpg','image','2021-01-21 01:50:46','2021-01-21 01:50:46',NULL),(1757,'01 (44)-min','uploads/all/xikzYfYdwuro0vxboQTGFOIbW2YqCUVriQdPO4NR.jpg',9,302760,'jpg','image','2021-01-21 01:50:51','2021-01-21 01:50:51',NULL),(1758,'01 (45)-min','uploads/all/HcfhRJQaYsiIO7csjTepdmXY88mmrO21UUJNROD2.jpg',9,413645,'jpg','image','2021-01-21 01:50:52','2021-01-21 01:50:52',NULL),(1759,'01 (46)-min','uploads/all/OogKkHJ0c5jZ76YaQpAdQzCbHlEaQr1NZZIXkPiS.jpg',9,66110,'jpg','image','2021-01-21 01:56:27','2021-01-21 01:56:27',NULL),(1760,'01 (47)-min','uploads/all/FqTZ6S3IiIhJeyoZBAMqkVsbrvQGHpajnS7DHbKm.jpg',9,91042,'jpg','image','2021-01-21 01:56:28','2021-01-21 01:56:28',NULL),(1761,'01 (48)-min','uploads/all/M3F5Wtlw5w6sCz3zrVEEKWxxC3E99jkRaqaRTvSE.jpg',9,99077,'jpg','image','2021-01-21 01:56:29','2021-01-21 01:56:29',NULL),(1762,'01 (49)-min','uploads/all/bYUWj9QkypRBnhlkZ5FMpoTNzL9WEW3NABJ0UBnV.jpg',9,127014,'jpg','image','2021-01-21 01:56:29','2021-01-21 01:56:29',NULL),(1763,'01 (50)-min','uploads/all/WHpwJhKmavh9xk00Z3Vc9UZtmFKwxvYssWAq04cA.jpg',9,98844,'jpg','image','2021-01-21 01:56:29','2021-01-21 01:56:29',NULL),(1764,'01 (51)-min','uploads/all/8QHxh2x40YFcODD2lOxXcpIxyybRLkW1ETXcvbyz.jpg',9,180099,'jpg','image','2021-01-21 02:01:30','2021-01-21 02:01:30',NULL),(1765,'01 (54)-min','uploads/all/1i0DKUxFj5MKAIRABXHFVGo7xETEHH8R0ZqCROdB.jpg',9,389742,'jpg','image','2021-01-21 02:07:31','2021-01-21 02:07:31',NULL),(1766,'01 (53)-min','uploads/all/8gC5V5WIoEbJEF309UDHFwZ3KH9jBOgLArhv9Fhy.jpg',9,105924,'jpg','image','2021-01-21 02:07:36','2021-01-21 02:07:36',NULL),(1767,'01 (52)-min','uploads/all/eOyyltlDXvdRuXAyFWEz1Fb6BC486cypo8KmeV8j.jpg',9,619793,'jpg','image','2021-01-21 02:07:43','2021-01-21 02:07:43',NULL),(1768,'01 (53)-min','uploads/all/2T46XGlUpSwCquutBhY9a1yrENY85mBzJeuteJv9.jpg',9,105924,'jpg','image','2021-01-21 02:08:23','2021-01-21 02:08:23',NULL),(1769,'01 (55)-min','uploads/all/ecXovctqpHBBUaNHDDPAIqcOelSY5rlwIdgkKJj7.jpg',9,402192,'jpg','image','2021-01-21 02:11:47','2021-01-21 02:11:47',NULL),(1770,'01 (58)-min','uploads/all/C6TGUHBcqIMgiMJvgrdKSoHsr1djqKpxMdbfDCUG.jpg',9,678853,'jpg','image','2021-01-21 02:11:57','2021-01-21 02:11:57',NULL),(1771,'01 (57)-min','uploads/all/8afIpudh6LjhJoxekjivCXe0evyGRbV7GGYuI3Xr.jpg',9,352712,'jpg','image','2021-01-21 02:12:01','2021-01-21 02:12:01',NULL),(1772,'01 (56)-min','uploads/all/AGSZAlUOUpXXfclLc5S4E20wicD4oYxE29nXysrj.jpg',9,685005,'jpg','image','2021-01-21 02:12:02','2021-01-21 02:12:02',NULL),(1773,'01 (61)-min','uploads/all/UVk9sT1S8DdFRdx7nmalTYRATSPeMamHVDllXppX.jpg',9,52568,'jpg','image','2021-01-21 02:21:15','2021-01-21 02:21:15',NULL),(1774,'01 (62)-min','uploads/all/gntKSD8c6b8blb2Mn5OqiTGR7nUBP32U0X47CfiK.jpg',9,79570,'jpg','image','2021-01-21 02:21:16','2021-01-21 02:21:16',NULL),(1775,'01 (59)-min','uploads/all/ZhVpkJhg4CzTlz4qUxBSefB24jnWVhAJVanRDq6R.jpg',9,95087,'jpg','image','2021-01-21 02:21:16','2021-01-21 02:21:16',NULL),(1776,'EW7A6273','uploads/all/q46OrmY0HFgekaO88x7pjzwYt1VwvOroItwFEF1S.jpg',9,352417,'jpg','image','2021-01-21 02:22:38','2021-01-21 02:22:38',NULL),(1777,'01 (67)-min','uploads/all/pl7R6b9DqP4aegiHqW90BzbRjFCtb0cru0Dojods.jpg',9,36511,'jpg','image','2021-01-21 02:29:12','2021-01-21 02:29:12',NULL),(1778,'01 (63)-min','uploads/all/sUzqOWHK7FS3C1aiEhV69mvXx8U2MHZCqvnI3lpo.jpg',9,60372,'jpg','image','2021-01-21 02:29:12','2021-01-21 02:29:12',NULL),(1779,'01 (65)-min','uploads/all/l2z1Tn0tM18xW9oQOWzY7ibquy4tqkOD4Eq82RHN.jpg',9,43754,'jpg','image','2021-01-21 02:29:12','2021-01-21 02:29:12',NULL),(1780,'01 (66)-min','uploads/all/0q5nypr3VXi4JNqNqFLpaUHbdGCQMBUZ46k85RBQ.jpg',9,49939,'jpg','image','2021-01-21 02:29:12','2021-01-21 02:29:12',NULL),(1781,'01 (64)-min','uploads/all/SgS7cmvX8l3T2RCOHebNKUhKCMgSCmG6D4M3a5t4.jpg',9,147568,'jpg','image','2021-01-21 02:29:13','2021-01-21 02:29:13',NULL),(1782,'01 (68)-min','uploads/all/GkWAR4BCqQue7g3pHWTQRTjM2c2ruWUK3C8mltm8.jpg',9,59310,'jpg','image','2021-01-21 02:33:15','2021-01-21 02:33:15',NULL),(1783,'01 (69)-min','uploads/all/vMQJY8wBD9Pwf8XrLk555fpAV6N2phDVteASLEGC.jpg',9,127275,'jpg','image','2021-01-21 02:33:16','2021-01-21 02:33:16',NULL),(1784,'01 (70)-min','uploads/all/qgI9Io8DmhUiHLw1BYUJmZBklhI64ErDz6eXnKyO.jpg',9,120048,'jpg','image','2021-01-21 02:33:16','2021-01-21 02:33:16',NULL),(1785,'01 (72)-min','uploads/all/BkeypLCcfwpKOlyI9WlZ40vET9DY58GxeZJ4jM0k.jpg',9,236401,'jpg','image','2021-01-21 02:37:44','2021-01-21 02:37:44',NULL),(1786,'01 (71)-min','uploads/all/8G57eScPEb90el3jpSiz1rcrAtDflZ21KpUQ5rya.jpg',9,683864,'jpg','image','2021-01-21 02:37:47','2021-01-21 02:37:47',NULL),(1787,'01 (73)-min','uploads/all/JA9PZFds2kNdim0DGHZLN39FICI4M2zzor1IvVvU.jpg',9,686383,'jpg','image','2021-01-21 02:38:14','2021-01-21 02:38:14',NULL),(1788,'01 (75)-min','uploads/all/ErOfqnutDVDPct5BMLLy0m2yts262yscKS1ytAQz.jpg',9,59278,'jpg','image','2021-01-21 02:43:36','2021-01-21 02:43:36',NULL),(1789,'01 (76)-min','uploads/all/0OseolHZkIiXTGv7eWqXISkDGyHBHmchUbGumHvZ.jpg',9,169911,'jpg','image','2021-01-21 02:43:38','2021-01-21 02:43:38',NULL),(1790,'01 (74)-min','uploads/all/SaZ94g2BEa0O79nVTLmBBlgfeGyQpxyg9S4rUr1b.jpg',9,249407,'jpg','image','2021-01-21 02:43:39','2021-01-21 02:43:39',NULL),(1791,'01 (77)-min','uploads/all/YnUl2CnizMAWpJxjyBytYoCW7pDQXCIKmcFj5xsr.jpg',9,116146,'jpg','image','2021-01-21 02:54:52','2021-01-21 02:54:52',NULL),(1792,'01 (78)-min','uploads/all/0VVkSsduFDTwyvWBMInYv8T2naUTrBo0EQBqSCPv.jpg',9,53837,'jpg','image','2021-01-21 02:54:52','2021-01-21 02:54:52',NULL),(1793,'01 (79)-min','uploads/all/k0D6nQGDYoyiMz3W7L1s8rVw6PdpGOSzWJLHJphb.jpg',9,71087,'jpg','image','2021-01-21 02:54:53','2021-01-21 02:54:53',NULL),(1794,'01 (81)-min','uploads/all/c9TV0S7GwP9U5pkQgqspjafHshE2jSFp6VIIdXfE.jpg',9,51817,'jpg','image','2021-01-21 03:14:22','2021-01-21 03:14:22',NULL),(1795,'01 (80)-min','uploads/all/iLnymJpHlyAj0OB2wAx7RgdcuUVSvBCc2dbGy8ru.jpg',9,138108,'jpg','image','2021-01-21 03:14:23','2021-01-21 03:14:23',NULL),(1796,'01 (82)-min','uploads/all/hpQ9FGqqUErdEhIqa4iPXZ4biTmEHw7CcYbBbbtQ.jpg',9,104133,'jpg','image','2021-01-21 03:14:23','2021-01-21 03:14:23',NULL),(1797,'01 (83)-min','uploads/all/PCli6tNuYBD43HhlXpEMeipCIHNO7FLPocj3qKzB.jpg',9,87489,'jpg','image','2021-01-21 03:19:04','2021-01-21 03:19:04',NULL),(1798,'01 (84)-min','uploads/all/DXFuN7FFp4lmM8VB9R1K5yHj5Lb1bQRHx0WIyb8a.jpg',9,192980,'jpg','image','2021-01-21 03:19:05','2021-01-21 03:19:05',NULL),(1799,'01 (85)-min','uploads/all/MvuxFMP6QXWA7W8BBb0jeyZXxEoTpORBIrCSl0yI.jpg',9,297962,'jpg','image','2021-01-21 03:19:07','2021-01-21 03:19:07',NULL),(1800,'01 (86)-min','uploads/all/dZzkCI88z5OtJMz9XxYeCslYoRVWMO4JVvdEUntn.jpg',9,168955,'jpg','image','2021-01-21 03:30:00','2021-01-21 03:30:00',NULL),(1801,'01 (87)-min','uploads/all/l8fgjcCIfjrAKuBB4BsGKxBiOJ0irYSmZkDCkosP.jpg',9,298820,'jpg','image','2021-01-21 03:30:02','2021-01-21 03:30:02',NULL),(1802,'01 (88)-min','uploads/all/EdcOoEY9QrXbQCAzZkFEzbx8XI22axDLGeE7A6zZ.jpg',9,64615,'jpg','image','2021-01-21 03:39:39','2021-01-21 03:39:39',NULL),(1803,'01 (89)-min','uploads/all/7EXQTd5dx4pCgNadUj8M7eyehLnl1G5YFgeuzfMB.jpg',9,112524,'jpg','image','2021-01-21 03:39:39','2021-01-21 03:39:39',NULL),(1804,'01 (90)-min','uploads/all/1m6pmAK3BokmCfqwWH1ASsq9Rt0eDbKEldL0qg9d.jpg',9,73466,'jpg','image','2021-01-21 04:09:59','2021-01-21 04:09:59',NULL),(1805,'01 (92)-min','uploads/all/7bwgpHE0Z6Ch43ktK0dykG1g5QZsoZUGcu6wUZjG.jpg',9,148358,'jpg','image','2021-01-21 04:13:14','2021-01-21 04:13:14',NULL),(1806,'01 (93)-min','uploads/all/GEJh5QA1iZ7fG4E6YLRSxzrwlNUCpDJJPjjLYgSw.jpg',9,181067,'jpg','image','2021-01-21 04:13:15','2021-01-21 04:13:15',NULL),(1807,'01 (94)-min','uploads/all/39KsPeWDo8LiNabshYZtjCUQJd1t3YN0FWm3T97S.jpg',9,215350,'jpg','image','2021-01-21 04:13:15','2021-01-21 04:13:15',NULL),(1808,'01 (95)-min','uploads/all/BuTjwZaY1VkQzxCgGZnPDiciXPMnt82b5RhzKASz.jpg',9,211940,'jpg','image','2021-01-21 04:18:30','2021-01-21 04:18:30',NULL),(1809,'01 (96)-min','uploads/all/j3W9AxRgLuK370sPb5g5HH7eyhBlTZCFyEmZu3sk.jpg',9,234335,'jpg','image','2021-01-21 04:18:31','2021-01-21 04:18:31',NULL),(1810,'01 (97)-min','uploads/all/QcTdxG0lVJ7XA1nLSBLF5VSkubHUzc3Q6hRxUwD2.jpg',9,59074,'jpg','image','2021-01-21 04:23:46','2021-01-21 04:23:46',NULL),(1811,'01 (98)-min','uploads/all/SzpXwhVBwgvnMPJTFjwGmlWuyyaUkdIzNkhWOpCC.jpg',9,83919,'jpg','image','2021-01-21 04:23:46','2021-01-21 04:23:46',NULL),(1812,'01 (100)-min','uploads/all/egUPDzL41Grbdmh4HMRrtRnQh8VNARaxLkh6u5kw.jpg',9,165528,'jpg','image','2021-01-21 04:33:11','2021-01-21 04:33:11',NULL),(1813,'01 (101)-min','uploads/all/GTeCMehWpJivMiRCfX1YlqnKMrgZJhOaD68Wrukx.jpg',9,152178,'jpg','image','2021-01-21 04:33:11','2021-01-21 04:33:11',NULL),(1814,'01 (99)-min','uploads/all/ULk55qjOPUhr69nAW7LGnUD4MNJMLssMUFTyOuUV.jpg',9,228627,'jpg','image','2021-01-21 04:33:11','2021-01-21 04:33:11',NULL),(1815,'01 (102)-min','uploads/all/I7jyj8OZecMPXJCYBQI9zqRf2weNmT0r7a6tEpso.jpg',9,163339,'jpg','image','2021-01-21 04:39:36','2021-01-21 04:39:36',NULL),(1816,'01 (104)-min','uploads/all/zKeObhAOAcpQWAJVnzca3MsOxZm4T9BJynZ5846R.jpg',9,185502,'jpg','image','2021-01-21 04:39:37','2021-01-21 04:39:37',NULL),(1817,'01 (103)-min','uploads/all/zZp1Z5rP0yXnvIwbnpTRs5pp8ZmLZn3KJTAs3Pyr.jpg',9,267979,'jpg','image','2021-01-21 04:39:38','2021-01-21 04:39:38',NULL),(1818,'01 (105)-min','uploads/all/YSxvOLLoWGndEx8AgeUZYhhfVmUnvkrzHt33W9Gm.jpg',9,124072,'jpg','image','2021-01-21 04:53:56','2021-01-21 04:53:56',NULL),(1819,'01 (106)-min','uploads/all/GiBXPjKZCgDcJx00YXqTka6k4pfNL1HYLy2RYGSd.jpg',9,258951,'jpg','image','2021-01-21 04:53:59','2021-01-21 04:53:59',NULL),(1820,'01 (107)-min','uploads/all/87bbnb5r7ISnxgQt9kX7HqgHor2Xk1a6qSt4JUvs.jpg',9,222065,'jpg','image','2021-01-21 04:53:59','2021-01-21 04:53:59',NULL),(1821,'01 (109)-min','uploads/all/7I7BCVVK6ewgU7Ibnij41z0lW5fmkdsaHRhfv0xo.jpg',9,145032,'jpg','image','2021-01-21 05:15:17','2021-01-21 05:15:17',NULL),(1822,'01 (108)-min','uploads/all/Eqj4NXEfPn9SifrO3jq9RgV8iQWvGzsUnTuhHoKo.jpg',9,212440,'jpg','image','2021-01-21 05:15:18','2021-01-21 05:15:18',NULL),(1823,'01 (110)-min','uploads/all/yULpKJ78uPA9WJ0PYvtpki2wewsEHqoJ9MJTO8Gj.jpg',9,286108,'jpg','image','2021-01-21 05:15:19','2021-01-21 05:15:19',NULL),(1824,'01 (111)-min','uploads/all/AYy86NrZCBwzu3h4AmKdWEUZPMVlQuffIf8f6t8v.jpg',9,152890,'jpg','image','2021-01-21 05:22:00','2021-01-21 05:22:00',NULL),(1825,'01 (112)-min','uploads/all/KqnkvHjQMJGgcZOr99XP98t9UJfXYlaRMUMyZicz.jpg',9,204082,'jpg','image','2021-01-21 05:22:01','2021-01-21 05:22:01',NULL),(1826,'01 (113)-min','uploads/all/4Eifj8c6QzpZyEby9sAgJD002pGt6Q9lWVADDxf9.jpg',9,256977,'jpg','image','2021-01-21 05:22:02','2021-01-21 05:22:02',NULL),(1827,'01 (115)-min','uploads/all/G6KyHkdgzOnbY8s95os72M8H8CIrC1jH2gKRgSBc.jpg',9,146681,'jpg','image','2021-01-21 05:27:01','2021-01-21 05:27:01',NULL),(1828,'01 (114)-min','uploads/all/4urekBaUgHGXOPmjCAWETxVQdGpYVGCNPriKPm3w.jpg',9,157881,'jpg','image','2021-01-21 05:27:01','2021-01-21 05:27:01',NULL),(1829,'01 (117)-min','uploads/all/u8ITQZqZCNQmZ0pJjK2xasfF3wNXQC2oq4epN09f.jpg',9,141129,'jpg','image','2021-01-21 05:27:04','2021-01-21 05:27:04',NULL),(1830,'01 (120)-min','uploads/all/JpT19eygVEjt5esRBHlYgs6iZcsw4C245Qr661Iy.jpg',9,194082,'jpg','image','2021-01-21 05:27:05','2021-01-21 05:27:05',NULL),(1831,'01 (116)-min','uploads/all/ZDBDm76JOw6zZVj4ynmEv5EUyKULbBZckvsjaAVq.jpg',9,201331,'jpg','image','2021-01-21 05:27:05','2021-01-21 05:27:05',NULL),(1832,'01 (119)-min','uploads/all/zmCMIQTawqakowpbHaadXTMNBhUuE3syLrSfHos2.jpg',9,161889,'jpg','image','2021-01-21 05:27:07','2021-01-21 05:27:07',NULL),(1833,'01 (118)-min','uploads/all/Nd34EiTZNhw7F4yrdW2d7Cj6q02i79dlK2iRxYs4.jpg',9,161608,'jpg','image','2021-01-21 05:27:09','2021-01-21 05:27:09',NULL),(1834,'0545cf74-ef6d-4bff-bea7-caa289d05052','uploads/all/p5h9K6PPEFV3ipYRRlNmneRSz7Frbe9koiZQar6X.jpg',9,35249,'jpg','image','2021-01-21 07:14:23','2021-01-21 07:14:23',NULL),(1835,'891a29f7-a87e-40a6-b955-649782bea262','uploads/all/VwCEuH9Tbz2x5jv96CaMKP98qVVCxSS58zkyDVIz.jpg',9,39145,'jpg','image','2021-01-21 07:14:23','2021-01-21 07:14:23',NULL),(1836,'89b33ab0-27dd-4ea4-95dd-ba3e2bfb6b44','uploads/all/5i6aydqFXIzxvoHqJdIseAzPqIBXVgEcDFJaQ9MC.jpg',9,22616,'jpg','image','2021-01-21 07:14:26','2021-01-21 07:14:26',NULL),(1837,'917a08b6-c264-48db-b7c7-41776af21a6f (2)','uploads/all/tHV31Wh7BLc6SUef8i2dENyRPqKDogZszNt62Vhr.jpg',9,34961,'jpg','image','2021-01-21 07:14:26','2021-01-21 07:14:26',NULL),(1838,'917a08b6-c264-48db-b7c7-41776af21a6f','uploads/all/ugjwxLshCeIXiobfpYYtevNlCRwiv7QuzFZQzsXv.jpg',9,34961,'jpg','image','2021-01-21 07:14:26','2021-01-21 07:14:26',NULL),(1839,'9c937ad9-1bde-466b-b288-370c8d38bd8e','uploads/all/VNNplEfFumFf0TZ8Toqa2Ce0JL4w1MLICmExH37Z.jpg',9,26721,'jpg','image','2021-01-21 07:14:27','2021-01-21 07:14:27',NULL),(1840,'3ad1a07f-61fa-45bb-aca2-dca59f8be60e','uploads/all/a2DoiAG2P4KDQRnhzZicCCuGCgpNKA9Jhy7w4CAz.jpg',9,33458,'jpg','image','2021-01-21 07:14:27','2021-01-21 07:14:27',NULL),(1841,'39430455-effa-4804-af30-c1e9622c4523','uploads/all/fRQn78ZOaSwg8sarztmwNWSEVsPKbYvK90IEf6qa.jpg',9,27692,'jpg','image','2021-01-21 07:14:28','2021-01-21 07:14:28',NULL),(1842,'b7ef716a-151e-4eec-9f8f-532f1e063479','uploads/all/9cBTJt9LiUFDGcxP6s4Z2Nqewlx2LwPhJfC9eiE6.jpg',9,34810,'jpg','image','2021-01-21 07:14:28','2021-01-21 07:14:28',NULL),(1843,'9f8ecbf9-e03f-4a9b-b589-04b9cc16e101','uploads/all/4pT3YXVta5QmEOBDrZNOdzPRs6O5Kjzrn9alrx7V.jpg',9,36886,'jpg','image','2021-01-21 07:14:35','2021-01-21 07:14:35',NULL),(1844,'59161f76-b9cc-4e46-8117-a0bc5ecb9699','uploads/all/IvZ5zxj0h3Xxa4rtu2CPOwNcDexa916hNKUJXWKB.jpg',9,38106,'jpg','image','2021-01-21 07:14:36','2021-01-21 07:14:36',NULL),(1845,'d867e0d0-0037-478c-9982-3c5d11a0c978','uploads/all/qCSmQCRLSxfYBwh6SlKcu98sQFZJfU2aKZ6ztoy7.jpg',9,30700,'jpg','image','2021-01-21 07:14:36','2021-01-21 07:14:36',NULL),(1846,'e81418bb-dda5-4320-88e2-9a25ef8f0523','uploads/all/C38S6r2qdVJdpt86y0ts2xKCKuxWIpvVyMoOEiZM.jpg',9,30504,'jpg','image','2021-01-21 07:14:38','2021-01-21 07:14:38',NULL),(1847,'f5df73b4-9209-4a10-add5-f061d1052be4','uploads/all/EpC7TzqcoWqVMtqRYpGEyWEnGKp4etzHNuDjosYw.jpg',9,26107,'jpg','image','2021-01-21 07:14:38','2021-01-21 07:14:38',NULL),(1848,'be7fa4d2-f302-4a5f-bcb5-3f4a73b647c2','uploads/all/PlguSoj2PcSzd5zPjSZ1Admr6a9LrhCP6ZRnA49Y.jpg',9,20022,'jpg','image','2021-01-21 07:14:39','2021-01-21 07:14:39',NULL),(1849,'e4f56de0-1fad-4190-8d8a-2db90b8f1d7b','uploads/all/xyUgUOe8J3nlC6TuskVZBCn8gf2N8gJMERgJfFU7.jpg',9,35808,'jpg','image','2021-01-21 07:14:39','2021-01-21 07:14:39',NULL),(1850,'DSC_4051','uploads/all/H9FPsuBopGEnKUMcKuh5nYwa4DaOzKp8Z81Aof9M.jpg',9,168021,'jpg','image','2021-01-21 07:14:58','2021-01-21 07:14:58',NULL),(1851,'DSC_4046','uploads/all/YNBU5RCllv7b2EVcH0B4czNm5MQ0rTFT72zviRgd.jpg',9,340674,'jpg','image','2021-01-21 07:15:14','2021-01-21 07:15:14',NULL),(1852,'Final Velburry-01','uploads/all/24begImixfvfN8ASV9MmG9Ksd7VCwTKi8Q0f6xxl.png',9,23848,'png','image','2021-01-21 08:40:07','2021-01-21 08:40:07',NULL),(1853,'EW7A6894-min','uploads/all/YVOYuR7BYh7brd9gL4nW6v9qb6BmQphpsSeuS1on.jpg',9,64642,'jpg','image','2021-01-21 09:01:05','2021-01-21 09:01:05',NULL),(1854,'EW7A6899-min','uploads/all/fRDyZxRRikD8Ats5Dj9spqO19yvzRX1MC9Vwz16b.jpg',9,150447,'jpg','image','2021-01-21 09:01:06','2021-01-21 09:01:06',NULL),(1855,'EW7A6901-min','uploads/all/iisEyEN2phuruB3XNulRlH1wUNxkkUMFcljGdaA3.jpg',9,51756,'jpg','image','2021-01-21 09:10:05','2021-01-21 09:10:05',NULL),(1856,'EW7A6905-min','uploads/all/BDzFIQ1kSsCjLtgkHZnXsLWh6hX90h4ZuFXXxUtK.jpg',9,132373,'jpg','image','2021-01-21 09:10:06','2021-01-21 09:10:06',NULL),(1857,'EW7A6907-min','uploads/all/4E9njBNFS197pWr8K8iHA7Om4U9euEuqGe5IPLig.jpg',9,51318,'jpg','image','2021-01-21 09:15:59','2021-01-21 09:15:59',NULL),(1858,'EW7A6913-min','uploads/all/nv0kcHMK114F5r9tF3JAM8JraE4jpm9COUexypvp.jpg',9,318448,'jpg','image','2021-01-21 09:16:01','2021-01-21 09:16:01',NULL),(1859,'EW7A6915-min','uploads/all/cQ2ISPsz2JkLgaVAZACwJT2enh4Zn0OTier39ANX.jpg',9,56843,'jpg','image','2021-01-21 09:18:18','2021-01-21 09:18:18',NULL),(1860,'EW7A6917-min','uploads/all/sIjetfoMpYGil8o5tT94wr2SNSf8yfoBlMNUooLB.jpg',9,86249,'jpg','image','2021-01-21 09:18:19','2021-01-21 09:18:19',NULL),(1861,'EW7A6916-min','uploads/all/onfhQ8QDOXOQc2g1gbwxgoSC67T0xmQggacIKx37.jpg',9,260989,'jpg','image','2021-01-21 09:18:20','2021-01-21 09:18:20',NULL),(1862,'EW7A6920-min','uploads/all/y0eDCBHb5ib53gCyR9IWdXD1WdTmYQUjjJMobQNs.jpg',9,73178,'jpg','image','2021-01-21 09:20:57','2021-01-21 09:20:57',NULL),(1863,'EW7A6922-min','uploads/all/BtUNjreAeEB3JktKepLgTYlqbqZgdjtbgwPvE7kY.jpg',9,409591,'jpg','image','2021-01-21 09:21:01','2021-01-21 09:21:01',NULL),(1864,'EW7A6924-min','uploads/all/0m54wP447MWnAysrIrAnspQDcecXA58yV2rKZyvx.jpg',9,77763,'jpg','image','2021-01-21 09:22:49','2021-01-21 09:22:49',NULL),(1865,'EW7A6928-min','uploads/all/uXx3z2ddgeED83ADmXj7TEP5gxRFgiOivjowjKPQ.jpg',9,167402,'jpg','image','2021-01-21 09:22:50','2021-01-21 09:22:50',NULL),(1866,'EW7A6930-min','uploads/all/WPPXEEywTdjNJtBcfMf9WWoeubhA26b2KxhAlJ8m.jpg',9,51781,'jpg','image','2021-01-21 09:25:00','2021-01-21 09:25:00',NULL),(1867,'EW7A6932-min','uploads/all/kXhUvha8ep99hCsVwLLLSSUWLb9pIX1Bz0FcKq5t.jpg',9,103408,'jpg','image','2021-01-21 09:25:00','2021-01-21 09:25:00',NULL),(1868,'EW7A6935-min','uploads/all/wKJR8Ox04psAXnujuvjUwkzZ0widGbhZpIcSogU3.jpg',9,49462,'jpg','image','2021-01-21 09:29:09','2021-01-21 09:29:09',NULL),(1869,'EW7A6936-min','uploads/all/Gze5Eb303QoYrlUMx4RO1fN914FrkYmGxy2fKLGE.jpg',9,283126,'jpg','image','2021-01-21 09:29:12','2021-01-21 09:29:12',NULL),(1870,'EW7A6940-min','uploads/all/4AdXzh02kBzOO8FhDpf6gUp5xj62H93OwX4NMKd3.jpg',9,37991,'jpg','image','2021-01-21 09:31:16','2021-01-21 09:31:16',NULL),(1871,'EW7A6944-min','uploads/all/xwHO188DhLN8P4yIptKMlKYIHLkeTP0JgJ8AUUUY.jpg',9,101333,'jpg','image','2021-01-21 09:31:17','2021-01-21 09:31:17',NULL),(1872,'EW7A6952-min','uploads/all/2DoHNJUMqXyq9IfZOau3zTOKPiQLVdBWIbtkpz2J.jpg',9,48825,'jpg','image','2021-01-21 09:41:43','2021-01-21 09:41:43',NULL),(1873,'EW7A6955-min','uploads/all/3JKLruuZuKcziOXLfmOYxed31fr8EfjcPt9vAecD.jpg',9,91681,'jpg','image','2021-01-21 09:41:43','2021-01-21 09:41:43',NULL),(1874,'EW7A6958-min','uploads/all/n8d6rYe2Tx5iCLpR5gsPozUKGu0Y2JrObT9jN3PE.jpg',9,257491,'jpg','image','2021-01-21 09:47:00','2021-01-21 09:47:00',NULL),(1875,'EW7A6961-min','uploads/all/IQANHROgCUcnavVW33qyEwqYWV7tzFzDJ8VcFS3o.jpg',9,422885,'jpg','image','2021-01-21 09:47:02','2021-01-21 09:47:02',NULL),(1876,'EW7A6962-min','uploads/all/uK2QkQxsVqvPswMSABB4sclEQGx0Oe89rHO5t9Kk.jpg',9,33972,'jpg','image','2021-01-21 09:48:56','2021-01-21 09:48:56',NULL),(1877,'EW7A6963-min','uploads/all/GVdftAuBbLbZz72rx43HjcrZlN9JkvPmekdvN7aB.jpg',9,180119,'jpg','image','2021-01-21 09:48:58','2021-01-21 09:48:58',NULL),(1878,'EW7A6972-min','uploads/all/4jo8yuIyyIc7EhogUaQ5gpD72QzUhjpCvNVYSGrf.jpg',9,51771,'jpg','image','2021-01-21 09:52:23','2021-01-21 09:52:23',NULL),(1879,'EW7A6974-min','uploads/all/rDVSZlkRnaGddO1LoaY7Q6tC8z89ufECaSCut9wa.jpg',9,112913,'jpg','image','2021-01-21 09:52:23','2021-01-21 09:52:23',NULL),(1880,'EW7A6975-min','uploads/all/xOto4HcEGXnWhJVUemBuOHCx3ApuxOp9McVS37Mz.jpg',9,44739,'jpg','image','2021-01-21 09:54:33','2021-01-21 09:54:33',NULL),(1881,'EW7A6978-min','uploads/all/udK1v5JHwyXPEJhnbAmH7Px1FkWAT2csNBaQuzsI.jpg',9,79525,'jpg','image','2021-01-21 09:54:34','2021-01-21 09:54:34',NULL),(1882,'EW7A6984-min','uploads/all/iNsc55pumdecqfDfnCtnkcSNZTZutLDUyyyg2lle.jpg',9,228294,'jpg','image','2021-01-21 09:57:31','2021-01-21 09:57:31',NULL),(1883,'EW7A6988-min','uploads/all/4Yb7UX8z6CYGzRvKhiL7E6FZKPGWNq4asjSxUa0z.jpg',9,524720,'jpg','image','2021-01-21 09:57:34','2021-01-21 09:57:34',NULL),(1884,'EW7A6989-min','uploads/all/YxgLvOTQ1LxjxjfaSC0yYp1D3KnAe177V76XUWCV.jpg',9,60246,'jpg','image','2021-01-21 10:00:16','2021-01-21 10:00:16',NULL),(1885,'EW7A6994-min','uploads/all/WIIv91HjOhfd1qq1ZkajXmz5kFuJfGED711Y34Qg.jpg',9,109191,'jpg','image','2021-01-21 10:00:16','2021-01-21 10:00:16',NULL),(1886,'EW7A6995-min','uploads/all/GttJRvG5s3orr9IctxdXV57r2hDzrNahqoWJSU0N.jpg',9,69280,'jpg','image','2021-01-21 10:02:57','2021-01-21 10:02:57',NULL),(1887,'EW7A6998-min','uploads/all/YvSQsqn78at7g5GVkd5WhLBZOUpFjcW6TYg7CW4i.jpg',9,115857,'jpg','image','2021-01-21 10:02:57','2021-01-21 10:02:57',NULL),(1888,'EW7A6999-min','uploads/all/y1sk6viM0a2NpBWfhmIS3R97KDId23b4WQgWJIfz.jpg',9,69027,'jpg','image','2021-01-21 10:04:30','2021-01-21 10:04:30',NULL),(1889,'EW7A7000-min','uploads/all/LFppAc8K3IVgnuavMPklEA7oFUXiF58QCkouu6l3.jpg',9,127568,'jpg','image','2021-01-21 10:04:32','2021-01-21 10:04:32',NULL),(1890,'EW7A7008-min','uploads/all/sGFuQkMryqB6wfGTedjxPPYLlk7fDF2IzE0kNkaw.jpg',9,78640,'jpg','image','2021-01-21 10:06:25','2021-01-21 10:06:25',NULL),(1891,'EW7A7013-min','uploads/all/xjVsbqoXo9F5PbFwmpnArgyeq4ji2XZfdUqmlXMp.jpg',9,134278,'jpg','image','2021-01-21 10:06:26','2021-01-21 10:06:26',NULL),(1892,'EW7A7015-min','uploads/all/p0L4pdet71FUJNdJIxezEt3Fb65J4o2DnO0bAkI7.jpg',9,468355,'jpg','image','2021-01-21 10:11:26','2021-01-21 10:11:26',NULL),(1893,'EW7A7016-min','uploads/all/5SBwqzxatypnqEevwVv2eOu3CamUxsRs57zIczC9.jpg',9,503022,'jpg','image','2021-01-21 10:11:27','2021-01-21 10:11:27',NULL),(1894,'EW7A7021-min','uploads/all/xTz16kb8asGVU1wISFwFTazY7GU9ABaLYxjdumYl.jpg',9,89450,'jpg','image','2021-01-21 10:13:13','2021-01-21 10:13:13',NULL),(1895,'EW7A7022-min','uploads/all/4VRt2KS8UVsW5FB2UjhV5PloORxzA6V0bUEirfEy.jpg',9,488922,'jpg','image','2021-01-21 10:13:17','2021-01-21 10:13:17',NULL),(1896,'EW7A7027-min','uploads/all/jiX6SyU3E6YjQyxPS9q25SLkHR67Ys8dHiGR4PFO.jpg',9,33163,'jpg','image','2021-01-21 10:16:17','2021-01-21 10:16:17',NULL),(1897,'EW7A7031-min','uploads/all/mvyJQDfuGxJxiPQNkjVZlwrf9K5mioDF9c7ajib8.jpg',9,130896,'jpg','image','2021-01-21 10:16:18','2021-01-21 10:16:18',NULL),(1898,'1','uploads/all/Ni0uzLhzBBR3t4pkmokroCO1ZHd3L6i0qjjfKXfT.jpg',9,72598,'jpg','image','2021-01-21 10:17:28','2021-01-21 10:17:28',NULL),(1899,'3.6','uploads/all/OdfSO1p2t10Q6ELf3dxxHYqj2cqj2OsbveXhUAkC.jpg',9,71064,'jpg','image','2021-01-21 10:17:28','2021-01-21 10:17:28',NULL),(1900,'3.61','uploads/all/sDe6RQ9XBuETHzqMNZ7Txv8YTIMJ2MJr0QIyXnJQ.jpg',9,77755,'jpg','image','2021-01-21 10:17:29','2021-01-21 10:17:29',NULL),(1901,'3.3','uploads/all/9ZSvmtzqlqAFmDeNZalXfvHJPk5LBrpkNImXyqoQ.jpg',9,75901,'jpg','image','2021-01-21 10:17:29','2021-01-21 10:17:29',NULL),(1902,'4.1','uploads/all/rHaBbWM0dUrJ6g5QmIwytblIODq6cWrzTRSzKKc6.jpg',9,76548,'jpg','image','2021-01-21 10:17:29','2021-01-21 10:17:29',NULL),(1903,'4.3','uploads/all/9w3klc1zFc81kRaFFWHCdeiBVSNiWvP7FX4HpT8N.jpg',9,74485,'jpg','image','2021-01-21 10:17:29','2021-01-21 10:17:29',NULL),(1904,'4.6','uploads/all/GqalHAFH5ojW1NmmCYUhruAke4QXb2PnIyzRYm3p.jpg',9,75378,'jpg','image','2021-01-21 10:17:30','2021-01-21 10:17:30',NULL),(1905,'4.7','uploads/all/i4n6Vp5GEFLzPeak16D6dR5kMUqeKHQhQzYbbhL9.jpg',9,77224,'jpg','image','2021-01-21 10:17:30','2021-01-21 10:17:30',NULL),(1906,'4.15','uploads/all/Xgfn7FclQo22JlGSqcQhhnqfiEZwXSmalDPjDdco.jpg',9,77828,'jpg','image','2021-01-21 10:17:32','2021-01-21 10:17:32',NULL),(1907,'4','uploads/all/USG4liM0AMOUe4VFlVosbXNRT2Dg5cuPYWqHmmRd.jpg',9,78298,'jpg','image','2021-01-21 10:17:34','2021-01-21 10:17:34',NULL),(1908,'5.15','uploads/all/3AOMhFY6fgW4oQ6ofQTp938DiLE3C4BWrCCOzR06.jpg',9,79294,'jpg','image','2021-01-21 10:17:34','2021-01-21 10:17:34',NULL),(1909,'5.1','uploads/all/uAu6VOO48k37F8KPmNboOi2saHXSrnBzsTg0LWjd.jpg',9,76393,'jpg','image','2021-01-21 10:17:36','2021-01-21 10:17:36',NULL),(1910,'5.52','uploads/all/4vTH3JPejOQovy3Gb4uBsnqxgO1jL5tE1lyNjIRY.jpg',9,98888,'jpg','image','2021-01-21 10:17:36','2021-01-21 10:17:36',NULL),(1911,'5.25','uploads/all/lAyXqidnFo83sWNuFYW69ChJi2e5fjFk9i59HwbQ.jpg',9,77441,'jpg','image','2021-01-21 10:17:37','2021-01-21 10:17:37',NULL),(1912,'6.1','uploads/all/vhQe8jJ71qfwJsjsLwND5ldSaOZ8D2pSNaz43tpb.jpg',9,83022,'jpg','image','2021-01-21 10:17:38','2021-01-21 10:17:38',NULL),(1913,'5','uploads/all/yRuVdEIbNKwAeBORQ5fjlgv80EK93e5pYQAwPVWP.jpg',9,77889,'jpg','image','2021-01-21 10:17:38','2021-01-21 10:17:38',NULL),(1914,'6.7','uploads/all/umsZJaqWlaCcmG07V8sYEZAJgRH7nbfb7eFA80y8.jpg',9,75340,'jpg','image','2021-01-21 10:17:40','2021-01-21 10:17:40',NULL),(1915,'6.3','uploads/all/kv5H1ehQhMTC1U2Ob1Ct5Hq5GFZXo1tWkoRsUzIu.jpg',9,81875,'jpg','image','2021-01-21 10:17:40','2021-01-21 10:17:40',NULL),(1916,'6.34','uploads/all/rcRWAr6l4OkSkWHVYesfHPOdCKdGZnd1r87qAglt.jpg',9,81490,'jpg','image','2021-01-21 10:17:41','2021-01-21 10:17:41',NULL),(1917,'4.62','uploads/all/AXcyv17m6Fe8rKMFTbH5zc7Z6swSeJPfxtuncD47.jpg',9,78897,'jpg','image','2021-01-21 10:17:42','2021-01-21 10:17:42',NULL),(1918,'5 1.2','uploads/all/CyqQqdCGBuDxWhYDVuxNBv7jW6CJfdswaPScBv7G.jpg',9,93593,'jpg','image','2021-01-21 10:17:42','2021-01-21 10:17:42',NULL),(1919,'7.1','uploads/all/Q1whKiYWJK1nOSdzx5nqN2LDLBSSBCaebIolH4Nq.jpg',9,91779,'jpg','image','2021-01-21 10:17:45','2021-01-21 10:17:45',NULL),(1920,'7.3','uploads/all/WBdit1novEvPHeuQKYpDEm2oTWQMRqY7lvfnTeFN.jpg',9,83743,'jpg','image','2021-01-21 10:17:47','2021-01-21 10:17:47',NULL),(1921,'6','uploads/all/QxLBqioGhQqbocvfab2SrqiMyy1tYCM93sMldDQV.jpg',9,79521,'jpg','image','2021-01-21 10:17:47','2021-01-21 10:17:47',NULL),(1922,'7.7','uploads/all/LDtpaWVaBFHM3kMpM9nQpQnaU27NMkVVxeIxVJYY.jpg',9,82590,'jpg','image','2021-01-21 10:17:48','2021-01-21 10:17:48',NULL),(1923,'6.25','uploads/all/BpbK1KHVmdPPQfJhgRlmJ1uurbiW9mLxA11lZddg.jpg',9,94639,'jpg','image','2021-01-21 10:17:48','2021-01-21 10:17:48',NULL),(1924,'6.66','uploads/all/iE2z5JfZoNryWZBnIXP3DbRtQkCS5MgwQfqOMJ3V.jpg',9,84124,'jpg','image','2021-01-21 10:17:49','2021-01-21 10:17:49',NULL),(1925,'5.3','uploads/all/N9FfZ0tfp3VDuphHgTWccAgR7jAfLHu3aVC8ddxt.jpg',9,79930,'jpg','image','2021-01-21 10:17:50','2021-01-21 10:17:50',NULL),(1926,'7.11','uploads/all/tf3tddEiyvHWDyOChhLwJdAU5QLjXyArZr2XTcMo.jpg',9,137656,'jpg','image','2021-01-21 10:17:50','2021-01-21 10:17:50',NULL),(1927,'7','uploads/all/n5SJPpXBPba63RI6gFZxjlx9mVoqVI6s3ZaP31D8.jpg',9,80719,'jpg','image','2021-01-21 10:17:50','2021-01-21 10:17:50',NULL),(1928,'EW7A7032-min','uploads/all/E569SI39vFtuj99pN72sGRwltASoutI8mr1dbFWM.jpg',9,34976,'jpg','image','2021-01-21 10:18:39','2021-01-21 10:18:39',NULL),(1929,'EW7A7036-min','uploads/all/ntPZHndSPCOvgvHnUyVKXT5NQTpZzWjfeKtNT47k.jpg',9,192558,'jpg','image','2021-01-21 10:18:40','2021-01-21 10:18:40',NULL),(1930,'EW7A7037-min','uploads/all/1IroSJZLmN2XxqUXhOuVAoAVe5LwGa6bYRjxm6we.jpg',9,28526,'jpg','image','2021-01-21 10:23:44','2021-01-21 10:23:44',NULL),(1931,'EW7A7041-min','uploads/all/rMWs7rhszVfmYdiNa9vVaU4pdCRbcJR04Nt9CgBg.jpg',9,172120,'jpg','image','2021-01-21 10:23:46','2021-01-21 10:23:46',NULL),(1932,'EW7A7043-min','uploads/all/7Ik4ytpiebknBCJ3NkNfzaHK6GQs3bsZ8kt4fOH0.jpg',9,29908,'jpg','image','2021-01-21 10:27:21','2021-01-21 10:27:21',NULL),(1933,'EW7A7047-min','uploads/all/W2iKOIihCc6Avs7s78vUMjeOxNGJIfEnoDMpYjUc.jpg',9,163706,'jpg','image','2021-01-21 10:27:22','2021-01-21 10:27:22',NULL),(1934,'EW7A7048-min','uploads/all/1eFGvEVDZH07hfjq8jWaQdrgjVNFVYKXDUZrvA66.jpg',9,45229,'jpg','image','2021-01-21 10:29:16','2021-01-21 10:29:16',NULL),(1935,'EW7A7053-min','uploads/all/gqPzvTunpzcmD4Q1C1rdj5mbplEiAnJJzlyjpGBn.jpg',9,74355,'jpg','image','2021-01-21 10:29:16','2021-01-21 10:29:16',NULL),(1936,'EW7A7057-min','uploads/all/DJa3jXQC1gB4K2wrJXCDLzKWfeGf4z811NtPXH1O.jpg',9,54888,'jpg','image','2021-01-21 10:34:41','2021-01-21 10:34:41',NULL),(1937,'EW7A7063-min','uploads/all/eUwm6v5zN9XgnpXm1P4iOUv188ozmiLRUjvmFjdK.jpg',9,467433,'jpg','image','2021-01-21 10:34:45','2021-01-21 10:34:45',NULL),(1938,'EW7A7070-min','uploads/all/qdw3Ob8InzIO34SFPtoUvOtrZIGX4RCjdEAfVpgg.jpg',9,111153,'jpg','image','2021-01-21 10:36:24','2021-01-21 10:36:24',NULL),(1939,'EW7A7064-min','uploads/all/hMc8fYwqlPKrQDwuzdmc4LIEiKJllb7JY6frOXMc.jpg',9,53002,'jpg','image','2021-01-21 10:36:33','2021-01-21 10:36:33',NULL),(1940,'01','uploads/all/7suxX57T7bTiqGDsxdswvALWb6F0u54DGvuCTXLM.jpg',9,103063,'jpg','image','2021-01-21 10:59:04','2021-01-21 10:59:04',NULL),(1941,'02','uploads/all/yBjIXh7IZi0qkuIcqLmVAMWai6CL89QrBqIOK3qC.jpg',9,139193,'jpg','image','2021-01-21 10:59:05','2021-01-21 10:59:05',NULL),(1942,'07','uploads/all/MIjO5HE28HTIAlnRy0WCTq5NkyPNzXa59U9tHlOW.jpg',9,88389,'jpg','image','2021-01-21 11:07:12','2021-01-21 11:07:12',NULL),(1943,'06','uploads/all/BGdYjieSa2FGZpb6oo0c0kaAe1ZWRzU1sLT1OfcT.jpg',9,182663,'jpg','image','2021-01-21 11:07:13','2021-01-21 11:07:13',NULL),(1944,'08','uploads/all/YwEhoxGgYwzTJvSmN4kjB2GVoEH5FRd41tDiCvyK.jpg',9,214760,'jpg','image','2021-01-21 11:10:57','2021-01-21 11:10:57',NULL),(1945,'09','uploads/all/LSOjOEM9OXBmnrFhIwRvdVoE1MuZOzd0LE1q0RfJ.jpg',9,388537,'jpg','image','2021-01-21 11:10:59','2021-01-21 11:10:59',NULL),(1946,'011','uploads/all/Ax53Oh14N7yxFEdLpEKxFOzDWW8JaFOhvSYnsgup.jpg',9,228196,'jpg','image','2021-01-21 11:14:35','2021-01-21 11:14:35',NULL),(1947,'010','uploads/all/OVB9a8HVT3wantZNVT90FhnzoLQO7Whcyw5Fkkvv.jpg',9,854068,'jpg','image','2021-01-21 11:14:41','2021-01-21 11:14:41',NULL),(1948,'012','uploads/all/kgbnvQ7vduHxFOehgdsUa24pAEvfzUQCMDFz2W3J.jpg',9,532408,'jpg','image','2021-01-21 11:17:51','2021-01-21 11:17:51',NULL),(1949,'013','uploads/all/lWj7kuSVo7WWRWKENBOmSMK0TmFQlFTFCFf4WuHv.jpg',9,201897,'jpg','image','2021-01-21 11:17:52','2021-01-21 11:17:52',NULL),(1950,'014','uploads/all/7yn5Ka6fKluhWSBMEXdZmC6Mg4R5myO0zYWs6rA8.jpg',9,582730,'jpg','image','2021-01-21 11:20:10','2021-01-21 11:20:10',NULL),(1951,'015','uploads/all/dntiSaQF1XMOtSCDXYYE02IKB2BW6oN0gNzLgN7k.jpg',9,1199143,'jpg','image','2021-01-21 11:20:12','2021-01-21 11:20:12',NULL),(1952,'017','uploads/all/nEVH8d7WAtZ3evp7Lk7PEyePECsJLtsZB0W61462.jpg',9,251699,'jpg','image','2021-01-21 11:22:20','2021-01-21 11:22:20',NULL),(1953,'016','uploads/all/A1H4uA8Hagodvrq3mVUl2aJNI5HtivwU0CxX6yre.jpg',9,952686,'jpg','image','2021-01-21 11:22:28','2021-01-21 11:22:28',NULL),(1954,'018','uploads/all/EAgUzqJEjZqPzLdwpNXG09Flt3AGvIOjwdaN35Wt.jpg',9,138474,'jpg','image','2021-01-21 11:24:46','2021-01-21 11:24:46',NULL),(1955,'019','uploads/all/EtL1OMsczkfVHJjbDmtRr60VcQRoUf6GitfW1UPe.jpg',9,135366,'jpg','image','2021-01-21 11:24:46','2021-01-21 11:24:46',NULL),(1956,'020','uploads/all/iOC6EwPt34PvJBtnJwfQfU4nUwc8LxpD4DKKHVlK.jpg',9,296577,'jpg','image','2021-01-21 11:27:06','2021-01-21 11:27:06',NULL),(1957,'022','uploads/all/x6T4aRg6SA1qnpkWLgRVx12dlwIN8MTSfySoakUV.jpg',9,101071,'jpg','image','2021-01-21 11:29:33','2021-01-21 11:29:33',NULL),(1958,'021','uploads/all/lRNzT904pmQj0VMf5HlUMTrPM5S8nAl3Y0H5tfts.jpg',9,147328,'jpg','image','2021-01-21 11:29:33','2021-01-21 11:29:33',NULL),(1959,'023','uploads/all/VMDfUerdxLWSqWVw9ZRvD2qkZkBbNDzSjOWsjnnd.jpg',9,90340,'jpg','image','2021-01-21 11:32:07','2021-01-21 11:32:07',NULL),(1960,'024','uploads/all/vEd8wrvMuvnSIUxwuj9VzGtU7MiErGPDwEUmLKjf.jpg',9,109818,'jpg','image','2021-01-21 11:32:07','2021-01-21 11:32:07',NULL),(1961,'025','uploads/all/tczvf56M3YWCqAiNHREU6HTY1RgFD4yfGjhPrVO3.jpg',9,143610,'jpg','image','2021-01-21 11:34:15','2021-01-21 11:34:15',NULL),(1962,'026','uploads/all/C7lRZgWMu10xpE057nyOJNrmF7qGB7bY4USSRChr.jpg',9,117529,'jpg','image','2021-01-21 11:34:15','2021-01-21 11:34:15',NULL),(1963,'028','uploads/all/VzynPBM2DphNdLnO1XB8fsLl50bgLrbErujbhsDM.jpg',9,135248,'jpg','image','2021-01-21 11:38:16','2021-01-21 11:38:16',NULL),(1964,'027','uploads/all/gPdwFpkBM3ODCsogUtsumqmhpYLPuFOLiIWffoR0.jpg',9,167107,'jpg','image','2021-01-21 11:38:16','2021-01-21 11:38:16',NULL),(1965,'029','uploads/all/3yibe9stviJJwyOJdQ7PW95aMzpFbJNk6kZjskTR.jpg',9,86462,'jpg','image','2021-01-21 11:40:18','2021-01-21 11:40:18',NULL),(1966,'030','uploads/all/qjofvkzCvwzftwBlFPuKfLiY34g0cND4bIoTRgTz.jpg',9,84991,'jpg','image','2021-01-21 11:40:19','2021-01-21 11:40:19',NULL),(1967,'031','uploads/all/1hS4K9lgYYrNSIWSYXJPLMTbsnTKjswwg75kK1g8.jpg',9,122067,'jpg','image','2021-01-21 11:40:19','2021-01-21 11:40:19',NULL),(1968,'032','uploads/all/scIsNvXq7QEpOYxE49Isx8tuPNKR8bunSV3zWOKs.jpg',9,116233,'jpg','image','2021-01-21 11:43:16','2021-01-21 11:43:16',NULL),(1969,'033','uploads/all/S6Ygt8AWeGvIOHWdrVe30fX3TLOBCpTnDeumfB8k.jpg',9,68844,'jpg','image','2021-01-21 11:43:17','2021-01-21 11:43:17',NULL),(1970,'035','uploads/all/UcTQ705fS8qJK8miSzQ9VSnH4eY2vSGaUM7cw9ry.jpg',9,104774,'jpg','image','2021-01-21 11:44:53','2021-01-21 11:44:53',NULL),(1971,'034','uploads/all/O2THw6eQrBY9BexSsqGk2xVxngSvbZlwIL4FqiJv.jpg',9,148270,'jpg','image','2021-01-21 11:44:54','2021-01-21 11:44:54',NULL),(1972,'036','uploads/all/wdKl2HLfFvGDfsGGFS4g1krxCxPQ76a0u2ghhe2w.jpg',9,106912,'jpg','image','2021-01-21 11:46:47','2021-01-21 11:46:47',NULL),(1973,'037','uploads/all/IgmmfTIxKFZ0IFrkxelUXw7szbVvRYoz3XyCdmbu.jpg',9,135695,'jpg','image','2021-01-21 11:46:47','2021-01-21 11:46:47',NULL),(1974,'EW7A4986','uploads/all/BjhjqeaZnXYll66We2UIlZCSPcRPC03Aoas0jzJm.jpg',9,922271,'jpg','image','2021-01-21 12:05:45','2021-01-21 12:05:45',NULL),(1975,'EW7A4989','uploads/all/K5VcR2kR7V68sTc7N2uQ8BgT9mptkXKqdZ6F3SRs.jpg',9,1608458,'jpg','image','2021-01-21 12:05:52','2021-01-21 12:05:52',NULL),(1976,'EW7A4987','uploads/all/aXM8bWKxfCOXosuewiWVyjVPXWj2s73xhTcTlBHZ.jpg',9,1479649,'jpg','image','2021-01-21 12:05:55','2021-01-21 12:05:55',NULL),(1977,'EW7A4985','uploads/all/75Ra1fk3GkmYN0dniWiKMYrYQ0kFZ6NvVHs6zVF5.jpg',9,3064189,'jpg','image','2021-01-21 12:06:09','2021-01-21 12:06:09',NULL),(1978,'siz chats-06','uploads/all/y6JtZXQwrJ7GulhVuzbzwJFc7rwkzTJios0r1Uqb.jpg',9,460353,'jpg','image','2021-01-21 12:06:53','2021-01-21 12:06:53',NULL),(1979,'Final Velburry1111-02','uploads/all/jT4Gm9b2nAwEaE0cLTPNJzlV39OEX61tkWiPnVuM.png',9,40481,'png','image','2021-01-22 03:17:05','2021-01-22 03:17:05',NULL),(1980,'240-03','uploads/all/cCfdfBVG8Kz3xHdVPFWm6VBjOqYfSIRGio9wiPCj.png',9,34300,'png','image','2021-01-22 05:12:37','2021-01-22 05:12:37',NULL),(1981,'56-min','uploads/all/eI2e3PxuvYRPo6Ogb2CbazGq6TTmLLVIKgstLfD0.jpg',9,795002,'jpg','image','2021-01-22 07:27:51','2021-01-22 07:27:51',NULL),(1982,'1-min','uploads/all/2mtTM1e12KCvK2IBlq48XYNS6OWS3BFzrDFfGjuJ.jpg',9,579459,'jpg','image','2021-01-22 07:27:52','2021-01-22 07:27:52',NULL),(1983,'3-min','uploads/all/riDn7MTJuQ8VGGb2xMiewhdLNckYyolMREd9q4b2.jpg',9,555198,'jpg','image','2021-01-22 07:29:35','2021-01-22 07:29:35',NULL),(1984,'2-min','uploads/all/DSaUTldcPGY3CmbFkoJYPVGBtZpkBAgvIRYu1FFq.jpg',9,1673173,'jpg','image','2021-01-22 07:29:42','2021-01-22 07:29:42',NULL),(1985,'4-min','uploads/all/hjcvk2o2ipDh26CVXI9R6yDsAvx09vApepiiWHd7.jpg',9,494892,'jpg','image','2021-01-22 07:30:40','2021-01-22 07:30:40',NULL),(1986,'5-min','uploads/all/0yvq3kBTIiaoGbHIrxg4Dar65CMWiP9I0ke6Ta1b.jpg',9,402245,'jpg','image','2021-01-22 07:30:41','2021-01-22 07:30:41',NULL),(1987,'7-min','uploads/all/cFraxOgrotnWicTgmNLjjBSWbaUXsok8T3uNpX9Q.jpg',9,224136,'jpg','image','2021-01-22 07:32:48','2021-01-22 07:32:48',NULL),(1988,'6-min','uploads/all/gk7IHWDx0ADOEBCLwgeVlNqrt4cUTOteeZJ24HM3.jpg',9,662532,'jpg','image','2021-01-22 07:32:51','2021-01-22 07:32:51',NULL),(1989,'8-min','uploads/all/JcJEIBUAojKFlDAbn89px3CrCfzBRdYrutbfLad7.jpg',9,734421,'jpg','image','2021-01-22 07:33:59','2021-01-22 07:33:59',NULL),(1990,'9-min','uploads/all/nTvcSe9k8C8frhmUnwDPeSrQw538FL5wS2cPlesK.jpg',9,196875,'jpg','image','2021-01-22 07:33:59','2021-01-22 07:33:59',NULL),(1991,'10-min','uploads/all/2mvXPHSvxqOyi3fXoLvx2nQpaJwzq7nRX0MY85r5.jpg',9,821024,'jpg','image','2021-01-22 07:44:50','2021-01-22 07:44:50',NULL),(1992,'11-min','uploads/all/s8ETOKutV5HKlmRKd12oR6sefbRoMfv81aj7kOyY.jpg',9,350098,'jpg','image','2021-01-22 07:44:51','2021-01-22 07:44:51',NULL),(1993,'13-min','uploads/all/BfS7lf16na2kCvshkol24zf53CzKrxM25vD9i9j5.jpg',9,133582,'jpg','image','2021-01-22 07:47:57','2021-01-22 07:47:57',NULL),(1994,'12-min','uploads/all/SPIR2vlbblTDrsTa2aCOaupFl40tmHewFXnzInKE.jpg',9,776570,'jpg','image','2021-01-22 07:47:58','2021-01-22 07:47:58',NULL),(1995,'15-min','uploads/all/uyFtTRftJVWnYw6wwk4FjWQ9k1Cye5vlqeNpNEJJ.jpg',9,929931,'jpg','image','2021-01-22 07:49:12','2021-01-22 07:49:12',NULL),(1996,'14-min','uploads/all/joOvTLmv1zrtkHzRGfQHqGaJwnYLAo84lXtuBu1i.jpg',9,1626543,'jpg','image','2021-01-22 07:49:12','2021-01-22 07:49:12',NULL),(1997,'17-min','uploads/all/BiXeRhfSB4DmdeYvPyRBMPgKx2YhGPAA3DP4e1VF.jpg',9,1549751,'jpg','image','2021-01-22 07:50:51','2021-01-22 07:50:51',NULL),(1998,'16-min','uploads/all/WklHbLJk3e1jjUstSHKU6FWIBBECZzvwCO5HFq4k.jpg',9,1344352,'jpg','image','2021-01-22 07:50:51','2021-01-22 07:50:51',NULL),(1999,'18-min','uploads/all/QuFYWm2qASYotr22F9djIBMBZSnXscyNBtf6pPlP.jpg',9,678331,'jpg','image','2021-01-22 07:52:06','2021-01-22 07:52:06',NULL),(2000,'19-min','uploads/all/zvHq9BRgwNB2YYIDR5hvQj8qYSAeFg79nAclXFf4.jpg',9,964674,'jpg','image','2021-01-22 07:52:06','2021-01-22 07:52:06',NULL),(2001,'21-min','uploads/all/cHgFmukl2EASL8B2D9PZq1jh2pPESp4kwZfzCVcg.jpg',9,324924,'jpg','image','2021-01-22 07:53:08','2021-01-22 07:53:08',NULL),(2002,'20-min','uploads/all/z7A4e5G3AA3aTfQ7NzDYagAJxkhkcA7ZN67xzqXW.jpg',9,851245,'jpg','image','2021-01-22 07:53:08','2021-01-22 07:53:08',NULL),(2003,'22-min','uploads/all/GEulmKM6KWVCWRN9JRTvnFS6cYiKyP2Il76rS6fy.jpg',9,632235,'jpg','image','2021-01-22 07:53:52','2021-01-22 07:53:52',NULL),(2004,'23-min','uploads/all/9AfBFA80r8XDYahiS833edLYVliQC0s7x5uxYN6D.jpg',9,304994,'jpg','image','2021-01-22 07:53:52','2021-01-22 07:53:52',NULL),(2005,'24-min','uploads/all/BSiMW5Dye1ZlvkhrFcgkkYW45z6FEqm2OulbZbgk.jpg',9,584109,'jpg','image','2021-01-22 07:54:41','2021-01-22 07:54:41',NULL),(2006,'25-min','uploads/all/katxYf2V0ISDOMmKXduzLMBLKAc8ibLH25FYnwir.jpg',9,362796,'jpg','image','2021-01-22 07:54:43','2021-01-22 07:54:43',NULL),(2007,'27-min','uploads/all/w3iWb6JiM8grUyqLXeE7biFkxV7lAlNeWaR5Pwum.jpg',9,849384,'jpg','image','2021-01-22 07:56:06','2021-01-22 07:56:06',NULL),(2008,'26-min','uploads/all/Y6WDaHA7zKQVjUPlSUAg9sOZKg3YzYAmtm09GWx8.jpg',9,1196279,'jpg','image','2021-01-22 07:56:09','2021-01-22 07:56:09',NULL),(2009,'28-min','uploads/all/ER4yAwYNbbmVZ8J4STtCuWFuaUoCz4MJb5Odzf9n.jpg',9,406050,'jpg','image','2021-01-22 07:57:01','2021-01-22 07:57:01',NULL),(2010,'29-min','uploads/all/Jgf3iVrcgpu3XMJbrbKMeGey9b8OXhnbKEam68dZ.jpg',9,220116,'jpg','image','2021-01-22 07:57:01','2021-01-22 07:57:01',NULL),(2011,'31-min','uploads/all/2FuR50LXGqLcSMk23FI9gnK6o5mORWKgNyasjiNQ.jpg',9,232344,'jpg','image','2021-01-22 09:52:14','2021-01-22 09:52:14',NULL),(2012,'30-min','uploads/all/cmzcHMfH8A3bw3kOCBxTjNML2oiYofHDhLSS4Pml.jpg',9,748876,'jpg','image','2021-01-22 09:52:15','2021-01-22 09:52:15',NULL),(2013,'33-min','uploads/all/dbUGIWKoWRlwMtsHFdVm5Y9Ko4YBJnCpiscVkWYF.jpg',9,270666,'jpg','image','2021-01-22 09:54:28','2021-01-22 09:54:28',NULL),(2014,'32-min','uploads/all/F51TAkLABzuIiqfpTBeDBbjncZsyws4Zscvj4dIH.jpg',9,917417,'jpg','image','2021-01-22 09:54:29','2021-01-22 09:54:29',NULL),(2015,'34-min','uploads/all/6ow9X66EHs77RST2yKj4R8xzSn85AHkNT6sVurAU.jpg',9,744945,'jpg','image','2021-01-22 13:27:02','2021-01-22 13:27:02',NULL),(2016,'35-min','uploads/all/SBd6hWNpDqk0AeLDGuxIHI9Hbwc9ZHLP4PJaoXq6.jpg',9,882074,'jpg','image','2021-01-22 13:27:03','2021-01-22 13:27:03',NULL),(2017,'37-min','uploads/all/ud0tWqyiDrsPfCnR34DBnwAAWoCHk6IqDX6cLpan.jpg',9,218196,'jpg','image','2021-01-22 13:29:23','2021-01-22 13:29:23',NULL),(2018,'36-min','uploads/all/gMIbcZJUmcSU4sMVlRhQDftrOwAQFwE4sT8V6lWp.jpg',9,599849,'jpg','image','2021-01-22 13:29:28','2021-01-22 13:29:28',NULL),(2019,'39-min','uploads/all/cQW0NAPDjAENiiSsITg6yoXKAGyR8NtQQG58Zya6.jpg',9,210135,'jpg','image','2021-01-22 13:49:25','2021-01-22 13:49:25',NULL),(2020,'38-min','uploads/all/EU6goRpe9P3mgKBy7dpBvaXi0ZHbXAox4RxdtmeI.jpg',9,785875,'jpg','image','2021-01-22 13:49:33','2021-01-22 13:49:33',NULL),(2021,'41','uploads/all/cFzLZp4gNPpyB2oVHAYJuDOzyI31dIztg2FeA6AK.jpg',9,152258,'jpg','image','2021-01-22 13:53:01','2021-01-22 13:53:01',NULL),(2022,'40-min','uploads/all/KDC4GUCTwZI3AMx5na8LQvu6nFFQMEGC555dLmj4.jpg',9,1240524,'jpg','image','2021-01-22 13:53:21','2021-01-22 13:53:21',NULL),(2023,'43','uploads/all/inOO4578U3DyzIN9XflT34OC5m5EanVuoYmwj6q0.jpg',9,159781,'jpg','image','2021-01-22 13:54:13','2021-01-22 13:54:13',NULL),(2024,'42','uploads/all/3qL1HZT27FjuvymJT46SrvK3ZGZX21WVeMt8n6tx.jpg',9,422301,'jpg','image','2021-01-22 13:54:17','2021-01-22 13:54:17',NULL),(2025,'45','uploads/all/EtnjDOXUpR34G5rkS38AOr4asX9GO2l6UI2wUBCQ.jpg',9,198593,'jpg','image','2021-01-22 13:58:26','2021-01-22 13:58:26',NULL),(2026,'44','uploads/all/LGcLYnOKyGgWRPfveFqv5xiqEwiTCc4pkRVUoFjA.jpg',9,533123,'jpg','image','2021-01-22 13:58:30','2021-01-22 13:58:30',NULL),(2027,'47','uploads/all/EgY2DBs8lpbk2711kPjItZNQ9W5L1gQfPLm0uftC.jpg',9,214618,'jpg','image','2021-01-22 13:59:38','2021-01-22 13:59:38',NULL),(2028,'46','uploads/all/hNWu25PMFOIPwcfd8VzjIhdjYewvmTDsZeVrw5as.jpg',9,1357203,'jpg','image','2021-01-22 14:00:15','2021-01-22 14:00:15',NULL),(2029,'48','uploads/all/RPKKxTwk6eVg9TAcAJ1tzkCvApcUh01xI9OUsGDS.jpg',9,445991,'jpg','image','2021-01-22 14:04:29','2021-01-22 14:04:29',NULL),(2030,'50','uploads/all/krIZoL839jUbxHbE5Am48uLQLRnnobDutpg0xDBA.jpg',9,151856,'jpg','image','2021-01-22 14:07:32','2021-01-22 14:07:32',NULL),(2031,'49','uploads/all/vhkWPv6ILpMljw7xxRV28Lrjbcy83aZ6oYvkmvMK.jpg',9,922715,'jpg','image','2021-01-22 14:07:42','2021-01-22 14:07:42',NULL),(2032,'52','uploads/all/Our0W809b4Ob8XmjPnkUmiiAcBJ33BxcwmJ5bNp2.jpg',9,156922,'jpg','image','2021-01-22 14:09:37','2021-01-22 14:09:37',NULL),(2033,'51','uploads/all/vR0Lbl8Ho1DMWNIrxol1JGJLvnczqj4VVY9v6bju.jpg',9,1615352,'jpg','image','2021-01-22 14:10:07','2021-01-22 14:10:07',NULL),(2034,'54','uploads/all/HM41mDRCJdFJWgnllNbMgkpbmHPMIlZxNBAuffug.jpg',9,151616,'jpg','image','2021-01-22 14:11:02','2021-01-22 14:11:02',NULL),(2035,'53','uploads/all/HiOBBhgPo0gRZqbErhl9PtTfrNR0Xj1exlHoWVbV.jpg',9,432912,'jpg','image','2021-01-22 14:11:05','2021-01-22 14:11:05',NULL),(2036,'57-min','uploads/all/9ArQXeGsuJaXHUHqmgrpPAjvxBQ4SjUsHW8bxxMB.jpg',9,290143,'jpg','image','2021-01-22 14:11:56','2021-01-22 14:11:56',NULL),(2037,'55','uploads/all/uTDyB4kcER9ohmQTFDgaVogxWHTUYSZZbf24KT1Q.jpg',9,935171,'jpg','image','2021-01-22 14:12:06','2021-01-22 14:12:06',NULL),(2038,'chart-01','uploads/all/QpkL9fvPOWs9Iz7op6ynDIwByQpoWNCcvfrFjF3h.jpg',9,467245,'jpg','image','2021-01-22 14:17:49','2021-01-22 14:17:49',NULL),(2039,'chart-02','uploads/all/7UZzZKMCSXdRwxVi4CEzXdNyA50jSmeXvW6gCWvm.jpg',9,519221,'jpg','image','2021-01-22 14:17:52','2021-01-22 14:17:52',NULL),(2040,'siz chats-05','uploads/all/daNztRX3rUOHbfMvAuV322nT4JIAcPcXXScrwHas.jpg',9,556929,'jpg','image','2021-01-22 14:17:55','2021-01-22 14:17:55',NULL),(2041,'EW7A4986','uploads/all/txPX6m7tBdMmI02F94B21gmpNnxRqRidhjmt6pBt.jpg',9,922271,'jpg','image','2021-01-23 03:50:19','2021-01-23 03:50:19',NULL),(2042,'EW7A4989','uploads/all/U0sXasXbrMKKMy1TKBiPzicfI68Lj90qkUO42svc.jpg',9,1608458,'jpg','image','2021-01-23 03:50:27','2021-01-23 03:50:27',NULL),(2043,'EW7A4987','uploads/all/icho8FwXnNyKiVWauZlGPZcj1MsTV2V5YbUqHTHb.jpg',9,1479649,'jpg','image','2021-01-23 03:50:28','2021-01-23 03:50:28',NULL),(2044,'EW7A4985','uploads/all/Gz1MtJxEyUV745UoJ0M3DDKO9MXTFimx8IdwDVB5.jpg',9,3064189,'jpg','image','2021-01-23 03:50:45','2021-01-23 03:50:45',NULL),(2045,'EW7A5032','uploads/all/tpIemNQpJFkZjzRGy4JfPqI6PsJz3hkfC3fOoi1T.jpg',9,850244,'jpg','image','2021-01-23 03:54:16','2021-01-23 03:54:16',NULL),(2046,'EW7A5038','uploads/all/wtcryBuviiDtu3jY9skZEaSYvCn1mfKBr2BiNdsl.jpg',9,1314576,'jpg','image','2021-01-23 03:54:33','2021-01-23 03:54:33',NULL),(2047,'EW7A5037','uploads/all/AoS0vnegpraQfTdmer0qtHo1PPhLDWWR0aAEzVst.jpg',9,1499516,'jpg','image','2021-01-23 03:54:35','2021-01-23 03:54:35',NULL),(2048,'EW7A5030','uploads/all/KgU33hXfjGfal1Zg2TVbrT8fsR5Vw3q87YADJHmT.jpg',9,3600528,'jpg','image','2021-01-23 03:55:07','2021-01-23 03:55:07',NULL),(2049,'EW7A5007','uploads/all/xmkdT9y0xHHgtIOZpHTaBE5ZEiBXS2ffyA711fZy.jpg',9,800988,'jpg','image','2021-01-23 04:12:06','2021-01-23 04:12:06',NULL),(2050,'EW7A5001','uploads/all/0BTzaZkNVHUSqwR8LP53MfwHxYHPNIlmCDNXJHuv.jpg',9,2318138,'jpg','image','2021-01-23 04:12:33','2021-01-23 04:12:33',NULL),(2051,'EW7A5009','uploads/all/mmNR4teefkHJLNFw4bixzf7g9NlU9jdeQmnITFUd.jpg',9,1394615,'jpg','image','2021-01-23 04:12:36','2021-01-23 04:12:36',NULL),(2052,'EW7A5010','uploads/all/wN0bgO4JevzlapCa8ho2FTXLhizJhW5e4k0fjH4H.jpg',9,1351785,'jpg','image','2021-01-23 04:12:38','2021-01-23 04:12:38',NULL),(2053,'EW7A5023','uploads/all/czchltH9PBxCl9Zo0gADCQWGKF91s4ozhVRynGei.jpg',9,676044,'jpg','image','2021-01-23 04:15:28','2021-01-23 04:15:28',NULL),(2054,'EW7A5027','uploads/all/jyFSUNICBq9fZJwUdqnOM6TpBMbnBX7SfJs5k5NY.jpg',9,1209771,'jpg','image','2021-01-23 04:15:48','2021-01-23 04:15:48',NULL),(2055,'EW7A5025','uploads/all/2EwkmmstPAyQxolRsls1Pg8A4hDEPO2xu0SQxUEj.jpg',9,1274028,'jpg','image','2021-01-23 04:15:53','2021-01-23 04:15:53',NULL),(2056,'EW7A5022','uploads/all/yJknmequZs19tHz4LIRd0Y39HHeCoWdznev0dJLp.jpg',9,2024301,'jpg','image','2021-01-23 04:15:57','2021-01-23 04:15:57',NULL),(2057,'B1','uploads/all/FVDNzC5OwtjWoFN5MtKnTYL5KSFQv123GcpkEQwK.jpg',9,759269,'jpg','image','2021-01-23 04:49:15','2021-01-23 04:49:15',NULL),(2058,'B2','uploads/all/fPbkHAqu2P0sBRewsD23cGh00vSBpGiol55cI0kn.jpg',9,1474197,'jpg','image','2021-01-23 04:49:16','2021-01-23 04:49:16',NULL),(2059,'B3','uploads/all/oijyItO5e2ej4S2pDG4kAFiIwPmrBsnvYeZIEXGo.jpg',9,13794357,'jpg','image','2021-01-23 04:49:22','2021-01-23 04:49:22',NULL),(2060,'EW7A6351','uploads/all/vbeSoTeE9Tbr0vxZjLp3QfVY40kyycjnmfOMB9d1.jpg',9,533155,'jpg','image','2021-01-23 05:31:52','2021-01-23 05:31:52',NULL),(2061,'EW7A6421','uploads/all/tBzFNcepId9XpYMxBXtan29OoakVJMfnn0wa3OWT.jpg',9,953155,'jpg','image','2021-01-23 05:32:15','2021-01-23 05:32:15',NULL),(2062,'EW7A6353','uploads/all/M35pA1td6NTEKgkV5gPNtTry3c5FI2bw9VeK8OBR.jpg',9,2202181,'jpg','image','2021-01-23 05:32:26','2021-01-23 05:32:26',NULL),(2063,'EW7A6349','uploads/all/FsXlwsFVdyRSvKk5qlJFwZjXKI2httAJo0lKo0Pt.jpg',9,1817034,'jpg','image','2021-01-23 05:32:28','2021-01-23 05:32:28',NULL),(2064,'5R1ViRM7aI2rmz3teSQpZJH3CcoRxstQ5jBiUbg9 (1)','uploads/all/EgpWmEh1lYImkzjfEQkfjP7noroVKNLXEm300hKs.jpg',9,41695,'jpeg','image','2021-01-23 07:33:15','2021-01-23 07:33:15',NULL),(2065,'eqp0XEMPAEtUnEJv9U8xkNWq51IrHlHCi3JGboom','uploads/all/mwNdWLWZvKKZ8Bnb2QvnfAVtIZVCTMA2cYNNdjBO.png',9,42043,'png','image','2021-01-23 07:33:55','2021-01-23 07:33:55',NULL),(2066,'TgLNsJCP3DKxXJCPskrqrYMz4aRvdVxUu63x8DNn (1)','uploads/all/ucytpi1QQP8VeuvmSbfAkBJhOxVYYyGu9SvOihce.png',9,75027,'png','image','2021-01-23 07:33:56','2021-01-23 07:33:56',NULL),(2067,'NjxerjN6BhFsCAZngwfCmSdhfRd2dIG9unPwreex','uploads/all/xpydGucNBCbDs0GXLsYQAeodndegCOH2whCUh51k.jpg',9,57558,'jpeg','image','2021-01-23 07:35:56','2021-01-23 07:35:56',NULL),(2068,'tB52ZwVEM8ckBqd70AtwjpxL2Ohp9RyvaLwPauui (1)','uploads/all/IBUqaeOB078LwLTzHHBKKqjcJ5uQxMUfYwRLHmQv.jpg',9,55559,'jpeg','image','2021-01-23 07:35:57','2021-01-23 07:35:57',NULL);
/*!40000 ALTER TABLE `uploads` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `users`
--

DROP TABLE IF EXISTS `users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `users` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `referred_by` int(11) DEFAULT NULL,
  `provider_id` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
  `user_type` varchar(10) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'customer',
  `name` varchar(191) COLLATE utf8_unicode_ci NOT NULL,
  `email` varchar(191) COLLATE utf8_unicode_ci DEFAULT NULL,
  `email_verified_at` timestamp NULL DEFAULT NULL,
  `verification_code` text COLLATE utf8_unicode_ci,
  `new_email_verificiation_code` text COLLATE utf8_unicode_ci,
  `password` varchar(191) COLLATE utf8_unicode_ci DEFAULT NULL,
  `remember_token` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
  `avatar` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL,
  `avatar_original` varchar(256) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address` varchar(300) COLLATE utf8_unicode_ci DEFAULT NULL,
  `country` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL,
  `city` varchar(30) COLLATE utf8_unicode_ci DEFAULT NULL,
  `postal_code` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
  `phone` varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,
  `balance` double(20,2) NOT NULL DEFAULT '0.00',
  `banned` tinyint(4) NOT NULL DEFAULT '0',
  `referral_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `customer_package_id` int(11) DEFAULT NULL,
  `remaining_uploads` int(11) DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `users_email_unique` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `users`
--

LOCK TABLES `users` WRITE;
/*!40000 ALTER TABLE `users` DISABLE KEYS */;
INSERT INTO `users` (`id`, `referred_by`, `provider_id`, `user_type`, `name`, `email`, `email_verified_at`, `verification_code`, `new_email_verificiation_code`, `password`, `remember_token`, `avatar`, `avatar_original`, `address`, `country`, `city`, `postal_code`, `phone`, `balance`, `banned`, `referral_code`, `customer_package_id`, `remaining_uploads`, `created_at`, `updated_at`) VALUES (3,NULL,NULL,'seller','Mr. Seller','seller@example.com','2018-12-11 18:00:00',NULL,NULL,'$2y$10$eUKRlkmm2TAug75cfGQ4i.WoUbcJ2uVPqUlVkox.cv4CCyGEIMQEm','1zoU4eQxnOC5yxRWLsTzMNBPpJuOvTk4g3GMUVYIrbGijiXHOfIlFq0wHrIn','https://lh3.googleusercontent.com/-7OnRtLyua5Q/AAAAAAAAAAI/AAAAAAAADRk/VqWKMl4f8CI/photo.jpg?sz=50',NULL,'Demo address','US','Demo city','1234',NULL,0.00,0,'3dLUoHsR1l',NULL,NULL,'2018-10-07 04:42:57','2020-03-05 01:33:22'),(8,NULL,NULL,'customer','Mr. Customer','customer@example.com','2018-12-11 18:00:00',NULL,NULL,'$2y$10$eUKRlkmm2TAug75cfGQ4i.WoUbcJ2uVPqUlVkox.cv4CCyGEIMQEm','9ndcz5o7xgnuxctJIbvUQcP41QKmgnWCc7JDSnWdHOvipOP2AijpamCNafEe','https://lh3.googleusercontent.com/-7OnRtLyua5Q/AAAAAAAAAAI/AAAAAAAADRk/VqWKMl4f8CI/photo.jpg?sz=50',NULL,'Demo address','US','Demo city','1234',NULL,0.00,0,'8zJTyXTlTT',NULL,NULL,'2018-10-07 04:42:57','2020-03-03 04:26:11'),(9,NULL,NULL,'admin','admin','velburry@gmail.com','2021-01-07 03:01:53',NULL,NULL,'$2y$10$Slwni3DBFmb7w09FuZbmOOile9eNnxhWmM4nSyHqPdQ5j1uRfGBJq','HauF8J6bgyKVtjIjdG49GFjBAZrmktz4xP2W2oL3uFGVrw815gAmWtNy1fZr',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.00,0,NULL,NULL,0,'2021-01-07 03:04:53','2021-01-07 03:04:53'),(10,NULL,'105319938985640611649','customer','Hafiz Usman Aftab','hmusman.it@gmail.com','2021-01-21 06:01:12',NULL,NULL,NULL,'XKXrLPfQwtXSqllRlT3MAq6AuxtxDg2mQsJ3Xwrb9RBAxbCnsTfOYL0G1okc',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.00,0,NULL,NULL,0,'2021-01-21 06:19:12','2021-01-21 06:19:12'),(11,NULL,'3665552970227426','customer','Muhammad Usman Aftab','usmanaftab32@yahoo.com','2021-01-21 07:01:26',NULL,NULL,NULL,'989KBTxnIrc0iJCjQFGzi3ZJjFV83fgWOvWsLTGZjDAYdiBK5kSGdRMUIHx9',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.00,0,NULL,NULL,0,'2021-01-21 07:50:26','2021-01-21 07:50:26'),(12,NULL,NULL,'customer','arman khan','armankhanshah@gmail.com','2021-01-21 08:46:52',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.00,0,NULL,NULL,0,'2021-01-21 08:46:52','2021-01-21 08:46:52'),(13,NULL,'3884297508289081','customer','Mi An W Aqa X','kashi7671@gmail.com','2021-01-22 08:01:27',NULL,NULL,NULL,'H91CJx6pld4C5qrG8Ja5IwlgFdWawqfy9kT1CDE4tw8j0NvV39bzXxf50mCd',NULL,NULL,NULL,NULL,NULL,NULL,NULL,0.00,0,NULL,NULL,0,'2021-01-22 08:11:27','2021-01-22 08:11:27');
/*!40000 ALTER TABLE `users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `wallets`
--

DROP TABLE IF EXISTS `wallets`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wallets` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `amount` double(20,2) NOT NULL,
  `payment_method` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `payment_details` longtext COLLATE utf8_unicode_ci,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wallets`
--

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

--
-- Table structure for table `wishlists`
--

DROP TABLE IF EXISTS `wishlists`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wishlists` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `user_id` int(11) NOT NULL,
  `product_id` int(11) NOT NULL,
  `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `wishlists`
--

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

--
-- Dumping events for database 'velburry_ecom'
--

--
-- Dumping routines for database 'velburry_ecom'
--
/*!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 2021-01-25  3:20:08
