One Hat Cyber Team
Your IP :
3.133.106.74
Server IP :
162.241.123.123
Server :
Linux sh016.hostgator.in 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64
Server Software :
Apache
PHP Version :
8.2.25
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home1
/
saicsazq
/
technqtechnologies.in
/
Edit File:
database-apexa-accounting-services.sql
-- MySQL dump 10.13 Distrib 8.0.33, for macos13 (arm64) -- -- Host: 127.0.0.1 Database: archielite_apexa -- ------------------------------------------------------ -- Server version 8.0.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 */; /*!50503 SET NAMES utf8mb4 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `activations` -- DROP TABLE IF EXISTS `activations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `activations` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint unsigned NOT NULL, `code` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `completed` tinyint(1) NOT NULL DEFAULT '0', `completed_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `activations_user_id_index` (`user_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 `activations` -- LOCK TABLES `activations` WRITE; /*!40000 ALTER TABLE `activations` DISABLE KEYS */; INSERT INTO `activations` VALUES (1,1,'2klVid8fY0jPPTCGpla5cUohER1uxSnb',1,'2024-06-18 22:59:55','2024-06-18 22:59:55','2024-06-18 22:59:55'); /*!40000 ALTER TABLE `activations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `admin_notifications` -- DROP TABLE IF EXISTS `admin_notifications`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `admin_notifications` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `action_label` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `action_url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `read_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `permission` varchar(191) COLLATE utf8mb4_unicode_ci 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 `admin_notifications` -- LOCK TABLES `admin_notifications` WRITE; /*!40000 ALTER TABLE `admin_notifications` DISABLE KEYS */; /*!40000 ALTER TABLE `admin_notifications` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `announcements` -- DROP TABLE IF EXISTS `announcements`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `announcements` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `content` text COLLATE utf8mb4_unicode_ci NOT NULL, `has_action` tinyint(1) NOT NULL DEFAULT '0', `action_label` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `action_url` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `action_open_new_tab` tinyint(1) NOT NULL DEFAULT '0', `dismissible` tinyint(1) NOT NULL DEFAULT '0', `start_date` datetime DEFAULT NULL, `end_date` datetime DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `announcements` -- LOCK TABLES `announcements` WRITE; /*!40000 ALTER TABLE `announcements` DISABLE KEYS */; INSERT INTO `announcements` VALUES (1,'Announcement 1','Introducing Our New Business Consulting Solutions!',0,NULL,NULL,0,1,'2024-06-19 06:00:45',NULL,1,'2024-06-18 23:00:45','2024-06-18 23:00:45'),(2,'Announcement 2','Elevate Your Business with Our Comprehensive Consulting Services.',0,NULL,NULL,0,1,'2024-06-19 06:00:45',NULL,1,'2024-06-18 23:00:45','2024-06-18 23:00:45'),(3,'Announcement 3','Revolutionize Your Business Strategy with Our Expertise.',0,NULL,NULL,0,1,'2024-06-19 06:00:45',NULL,1,'2024-06-18 23:00:45','2024-06-18 23:00:45'); /*!40000 ALTER TABLE `announcements` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `announcements_translations` -- DROP TABLE IF EXISTS `announcements_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `announcements_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `announcements_id` bigint unsigned NOT NULL, `content` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`lang_code`,`announcements_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `announcements_translations` -- LOCK TABLES `announcements_translations` WRITE; /*!40000 ALTER TABLE `announcements_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `announcements_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `audit_histories` -- DROP TABLE IF EXISTS `audit_histories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `audit_histories` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint unsigned NOT NULL, `module` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL, `request` longtext COLLATE utf8mb4_unicode_ci, `action` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `user_agent` text COLLATE utf8mb4_unicode_ci, `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reference_user` bigint unsigned NOT NULL, `reference_id` bigint unsigned NOT NULL, `reference_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `audit_histories_user_id_index` (`user_id`), KEY `audit_histories_module_index` (`module`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `audit_histories` -- LOCK TABLES `audit_histories` WRITE; /*!40000 ALTER TABLE `audit_histories` DISABLE KEYS */; /*!40000 ALTER TABLE `audit_histories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `careers` -- DROP TABLE IF EXISTS `careers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `careers` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `location` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `salary` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `careers` -- LOCK TABLES `careers` WRITE; /*!40000 ALTER TABLE `careers` DISABLE KEYS */; INSERT INTO `careers` VALUES (1,'Senior Full Stack Engineer','East Donnell, Martinique','5,841','Join our team as a Senior Full Stack Engineer and help us build cutting-edge solutions to empower creators worldwide.','<h4>Responsibilities</h4>\n<p>Product knowledge: Deeply understand the technology and features of the product area to which you are assigned.</p>\n<p>Research: Provide human and business impact and insights for products.</p>\n<p>Deliverables: Create deliverables for your product area (for example competitive analyses, user flows, low fidelity wireframes, high fidelity mockups, prototypes, etc.) that solve real user problems through the user experience.</p>\n<p>Communication: Communicate the results of UX activities within your product area to the design team department, cross-functional partners within your product area, and other interested Superformula team members using clear language that simplifies complexity.</p>\n<h4 class=\"color-brand-1\">Requirements</h4>\n<ul>\n <li>A portfolio demonstrating well thought through and polished end to end customer journeys</li>\n <li>5+ years of industry experience in interactive design and / or visual design</li>\n <li>Excellent interpersonal skills </li>\n <li>Aware of trends in mobile, communications, and collaboration</li>\n <li>Ability to create highly polished design prototypes, mockups, and other communication artifacts</li>\n <li>The ability to scope and estimate efforts accurately and prioritize tasks and goals independently</li>\n <li>History of impacting shipping products with your work</li>\n <li>A Bachelor’s Degree in Design (or related field) or equivalent professional experience</li>\n <li>Proficiency in a variety of design tools such as Figma, Photoshop, Illustrator, and Sketch</li>\n</ul>\n<h4 class=\"color-brand-1\">What\'s on Offer </h4>\n<ul>\n <li>Annual bonus and holidays, social welfare, and health checks.</li>\n <li>Training and attachment in Taiwan and other Greater China branches.</li>\n</ul>\n','published','2024-06-18 23:00:06','2024-06-18 23:00:06'),(2,'Lead Backend Developer','Kemmerport, Mongolia','7,985','Exciting opportunity for a Lead Backend Developer to lead our backend team in architecting scalable and robust systems.','<h4>Responsibilities</h4>\n<p>Product knowledge: Deeply understand the technology and features of the product area to which you are assigned.</p>\n<p>Research: Provide human and business impact and insights for products.</p>\n<p>Deliverables: Create deliverables for your product area (for example competitive analyses, user flows, low fidelity wireframes, high fidelity mockups, prototypes, etc.) that solve real user problems through the user experience.</p>\n<p>Communication: Communicate the results of UX activities within your product area to the design team department, cross-functional partners within your product area, and other interested Superformula team members using clear language that simplifies complexity.</p>\n<h4 class=\"color-brand-1\">Requirements</h4>\n<ul>\n <li>A portfolio demonstrating well thought through and polished end to end customer journeys</li>\n <li>5+ years of industry experience in interactive design and / or visual design</li>\n <li>Excellent interpersonal skills </li>\n <li>Aware of trends in mobile, communications, and collaboration</li>\n <li>Ability to create highly polished design prototypes, mockups, and other communication artifacts</li>\n <li>The ability to scope and estimate efforts accurately and prioritize tasks and goals independently</li>\n <li>History of impacting shipping products with your work</li>\n <li>A Bachelor’s Degree in Design (or related field) or equivalent professional experience</li>\n <li>Proficiency in a variety of design tools such as Figma, Photoshop, Illustrator, and Sketch</li>\n</ul>\n<h4 class=\"color-brand-1\">What\'s on Offer </h4>\n<ul>\n <li>Annual bonus and holidays, social welfare, and health checks.</li>\n <li>Training and attachment in Taiwan and other Greater China branches.</li>\n</ul>\n','published','2024-06-18 23:00:06','2024-06-18 23:00:06'),(3,'UI/UX Designer','East Jovantown, Eritrea','1,899','We are looking for a talented UI/UX Designer to create intuitive and visually stunning user experiences for our products.','<h4>Responsibilities</h4>\n<p>Product knowledge: Deeply understand the technology and features of the product area to which you are assigned.</p>\n<p>Research: Provide human and business impact and insights for products.</p>\n<p>Deliverables: Create deliverables for your product area (for example competitive analyses, user flows, low fidelity wireframes, high fidelity mockups, prototypes, etc.) that solve real user problems through the user experience.</p>\n<p>Communication: Communicate the results of UX activities within your product area to the design team department, cross-functional partners within your product area, and other interested Superformula team members using clear language that simplifies complexity.</p>\n<h4 class=\"color-brand-1\">Requirements</h4>\n<ul>\n <li>A portfolio demonstrating well thought through and polished end to end customer journeys</li>\n <li>5+ years of industry experience in interactive design and / or visual design</li>\n <li>Excellent interpersonal skills </li>\n <li>Aware of trends in mobile, communications, and collaboration</li>\n <li>Ability to create highly polished design prototypes, mockups, and other communication artifacts</li>\n <li>The ability to scope and estimate efforts accurately and prioritize tasks and goals independently</li>\n <li>History of impacting shipping products with your work</li>\n <li>A Bachelor’s Degree in Design (or related field) or equivalent professional experience</li>\n <li>Proficiency in a variety of design tools such as Figma, Photoshop, Illustrator, and Sketch</li>\n</ul>\n<h4 class=\"color-brand-1\">What\'s on Offer </h4>\n<ul>\n <li>Annual bonus and holidays, social welfare, and health checks.</li>\n <li>Training and attachment in Taiwan and other Greater China branches.</li>\n</ul>\n','published','2024-06-18 23:00:06','2024-06-18 23:00:06'),(4,'Product Manager','North Germanland, Christmas Island','5,025','As a Product Manager, you will drive the development and strategy of our products to meet the needs of our growing user base.','<h4>Responsibilities</h4>\n<p>Product knowledge: Deeply understand the technology and features of the product area to which you are assigned.</p>\n<p>Research: Provide human and business impact and insights for products.</p>\n<p>Deliverables: Create deliverables for your product area (for example competitive analyses, user flows, low fidelity wireframes, high fidelity mockups, prototypes, etc.) that solve real user problems through the user experience.</p>\n<p>Communication: Communicate the results of UX activities within your product area to the design team department, cross-functional partners within your product area, and other interested Superformula team members using clear language that simplifies complexity.</p>\n<h4 class=\"color-brand-1\">Requirements</h4>\n<ul>\n <li>A portfolio demonstrating well thought through and polished end to end customer journeys</li>\n <li>5+ years of industry experience in interactive design and / or visual design</li>\n <li>Excellent interpersonal skills </li>\n <li>Aware of trends in mobile, communications, and collaboration</li>\n <li>Ability to create highly polished design prototypes, mockups, and other communication artifacts</li>\n <li>The ability to scope and estimate efforts accurately and prioritize tasks and goals independently</li>\n <li>History of impacting shipping products with your work</li>\n <li>A Bachelor’s Degree in Design (or related field) or equivalent professional experience</li>\n <li>Proficiency in a variety of design tools such as Figma, Photoshop, Illustrator, and Sketch</li>\n</ul>\n<h4 class=\"color-brand-1\">What\'s on Offer </h4>\n<ul>\n <li>Annual bonus and holidays, social welfare, and health checks.</li>\n <li>Training and attachment in Taiwan and other Greater China branches.</li>\n</ul>\n','published','2024-06-18 23:00:06','2024-06-18 23:00:06'),(5,'Data Scientist','South Werner, Greece','8,013','Seeking a Data Scientist to analyze large datasets and derive actionable insights to inform business decisions.','<h4>Responsibilities</h4>\n<p>Product knowledge: Deeply understand the technology and features of the product area to which you are assigned.</p>\n<p>Research: Provide human and business impact and insights for products.</p>\n<p>Deliverables: Create deliverables for your product area (for example competitive analyses, user flows, low fidelity wireframes, high fidelity mockups, prototypes, etc.) that solve real user problems through the user experience.</p>\n<p>Communication: Communicate the results of UX activities within your product area to the design team department, cross-functional partners within your product area, and other interested Superformula team members using clear language that simplifies complexity.</p>\n<h4 class=\"color-brand-1\">Requirements</h4>\n<ul>\n <li>A portfolio demonstrating well thought through and polished end to end customer journeys</li>\n <li>5+ years of industry experience in interactive design and / or visual design</li>\n <li>Excellent interpersonal skills </li>\n <li>Aware of trends in mobile, communications, and collaboration</li>\n <li>Ability to create highly polished design prototypes, mockups, and other communication artifacts</li>\n <li>The ability to scope and estimate efforts accurately and prioritize tasks and goals independently</li>\n <li>History of impacting shipping products with your work</li>\n <li>A Bachelor’s Degree in Design (or related field) or equivalent professional experience</li>\n <li>Proficiency in a variety of design tools such as Figma, Photoshop, Illustrator, and Sketch</li>\n</ul>\n<h4 class=\"color-brand-1\">What\'s on Offer </h4>\n<ul>\n <li>Annual bonus and holidays, social welfare, and health checks.</li>\n <li>Training and attachment in Taiwan and other Greater China branches.</li>\n</ul>\n','published','2024-06-18 23:00:06','2024-06-18 23:00:06'),(6,'DevOps Engineer','Kulaston, United Kingdom','8,710','We are hiring a DevOps Engineer to streamline our development processes and ensure the reliability and scalability of our infrastructure.','<h4>Responsibilities</h4>\n<p>Product knowledge: Deeply understand the technology and features of the product area to which you are assigned.</p>\n<p>Research: Provide human and business impact and insights for products.</p>\n<p>Deliverables: Create deliverables for your product area (for example competitive analyses, user flows, low fidelity wireframes, high fidelity mockups, prototypes, etc.) that solve real user problems through the user experience.</p>\n<p>Communication: Communicate the results of UX activities within your product area to the design team department, cross-functional partners within your product area, and other interested Superformula team members using clear language that simplifies complexity.</p>\n<h4 class=\"color-brand-1\">Requirements</h4>\n<ul>\n <li>A portfolio demonstrating well thought through and polished end to end customer journeys</li>\n <li>5+ years of industry experience in interactive design and / or visual design</li>\n <li>Excellent interpersonal skills </li>\n <li>Aware of trends in mobile, communications, and collaboration</li>\n <li>Ability to create highly polished design prototypes, mockups, and other communication artifacts</li>\n <li>The ability to scope and estimate efforts accurately and prioritize tasks and goals independently</li>\n <li>History of impacting shipping products with your work</li>\n <li>A Bachelor’s Degree in Design (or related field) or equivalent professional experience</li>\n <li>Proficiency in a variety of design tools such as Figma, Photoshop, Illustrator, and Sketch</li>\n</ul>\n<h4 class=\"color-brand-1\">What\'s on Offer </h4>\n<ul>\n <li>Annual bonus and holidays, social welfare, and health checks.</li>\n <li>Training and attachment in Taiwan and other Greater China branches.</li>\n</ul>\n','published','2024-06-18 23:00:06','2024-06-18 23:00:06'); /*!40000 ALTER TABLE `careers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `careers_translations` -- DROP TABLE IF EXISTS `careers_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `careers_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `careers_id` bigint unsigned NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `location` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `salary` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` longtext COLLATE utf8mb4_unicode_ci, `content` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`lang_code`,`careers_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `careers_translations` -- LOCK TABLES `careers_translations` WRITE; /*!40000 ALTER TABLE `careers_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `careers_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `categories` -- DROP TABLE IF EXISTS `categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `categories` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `parent_id` bigint unsigned NOT NULL DEFAULT '0', `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `author_id` bigint unsigned DEFAULT NULL, `author_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User', `icon` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order` tinyint NOT NULL DEFAULT '0', `is_featured` tinyint NOT NULL DEFAULT '0', `is_default` tinyint unsigned NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `categories_parent_id_index` (`parent_id`), KEY `categories_status_index` (`status`), KEY `categories_created_at_index` (`created_at`) ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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` VALUES (1,'Entrepreneurship',0,'Aliquid possimus nulla cumque est alias omnis occaecati. Sit nobis necessitatibus ut culpa aliquid iusto consequatur. Suscipit repudiandae nesciunt vitae id.','published',1,'Botble\\ACL\\Models\\User',NULL,0,0,0,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(2,'Startups',0,'Perferendis natus sit qui harum doloribus voluptatem velit deserunt. Hic impedit libero et. Neque et praesentium amet consequatur sed ad.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(3,'Marketing',0,'Et veniam veritatis inventore minima quibusdam dolor beatae occaecati. Autem non tenetur veniam mollitia reprehenderit. Exercitationem amet voluptas dolorem quis.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(4,'Sales',0,'Commodi odit sed consectetur omnis. Inventore quod dolorem totam est sit. Veritatis iusto qui sit iusto.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(5,'Finance',0,'Libero voluptatem voluptas quia consectetur magnam. Sunt modi dignissimos ut excepturi excepturi. Voluptas officia aliquid perferendis veritatis nam. Qui et voluptas ea aut consequatur.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(6,'Leadership',0,'Nihil ut aut et reprehenderit deserunt laudantium. Recusandae consequatur rerum saepe id. Error debitis animi quo. Aut et ut blanditiis odio animi id consequatur.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(7,'Management',0,'Labore voluptatem qui quo eligendi. Est voluptatem et adipisci perferendis quos praesentium.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(8,'Human Resources',0,'Vel cum repellat quis. Repudiandae autem eos consequatur fugiat ea saepe. Aliquid atque a sit est ducimus quas. Deleniti aspernatur quaerat ut sit. Minus nisi et in aliquam doloribus.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(9,'Customer Service',0,'Ea ut itaque dolores voluptatibus ab optio aspernatur. Et provident dolor laborum molestiae. Ea excepturi iure cumque nesciunt sit aut. Est quaerat et omnis sed soluta. Sed atque ad vel id quos.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(10,'Innovation',0,'Aspernatur dicta provident asperiores et vitae. Recusandae ut qui quae asperiores blanditiis ut qui. Et nihil iste quo cupiditate dicta.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(11,'Business Strategy',0,'Tempore quis qui sed laudantium. Commodi sint voluptatum sint repellendus. Modi explicabo inventore et odit quia.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(12,'E-commerce',0,'Qui deleniti veritatis eligendi iusto beatae omnis aperiam. Ratione sunt enim est dolores laboriosam consectetur. Sequi mollitia maiores nihil voluptatibus. Modi sint nam ut aspernatur quo sunt.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(13,'Technology',0,'Sunt qui est error occaecati non sed placeat. Sunt quia minus veniam cupiditate maxime. Amet inventore quia ut ullam. Id non dolorum eos illum. Voluptatem sit nihil quibusdam aut voluptatem dolor.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(14,'Networking',0,'Facere excepturi quod eveniet ut esse. Sed voluptates quod officia. Ipsam libero eum a omnis totam quo qui. Ut voluptatem nihil vitae deleniti sunt.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(15,'Productivity',0,'Praesentium magni laborum ut tempora dolorem. Ullam eos nam sit quaerat vero non. Quia consequatur vero voluptatem sed natus earum. Tenetur nisi molestias porro temporibus possimus qui et.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(16,'Operations',0,'Nostrum quidem reiciendis maxime ex libero quos et fugit. Magni consectetur dolorem qui perspiciatis. Magnam odio at laborum non enim placeat.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(17,'Legal',0,'Iusto dicta est corrupti praesentium corrupti. Repudiandae error reiciendis adipisci libero non labore. Fugiat modi et architecto provident in.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(18,'Industry Trends',0,'Et amet explicabo officia quia. Aut qui molestiae perspiciatis odio reiciendis exercitationem. Qui at recusandae atque iure. Maiores consequatur beatae totam hic sit aut ut minima.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(19,'Small Business',0,'A et quam a alias iusto. Consequuntur commodi dolor et et. Odit qui cum debitis omnis labore. Molestiae alias sint quam expedita nihil voluptas consequatur.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(20,'Consulting',0,'Magnam qui labore eum. Est nam unde eum autem. Porro ullam dolorem totam voluptate dolor. Dolores ut recusandae nam aliquam ea.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2024-06-18 23:00:02','2024-06-18 23:00:02'); /*!40000 ALTER TABLE `categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `categories_translations` -- DROP TABLE IF EXISTS `categories_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `categories_translations` ( `lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `categories_id` bigint unsigned NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`categories_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `categories_translations` -- LOCK TABLES `categories_translations` WRITE; /*!40000 ALTER TABLE `categories_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `categories_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cities` -- DROP TABLE IF EXISTS `cities`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `cities` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state_id` bigint unsigned DEFAULT NULL, `country_id` bigint unsigned DEFAULT NULL, `record_id` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order` tinyint NOT NULL DEFAULT '0', `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_default` tinyint unsigned NOT NULL DEFAULT '0', `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `cities_slug_unique` (`slug`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cities` -- LOCK TABLES `cities` WRITE; /*!40000 ALTER TABLE `cities` DISABLE KEYS */; /*!40000 ALTER TABLE `cities` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `cities_translations` -- DROP TABLE IF EXISTS `cities_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `cities_translations` ( `lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `cities_id` bigint unsigned NOT NULL, `name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`cities_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `cities_translations` -- LOCK TABLES `cities_translations` WRITE; /*!40000 ALTER TABLE `cities_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `cities_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `contact_custom_field_options` -- DROP TABLE IF EXISTS `contact_custom_field_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `contact_custom_field_options` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `custom_field_id` bigint unsigned NOT NULL, `label` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `order` int NOT NULL DEFAULT '999', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL 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 `contact_custom_field_options` -- LOCK TABLES `contact_custom_field_options` WRITE; /*!40000 ALTER TABLE `contact_custom_field_options` DISABLE KEYS */; /*!40000 ALTER TABLE `contact_custom_field_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `contact_custom_field_options_translations` -- DROP TABLE IF EXISTS `contact_custom_field_options_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `contact_custom_field_options_translations` ( `contact_custom_field_options_id` bigint unsigned NOT NULL, `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `label` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`contact_custom_field_options_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `contact_custom_field_options_translations` -- LOCK TABLES `contact_custom_field_options_translations` WRITE; /*!40000 ALTER TABLE `contact_custom_field_options_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `contact_custom_field_options_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `contact_custom_fields` -- DROP TABLE IF EXISTS `contact_custom_fields`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `contact_custom_fields` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `required` tinyint(1) NOT NULL DEFAULT '0', `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `placeholder` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order` int NOT NULL DEFAULT '999', `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL 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 `contact_custom_fields` -- LOCK TABLES `contact_custom_fields` WRITE; /*!40000 ALTER TABLE `contact_custom_fields` DISABLE KEYS */; /*!40000 ALTER TABLE `contact_custom_fields` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `contact_custom_fields_translations` -- DROP TABLE IF EXISTS `contact_custom_fields_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `contact_custom_fields_translations` ( `contact_custom_fields_id` bigint unsigned NOT NULL, `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `placeholder` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`contact_custom_fields_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `contact_custom_fields_translations` -- LOCK TABLES `contact_custom_fields_translations` WRITE; /*!40000 ALTER TABLE `contact_custom_fields_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `contact_custom_fields_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `contact_replies` -- DROP TABLE IF EXISTS `contact_replies`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `contact_replies` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `message` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `contact_id` bigint unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL 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 `contact_replies` -- LOCK TABLES `contact_replies` WRITE; /*!40000 ALTER TABLE `contact_replies` DISABLE KEYS */; /*!40000 ALTER TABLE `contact_replies` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `contacts` -- DROP TABLE IF EXISTS `contacts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `contacts` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `subject` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `custom_fields` text COLLATE utf8mb4_unicode_ci, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unread', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `contacts` -- LOCK TABLES `contacts` WRITE; /*!40000 ALTER TABLE `contacts` DISABLE KEYS */; INSERT INTO `contacts` VALUES (1,'Gilberto Dietrich MD','shields.theresa@example.net','+1-928-961-4488','1450 Williamson Mountains Apt. 787\nKeeblerbury, SC 79078','Reprehenderit pariatur quia animi.','Recusandae tempore sit sint blanditiis quis quasi. Quam reprehenderit doloribus ut qui. Voluptatem aliquam quas voluptate maiores itaque. Rerum iusto quaerat sunt sunt numquam aut. Reprehenderit voluptatum consequatur nihil sit error. Dignissimos sed placeat eum earum. Quos aspernatur sint nam possimus vitae. Nihil expedita aut eius cupiditate et in. Voluptatum fugiat est amet ea eum. Dolores voluptas veritatis adipisci neque velit perferendis. Reiciendis quis aut nisi pariatur.',NULL,'read','2024-06-18 22:59:55','2024-06-18 22:59:55'),(2,'Prof. Garett Kemmer','schumm.laverna@example.com','769.672.4855','25301 Mark Wall\nNew Dino, PA 37234-1344','Quo repellat in animi sed.','Consectetur et impedit officiis perspiciatis eum. Sunt asperiores sunt autem est beatae aut omnis officiis. Eligendi velit est quidem consequatur perspiciatis possimus. Enim est consequuntur dolores ducimus dolorem natus quo. Sit ipsam adipisci reiciendis quod. Dolores voluptatum aliquam vero adipisci. Sunt atque laborum corporis. Velit aut tempora et quo quia deleniti aut natus. Odio omnis quod harum rerum. Et ducimus ipsa id.',NULL,'unread','2024-06-18 22:59:55','2024-06-18 22:59:55'),(3,'Ignacio Schaefer','berneice.hoeger@example.org','+1-534-924-0463','4908 Kirstin Freeway Suite 532\nNorth Chadrick, WI 35065','Ducimus dolore ad et sit sed at ut.','Ea et alias temporibus. Omnis nihil quo veniam numquam maiores magnam. Explicabo unde sint quia quisquam minima. Consequuntur beatae aperiam doloremque ad eos in. In quia totam unde omnis. Corrupti est fugit voluptatem consequuntur qui. Temporibus corporis sed voluptatem neque. Ipsum mollitia minima et fuga et facilis. Quisquam sed natus nam.',NULL,'read','2024-06-18 22:59:55','2024-06-18 22:59:55'),(4,'Ike Wisozk','ahegmann@example.org','623-537-7096','7555 Donnelly Rapids\nWest Guido, PA 41424','Nulla et id ducimus est voluptas veniam.','Incidunt recusandae veniam quos aut suscipit architecto. Dicta ut fuga voluptate quo. Magnam sint voluptatem veniam esse necessitatibus. Unde et voluptas cum autem natus rerum voluptas. Reiciendis soluta nostrum ipsam sed. Reprehenderit quidem fugit libero suscipit. Facere omnis quia natus quos minus maxime perspiciatis. Sapiente ut aliquid error voluptas. Qui similique facilis doloremque eum.',NULL,'unread','2024-06-18 22:59:55','2024-06-18 22:59:55'),(5,'Dalton McDermott','ggreenfelder@example.com','+1.629.334.1118','7206 Heathcote Lodge Suite 134\nEast Nicoleshire, ND 54888','Et dolores saepe labore ipsum.','Necessitatibus fugit rem minima non voluptate et praesentium. Harum et sapiente qui facilis illum aliquid aut. Dolores voluptate quis quo eaque sit explicabo quas. Nemo ut impedit repudiandae autem. Dicta quia ratione architecto excepturi. Ratione illum dolorem ut ad aut. Modi impedit error recusandae autem porro ut. Alias culpa rerum doloribus mollitia optio facere incidunt. Vitae saepe consectetur non corrupti dolores voluptatem minus.',NULL,'unread','2024-06-18 22:59:55','2024-06-18 22:59:55'),(6,'Lizzie Shanahan','rebeka08@example.net','+1-973-847-5718','98984 Morissette Islands Suite 705\nWest Merlinton, LA 27611','Ad id ut aperiam ut fugit placeat voluptate.','Placeat saepe ad officiis eveniet error. Non sit repudiandae amet voluptates. Ut voluptate autem qui nisi illo. Qui enim sit quis et corrupti est et. Quam qui dolores architecto laboriosam occaecati. Ducimus eos corrupti consequatur et est quibusdam. Ut qui inventore quia et ea placeat. Tempora sit et dignissimos qui illo nostrum. Quia consequuntur molestiae sint quia magnam dolorum harum. Itaque eum suscipit laudantium et consectetur.',NULL,'unread','2024-06-18 22:59:55','2024-06-18 22:59:55'),(7,'Geovanni Stoltenberg','blarkin@example.net','1-757-262-9730','8201 Jessy Passage Apt. 146\nHagenesmouth, KY 69896-6909','Inventore ducimus cum et quo eligendi commodi.','Adipisci blanditiis facere repellat omnis voluptas ex. Ratione repellendus voluptatem cum quia aliquid quia. Quo voluptas cum voluptas corporis unde nulla. Amet rerum architecto fugit labore ut quam assumenda. Veniam rem est omnis autem nihil reiciendis. Sapiente non iste id fuga error voluptatibus cumque. Occaecati quas id nam quisquam vel.',NULL,'unread','2024-06-18 22:59:55','2024-06-18 22:59:55'),(8,'Dr. Henry Zulauf','mateo.satterfield@example.com','(845) 971-2588','9187 Elouise Mission Suite 856\nEast Cynthiaside, HI 31888','Saepe ea molestias non quod assumenda ut nobis.','Accusantium dolorum recusandae odit. Error quisquam omnis modi voluptatem. Totam molestiae reiciendis aliquam consequatur explicabo illo rem vitae. Quis tempora reiciendis qui. Magni sed est hic et reprehenderit. Autem placeat quis veritatis quaerat suscipit suscipit. Dolor vel maxime ad ipsam. Sunt et impedit sed ut molestiae.',NULL,'read','2024-06-18 22:59:55','2024-06-18 22:59:55'),(9,'Jovani Stamm','jennifer.ziemann@example.net','+1 (938) 206-0928','96496 Grady Shores\nAdelinefurt, LA 41489','Corporis atque deserunt aut est quos.','A natus soluta enim nemo quia. Corporis ad ex et dolore corrupti. Quisquam ipsam aut ut odio quo. Id aliquid in laboriosam inventore esse eligendi. Ut ex maiores quod. Sed voluptatem est qui eveniet numquam quae. Iste sit deserunt qui quis. Beatae earum enim et dolorum inventore similique. Doloremque cum nobis quaerat. Ut quam ea ea dolores. Sint quibusdam molestiae doloribus numquam aut et.',NULL,'read','2024-06-18 22:59:55','2024-06-18 22:59:55'),(10,'Arden Lueilwitz','tjohns@example.net','401.637.0180','43263 Gerlach Row Suite 124\nWest Stefanside, CO 33674-3609','Et vero deleniti molestias ex.','Aliquam quisquam vitae quasi iure quia eius. Culpa qui eaque et explicabo qui. Saepe eligendi atque ut et. Facilis et qui ut. Tempore velit est est saepe non officiis. Eum est earum qui ducimus facere maxime non quaerat. Aut quisquam doloremque aut hic. Porro autem sapiente ut sed veniam dignissimos adipisci. Quibusdam impedit incidunt accusamus et et qui accusamus. Quaerat autem consectetur quis atque aut doloremque.',NULL,'unread','2024-06-18 22:59:55','2024-06-18 22:59:55'); /*!40000 ALTER TABLE `contacts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `countries` -- DROP TABLE IF EXISTS `countries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `countries` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `nationality` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order` tinyint NOT NULL DEFAULT '0', `is_default` tinyint unsigned NOT NULL DEFAULT '0', `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `code` varchar(10) COLLATE utf8mb4_unicode_ci 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 `countries` -- LOCK TABLES `countries` WRITE; /*!40000 ALTER TABLE `countries` DISABLE KEYS */; /*!40000 ALTER TABLE `countries` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `countries_translations` -- DROP TABLE IF EXISTS `countries_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `countries_translations` ( `lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `countries_id` bigint unsigned NOT NULL, `name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `nationality` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`countries_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `countries_translations` -- LOCK TABLES `countries_translations` WRITE; /*!40000 ALTER TABLE `countries_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `countries_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dashboard_widget_settings` -- DROP TABLE IF EXISTS `dashboard_widget_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `dashboard_widget_settings` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `settings` text COLLATE utf8mb4_unicode_ci, `user_id` bigint unsigned NOT NULL, `widget_id` bigint unsigned NOT NULL, `order` tinyint unsigned NOT NULL DEFAULT '0', `status` tinyint unsigned NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `dashboard_widget_settings_user_id_index` (`user_id`), KEY `dashboard_widget_settings_widget_id_index` (`widget_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `dashboard_widget_settings` -- LOCK TABLES `dashboard_widget_settings` WRITE; /*!40000 ALTER TABLE `dashboard_widget_settings` DISABLE KEYS */; /*!40000 ALTER TABLE `dashboard_widget_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `dashboard_widgets` -- DROP TABLE IF EXISTS `dashboard_widgets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `dashboard_widgets` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL 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 `dashboard_widgets` -- LOCK TABLES `dashboard_widgets` WRITE; /*!40000 ALTER TABLE `dashboard_widgets` DISABLE KEYS */; /*!40000 ALTER TABLE `dashboard_widgets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_brands` -- DROP TABLE IF EXISTS `ec_brands`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_brands` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` mediumtext COLLATE utf8mb4_unicode_ci, `website` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `logo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `order` tinyint unsigned NOT NULL DEFAULT '0', `is_featured` tinyint unsigned NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_brands` -- LOCK TABLES `ec_brands` WRITE; /*!40000 ALTER TABLE `ec_brands` DISABLE KEYS */; INSERT INTO `ec_brands` VALUES (1,'FoodPound','New Snacks Release',NULL,'brands/1.png','published',0,1,'2024-06-18 23:00:06','2024-06-18 23:00:06'),(2,'iTea JSC','Happy Tea 100% Organic. From $29.9',NULL,'brands/1.png','published',1,1,'2024-06-18 23:00:06','2024-06-18 23:00:06'),(3,'Soda Brand','Soda is a brand that lets your inner-dive out through creative makeup and cool makeup tips! Whichever product you choose, you will see that it is a perfect ...',NULL,'brands/1.png','published',2,1,'2024-06-18 23:00:06','2024-06-18 23:00:06'),(4,'Farmart','Fresh Meat Sausage. BUY 2 GET 1!',NULL,'brands/1.png','published',3,1,'2024-06-18 23:00:06','2024-06-18 23:00:06'); /*!40000 ALTER TABLE `ec_brands` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_brands_translations` -- DROP TABLE IF EXISTS `ec_brands_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_brands_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_brands_id` bigint unsigned NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` mediumtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`lang_code`,`ec_brands_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_brands_translations` -- LOCK TABLES `ec_brands_translations` WRITE; /*!40000 ALTER TABLE `ec_brands_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_brands_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_cart` -- DROP TABLE IF EXISTS `ec_cart`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_cart` ( `identifier` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL, `instance` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL, `content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`identifier`,`instance`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_cart` -- LOCK TABLES `ec_cart` WRITE; /*!40000 ALTER TABLE `ec_cart` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_cart` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_currencies` -- DROP TABLE IF EXISTS `ec_currencies`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_currencies` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `symbol` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL, `is_prefix_symbol` tinyint unsigned NOT NULL DEFAULT '0', `decimals` tinyint unsigned DEFAULT '0', `order` int unsigned DEFAULT '0', `is_default` tinyint NOT NULL DEFAULT '0', `exchange_rate` double NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_currencies` -- LOCK TABLES `ec_currencies` WRITE; /*!40000 ALTER TABLE `ec_currencies` DISABLE KEYS */; INSERT INTO `ec_currencies` VALUES (1,'USD','$',1,2,0,1,1,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(2,'EUR','€',0,2,1,0,0.84,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(3,'VND','₫',0,0,2,0,23203,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(4,'NGN','₦',1,2,2,0,895.52,'2024-06-18 22:59:55','2024-06-18 22:59:55'); /*!40000 ALTER TABLE `ec_currencies` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_customer_addresses` -- DROP TABLE IF EXISTS `ec_customer_addresses`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_customer_addresses` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_id` bigint unsigned NOT NULL, `is_default` tinyint unsigned NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `zip_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_customer_addresses` -- LOCK TABLES `ec_customer_addresses` WRITE; /*!40000 ALTER TABLE `ec_customer_addresses` DISABLE KEYS */; INSERT INTO `ec_customer_addresses` VALUES (1,'Octavia Homenick','customer@archielite.com','+15628380538','AO','South Carolina','Salvadorburgh','9948 Howell Lane Apt. 606',1,1,'2024-06-18 23:00:43','2024-06-18 23:00:43','25140'),(2,'Octavia Homenick','customer@archielite.com','+19496970073','CW','Louisiana','Oberbrunnerstad','382 Ondricka Stravenue',1,0,'2024-06-18 23:00:43','2024-06-18 23:00:43','92733-6828'),(3,'Donnell Gleason','batz.heloise@example.net','+12628688608','AW','New York','North Lindabury','17902 Erdman Garden Apt. 171',2,1,'2024-06-18 23:00:43','2024-06-18 23:00:43','40073-3077'),(4,'Dr. Estevan Towne II','qrogahn@example.net','+12348212849','LS','Michigan','Lubowitzville','125 Tremblay Estate Apt. 424',3,1,'2024-06-18 23:00:44','2024-06-18 23:00:44','55432-2762'),(5,'Holden Flatley','dgleason@example.com','+17404442750','ZA','Wisconsin','East Deshaun','433 Fadel Corners Apt. 404',4,1,'2024-06-18 23:00:44','2024-06-18 23:00:44','81228'),(6,'Dixie Gutmann','stracke.zula@example.com','+12677774827','AG','Alabama','Kristinview','8177 Senger Parkways Suite 366',5,1,'2024-06-18 23:00:44','2024-06-18 23:00:44','18634-7207'),(7,'Shanna Green Sr.','gleichner.sydnee@example.com','+17866872552','GI','Massachusetts','Port Susan','972 Mitchell Hollow',6,1,'2024-06-18 23:00:44','2024-06-18 23:00:44','21226'),(8,'Emely Jaskolski','kira26@example.com','+16053421261','SS','Maryland','Kiehnside','704 Mayer Village Suite 584',7,1,'2024-06-18 23:00:45','2024-06-18 23:00:45','28953-7800'),(9,'Reuben Padberg','jan89@example.net','+17374128077','ZW','Florida','West Dessie','86235 Liliana Grove Suite 325',8,1,'2024-06-18 23:00:45','2024-06-18 23:00:45','69203-5998'),(10,'Sarah Pfeffer','donnell.zieme@example.com','+13512511239','GB','Virginia','Cassinmouth','7082 Morissette Underpass Apt. 040',9,1,'2024-06-18 23:00:45','2024-06-18 23:00:45','55932'); /*!40000 ALTER TABLE `ec_customer_addresses` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_customer_deletion_requests` -- DROP TABLE IF EXISTS `ec_customer_deletion_requests`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_customer_deletion_requests` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `customer_id` bigint unsigned NOT NULL, `customer_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'waiting_for_confirmation', `reason` text COLLATE utf8mb4_unicode_ci, `confirmed_at` datetime DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ec_customer_deletion_requests_token_unique` (`token`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_customer_deletion_requests` -- LOCK TABLES `ec_customer_deletion_requests` WRITE; /*!40000 ALTER TABLE `ec_customer_deletion_requests` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_customer_deletion_requests` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_customer_password_resets` -- DROP TABLE IF EXISTS `ec_customer_password_resets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_customer_password_resets` ( `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, KEY `ec_customer_password_resets_email_index` (`email`), KEY `ec_customer_password_resets_token_index` (`token`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_customer_password_resets` -- LOCK TABLES `ec_customer_password_resets` WRITE; /*!40000 ALTER TABLE `ec_customer_password_resets` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_customer_password_resets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_customer_recently_viewed_products` -- DROP TABLE IF EXISTS `ec_customer_recently_viewed_products`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_customer_recently_viewed_products` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `customer_id` bigint unsigned NOT NULL, `product_id` bigint unsigned NOT 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 `ec_customer_recently_viewed_products` -- LOCK TABLES `ec_customer_recently_viewed_products` WRITE; /*!40000 ALTER TABLE `ec_customer_recently_viewed_products` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_customer_recently_viewed_products` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_customer_used_coupons` -- DROP TABLE IF EXISTS `ec_customer_used_coupons`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_customer_used_coupons` ( `discount_id` bigint unsigned NOT NULL, `customer_id` bigint unsigned NOT NULL, PRIMARY KEY (`discount_id`,`customer_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_customer_used_coupons` -- LOCK TABLES `ec_customer_used_coupons` WRITE; /*!40000 ALTER TABLE `ec_customer_used_coupons` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_customer_used_coupons` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_customers` -- DROP TABLE IF EXISTS `ec_customers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_customers` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `avatar` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `dob` date DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `confirmed_at` datetime DEFAULT NULL, `email_verify_token` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'activated', `private_notes` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`id`), UNIQUE KEY `ec_customers_email_unique` (`email`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_customers` -- LOCK TABLES `ec_customers` WRITE; /*!40000 ALTER TABLE `ec_customers` DISABLE KEYS */; INSERT INTO `ec_customers` VALUES (1,'Octavia Homenick','customer@archielite.com','$2y$12$/KQgefZR1WIpJduCpp3i3e7cn0nu7NkWDh818M7MPB3lWu8PDCAK.','customers/2.jpg','1976-05-26','+12024464715',NULL,'2024-06-18 23:00:43','2024-06-18 23:00:43','2024-06-19 06:00:43',NULL,'activated',NULL),(2,'Donnell Gleason','batz.heloise@example.net','$2y$12$Mpp7YjRMnkEe1ar5m0u6ouUX0faA7kD4qdCrfG8Va54E93kzoqgFC','customers/1.jpg','1986-05-30','+16787204012',NULL,'2024-06-18 23:00:43','2024-06-18 23:00:43','2024-06-19 06:00:43',NULL,'activated',NULL),(3,'Dr. Estevan Towne II','qrogahn@example.net','$2y$12$KFL6MqVlpvurz9WDwFtEcejdIT8cOn2LS67fiRSr68rBSFxsX2ogS','customers/2.jpg','1993-05-23','+18577426004',NULL,'2024-06-18 23:00:44','2024-06-18 23:00:44','2024-06-19 06:00:43',NULL,'activated',NULL),(4,'Holden Flatley','dgleason@example.com','$2y$12$kuoY8o6KN93V7QLcsUMwlOwHWuq7CQyoKWuAkjANySSj8GFFVjwoa','customers/3.jpg','1981-06-16','+16625555361',NULL,'2024-06-18 23:00:44','2024-06-18 23:00:44','2024-06-19 06:00:43',NULL,'activated',NULL),(5,'Dixie Gutmann','stracke.zula@example.com','$2y$12$dwhHcHPOc7HFtI5op7lV7.R.HDBRxYWvXDKnQByER7F2dd5Dvg8lW','customers/4.jpg','1988-06-15','+13606452250',NULL,'2024-06-18 23:00:44','2024-06-18 23:00:44','2024-06-19 06:00:43',NULL,'activated',NULL),(6,'Shanna Green Sr.','gleichner.sydnee@example.com','$2y$12$X1MmsskAw1RsHo.K3JOAIe66kpY1n/KBCi3D2c/kIhZmgeLwJXHXK','customers/5.jpg','1999-05-28','+16623191739',NULL,'2024-06-18 23:00:44','2024-06-18 23:00:44','2024-06-19 06:00:43',NULL,'activated',NULL),(7,'Emely Jaskolski','kira26@example.com','$2y$12$bDOGl.FKJBVjF9o2MhVboesJkf43cg3UvPwJJr.XW2MloxTp4WpbS','customers/6.jpg','1988-05-29','+12023598628',NULL,'2024-06-18 23:00:45','2024-06-18 23:00:45','2024-06-19 06:00:43',NULL,'activated',NULL),(8,'Reuben Padberg','jan89@example.net','$2y$12$AJo1ND8qn1UHzOkJjTR5WekqGxXK4zSpRfp6lnA3t5N/M3Pe6yWd2','customers/7.jpg','1998-06-18','+16897389995',NULL,'2024-06-18 23:00:45','2024-06-18 23:00:45','2024-06-19 06:00:43',NULL,'activated',NULL),(9,'Sarah Pfeffer','donnell.zieme@example.com','$2y$12$SgRl5ZjmfiT7ChFj8chH0Ool/CEKG6AoOgJ2WwO4YXgircjSkMKuu','customers/8.jpg','1981-06-14','+17329071022',NULL,'2024-06-18 23:00:45','2024-06-18 23:00:45','2024-06-19 06:00:43',NULL,'activated',NULL); /*!40000 ALTER TABLE `ec_customers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_discount_customers` -- DROP TABLE IF EXISTS `ec_discount_customers`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_discount_customers` ( `discount_id` bigint unsigned NOT NULL, `customer_id` bigint unsigned NOT NULL, PRIMARY KEY (`discount_id`,`customer_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_discount_customers` -- LOCK TABLES `ec_discount_customers` WRITE; /*!40000 ALTER TABLE `ec_discount_customers` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_discount_customers` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_discount_product_categories` -- DROP TABLE IF EXISTS `ec_discount_product_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_discount_product_categories` ( `discount_id` bigint unsigned NOT NULL, `product_category_id` bigint unsigned NOT NULL, PRIMARY KEY (`discount_id`,`product_category_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_discount_product_categories` -- LOCK TABLES `ec_discount_product_categories` WRITE; /*!40000 ALTER TABLE `ec_discount_product_categories` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_discount_product_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_discount_product_collections` -- DROP TABLE IF EXISTS `ec_discount_product_collections`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_discount_product_collections` ( `discount_id` bigint unsigned NOT NULL, `product_collection_id` bigint unsigned NOT NULL, PRIMARY KEY (`discount_id`,`product_collection_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_discount_product_collections` -- LOCK TABLES `ec_discount_product_collections` WRITE; /*!40000 ALTER TABLE `ec_discount_product_collections` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_discount_product_collections` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_discount_products` -- DROP TABLE IF EXISTS `ec_discount_products`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_discount_products` ( `discount_id` bigint unsigned NOT NULL, `product_id` bigint unsigned NOT NULL, PRIMARY KEY (`discount_id`,`product_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_discount_products` -- LOCK TABLES `ec_discount_products` WRITE; /*!40000 ALTER TABLE `ec_discount_products` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_discount_products` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_discounts` -- DROP TABLE IF EXISTS `ec_discounts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_discounts` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `title` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` datetime DEFAULT NULL, `end_date` datetime DEFAULT NULL, `quantity` int DEFAULT NULL, `total_used` int unsigned NOT NULL DEFAULT '0', `value` double DEFAULT NULL, `type` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT 'coupon', `can_use_with_promotion` tinyint(1) NOT NULL DEFAULT '0', `discount_on` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_quantity` int unsigned DEFAULT NULL, `type_option` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'amount', `target` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'all-orders', `min_order_price` decimal(15,2) DEFAULT NULL, `apply_via_url` tinyint(1) NOT NULL DEFAULT '0', `display_at_checkout` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ec_discounts_code_unique` (`code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_discounts` -- LOCK TABLES `ec_discounts` WRITE; /*!40000 ALTER TABLE `ec_discounts` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_discounts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_flash_sale_products` -- DROP TABLE IF EXISTS `ec_flash_sale_products`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_flash_sale_products` ( `flash_sale_id` bigint unsigned NOT NULL, `product_id` bigint unsigned NOT NULL, `price` double unsigned DEFAULT NULL, `quantity` int unsigned DEFAULT NULL, `sold` int unsigned NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_flash_sale_products` -- LOCK TABLES `ec_flash_sale_products` WRITE; /*!40000 ALTER TABLE `ec_flash_sale_products` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_flash_sale_products` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_flash_sales` -- DROP TABLE IF EXISTS `ec_flash_sales`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_flash_sales` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `end_date` datetime NOT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL 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 `ec_flash_sales` -- LOCK TABLES `ec_flash_sales` WRITE; /*!40000 ALTER TABLE `ec_flash_sales` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_flash_sales` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_flash_sales_translations` -- DROP TABLE IF EXISTS `ec_flash_sales_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_flash_sales_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_flash_sales_id` bigint unsigned NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`ec_flash_sales_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_flash_sales_translations` -- LOCK TABLES `ec_flash_sales_translations` WRITE; /*!40000 ALTER TABLE `ec_flash_sales_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_flash_sales_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_global_option_value` -- DROP TABLE IF EXISTS `ec_global_option_value`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_global_option_value` ( `option_id` bigint unsigned NOT NULL COMMENT 'option id', `id` bigint unsigned NOT NULL AUTO_INCREMENT, `option_value` tinytext COLLATE utf8mb4_unicode_ci COMMENT 'option value', `affect_price` double DEFAULT NULL COMMENT 'value of price of this option affect', `order` int NOT NULL DEFAULT '9999', `affect_type` tinyint NOT NULL DEFAULT '0' COMMENT '0. fixed 1. percent', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL 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 `ec_global_option_value` -- LOCK TABLES `ec_global_option_value` WRITE; /*!40000 ALTER TABLE `ec_global_option_value` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_global_option_value` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_global_option_value_translations` -- DROP TABLE IF EXISTS `ec_global_option_value_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_global_option_value_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_global_option_value_id` bigint unsigned NOT NULL, `option_value` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`ec_global_option_value_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_global_option_value_translations` -- LOCK TABLES `ec_global_option_value_translations` WRITE; /*!40000 ALTER TABLE `ec_global_option_value_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_global_option_value_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_global_options` -- DROP TABLE IF EXISTS `ec_global_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_global_options` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Name of options', `option_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'option type', `required` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Checked if this option is required', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL 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 `ec_global_options` -- LOCK TABLES `ec_global_options` WRITE; /*!40000 ALTER TABLE `ec_global_options` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_global_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_global_options_translations` -- DROP TABLE IF EXISTS `ec_global_options_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_global_options_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_global_options_id` bigint unsigned NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`ec_global_options_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_global_options_translations` -- LOCK TABLES `ec_global_options_translations` WRITE; /*!40000 ALTER TABLE `ec_global_options_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_global_options_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_grouped_products` -- DROP TABLE IF EXISTS `ec_grouped_products`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_grouped_products` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `parent_product_id` bigint unsigned NOT NULL, `product_id` bigint unsigned NOT NULL, `fixed_qty` int NOT NULL DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_grouped_products` -- LOCK TABLES `ec_grouped_products` WRITE; /*!40000 ALTER TABLE `ec_grouped_products` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_grouped_products` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_invoice_items` -- DROP TABLE IF EXISTS `ec_invoice_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_invoice_items` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `invoice_id` bigint unsigned NOT NULL, `reference_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `reference_id` bigint unsigned NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `qty` int unsigned NOT NULL, `price` decimal(15,2) NOT NULL DEFAULT '0.00', `sub_total` decimal(15,2) unsigned NOT NULL, `tax_amount` decimal(15,2) unsigned NOT NULL DEFAULT '0.00', `discount_amount` decimal(15,2) unsigned NOT NULL DEFAULT '0.00', `amount` decimal(15,2) unsigned NOT NULL, `options` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `ec_invoice_items_reference_type_reference_id_index` (`reference_type`,`reference_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_invoice_items` -- LOCK TABLES `ec_invoice_items` WRITE; /*!40000 ALTER TABLE `ec_invoice_items` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_invoice_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_invoices` -- DROP TABLE IF EXISTS `ec_invoices`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_invoices` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `reference_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `reference_id` bigint unsigned NOT NULL, `code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `customer_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `company_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `company_logo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_tax_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `sub_total` decimal(15,2) unsigned NOT NULL, `tax_amount` decimal(15,2) unsigned NOT NULL DEFAULT '0.00', `shipping_amount` decimal(15,2) unsigned NOT NULL DEFAULT '0.00', `discount_amount` decimal(15,2) unsigned NOT NULL DEFAULT '0.00', `shipping_option` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default', `coupon_code` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `amount` decimal(15,2) unsigned NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `payment_id` bigint unsigned DEFAULT NULL, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `paid_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ec_invoices_code_unique` (`code`), KEY `ec_invoices_reference_type_reference_id_index` (`reference_type`,`reference_id`), KEY `ec_invoices_payment_id_index` (`payment_id`), KEY `ec_invoices_status_index` (`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_invoices` -- LOCK TABLES `ec_invoices` WRITE; /*!40000 ALTER TABLE `ec_invoices` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_invoices` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_option_value` -- DROP TABLE IF EXISTS `ec_option_value`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_option_value` ( `option_id` bigint unsigned NOT NULL COMMENT 'option id', `id` bigint unsigned NOT NULL AUTO_INCREMENT, `option_value` tinytext COLLATE utf8mb4_unicode_ci COMMENT 'option value', `affect_price` double DEFAULT NULL COMMENT 'value of price of this option affect', `order` int NOT NULL DEFAULT '9999', `affect_type` tinyint NOT NULL DEFAULT '0' COMMENT '0. fixed 1. percent', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL 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 `ec_option_value` -- LOCK TABLES `ec_option_value` WRITE; /*!40000 ALTER TABLE `ec_option_value` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_option_value` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_option_value_translations` -- DROP TABLE IF EXISTS `ec_option_value_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_option_value_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_option_value_id` bigint unsigned NOT NULL, `option_value` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`ec_option_value_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_option_value_translations` -- LOCK TABLES `ec_option_value_translations` WRITE; /*!40000 ALTER TABLE `ec_option_value_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_option_value_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_options` -- DROP TABLE IF EXISTS `ec_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_options` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Name of options', `option_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'option type', `product_id` bigint unsigned NOT NULL DEFAULT '0', `order` int NOT NULL DEFAULT '9999', `required` tinyint(1) NOT NULL DEFAULT '0' COMMENT 'Checked if this option is required', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL 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 `ec_options` -- LOCK TABLES `ec_options` WRITE; /*!40000 ALTER TABLE `ec_options` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_options_translations` -- DROP TABLE IF EXISTS `ec_options_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_options_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_options_id` bigint unsigned NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`ec_options_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_options_translations` -- LOCK TABLES `ec_options_translations` WRITE; /*!40000 ALTER TABLE `ec_options_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_options_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_order_addresses` -- DROP TABLE IF EXISTS `ec_order_addresses`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_order_addresses` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_id` bigint unsigned NOT NULL, `zip_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'shipping_address', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_order_addresses` -- LOCK TABLES `ec_order_addresses` WRITE; /*!40000 ALTER TABLE `ec_order_addresses` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_order_addresses` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_order_histories` -- DROP TABLE IF EXISTS `ec_order_histories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_order_histories` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `action` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` bigint unsigned DEFAULT NULL, `order_id` bigint unsigned NOT NULL, `extras` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL 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 `ec_order_histories` -- LOCK TABLES `ec_order_histories` WRITE; /*!40000 ALTER TABLE `ec_order_histories` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_order_histories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_order_product` -- DROP TABLE IF EXISTS `ec_order_product`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_order_product` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `order_id` bigint unsigned NOT NULL, `qty` int NOT NULL, `price` decimal(15,2) NOT NULL, `tax_amount` decimal(15,2) NOT NULL, `options` text COLLATE utf8mb4_unicode_ci, `product_options` text COLLATE utf8mb4_unicode_ci COMMENT 'product option data', `product_id` bigint unsigned DEFAULT NULL, `product_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `product_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `weight` double(8,2) DEFAULT '0.00', `restock_quantity` int unsigned DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `product_type` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'physical', `times_downloaded` int NOT NULL DEFAULT '0', `license_code` char(36) COLLATE utf8mb4_unicode_ci 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 `ec_order_product` -- LOCK TABLES `ec_order_product` WRITE; /*!40000 ALTER TABLE `ec_order_product` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_order_product` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_order_referrals` -- DROP TABLE IF EXISTS `ec_order_referrals`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_order_referrals` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `ip` varchar(39) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `landing_domain` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `landing_page` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `landing_params` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `referral` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `gclid` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `fclid` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `utm_source` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `utm_campaign` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `utm_medium` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `utm_term` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `utm_content` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `referrer_url` text COLLATE utf8mb4_unicode_ci, `referrer_domain` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_id` bigint unsigned DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `ec_order_referrals_order_id_index` (`order_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_order_referrals` -- LOCK TABLES `ec_order_referrals` WRITE; /*!40000 ALTER TABLE `ec_order_referrals` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_order_referrals` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_order_return_histories` -- DROP TABLE IF EXISTS `ec_order_return_histories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_order_return_histories` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint unsigned DEFAULT NULL, `order_return_id` bigint unsigned NOT NULL, `action` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reason` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL 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 `ec_order_return_histories` -- LOCK TABLES `ec_order_return_histories` WRITE; /*!40000 ALTER TABLE `ec_order_return_histories` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_order_return_histories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_order_return_items` -- DROP TABLE IF EXISTS `ec_order_return_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_order_return_items` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `order_return_id` bigint unsigned NOT NULL COMMENT 'Order return id', `order_product_id` bigint unsigned NOT NULL COMMENT 'Order product id', `product_id` bigint unsigned NOT NULL COMMENT 'Product id', `product_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `product_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `qty` int NOT NULL COMMENT 'Quantity return', `price` decimal(15,2) NOT NULL COMMENT 'Price Product', `reason` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `refund_amount` decimal(12,2) DEFAULT '0.00', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_order_return_items` -- LOCK TABLES `ec_order_return_items` WRITE; /*!40000 ALTER TABLE `ec_order_return_items` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_order_return_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_order_returns` -- DROP TABLE IF EXISTS `ec_order_returns`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_order_returns` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order_id` bigint unsigned NOT NULL COMMENT 'Order ID', `store_id` bigint unsigned DEFAULT NULL COMMENT 'Store ID', `user_id` bigint unsigned NOT NULL COMMENT 'Customer ID', `reason` text COLLATE utf8mb4_unicode_ci COMMENT 'Reason return order', `order_status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Order current status', `return_status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Return status', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ec_order_returns_code_unique` (`code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_order_returns` -- LOCK TABLES `ec_order_returns` WRITE; /*!40000 ALTER TABLE `ec_order_returns` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_order_returns` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_order_tax_information` -- DROP TABLE IF EXISTS `ec_order_tax_information`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_order_tax_information` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `order_id` bigint unsigned NOT NULL, `company_name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `company_address` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `company_tax_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `company_email` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `ec_order_tax_information_order_id_index` (`order_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_order_tax_information` -- LOCK TABLES `ec_order_tax_information` WRITE; /*!40000 ALTER TABLE `ec_order_tax_information` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_order_tax_information` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_orders` -- DROP TABLE IF EXISTS `ec_orders`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_orders` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` bigint unsigned NOT NULL, `shipping_option` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_method` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'default', `status` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `amount` decimal(15,2) NOT NULL, `tax_amount` decimal(15,2) DEFAULT NULL, `shipping_amount` decimal(15,2) DEFAULT NULL, `description` text COLLATE utf8mb4_unicode_ci, `coupon_code` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `discount_amount` decimal(15,2) DEFAULT NULL, `sub_total` decimal(15,2) NOT NULL, `is_confirmed` tinyint(1) NOT NULL DEFAULT '0', `discount_description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_finished` tinyint(1) DEFAULT '0', `cancellation_reason` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cancellation_reason_description` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `completed_at` timestamp NULL DEFAULT NULL, `token` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_id` bigint unsigned DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `proof_file` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ec_orders_code_unique` (`code`), KEY `ec_orders_user_id_status_created_at_index` (`user_id`,`status`,`created_at`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_orders` -- LOCK TABLES `ec_orders` WRITE; /*!40000 ALTER TABLE `ec_orders` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_orders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_attribute_sets` -- DROP TABLE IF EXISTS `ec_product_attribute_sets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_attribute_sets` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `title` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `display_layout` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'swatch_dropdown', `is_searchable` tinyint unsigned NOT NULL DEFAULT '1', `is_comparable` tinyint unsigned NOT NULL DEFAULT '1', `is_use_in_product_listing` tinyint unsigned NOT NULL DEFAULT '0', `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `order` tinyint unsigned NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `use_image_from_product_variation` tinyint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_attribute_sets` -- LOCK TABLES `ec_product_attribute_sets` WRITE; /*!40000 ALTER TABLE `ec_product_attribute_sets` DISABLE KEYS */; INSERT INTO `ec_product_attribute_sets` VALUES (1,'Color','color','visual',1,1,1,'published',0,'2024-06-18 23:00:42','2024-06-18 23:00:42',0),(2,'Size','size','text',1,1,1,'published',1,'2024-06-18 23:00:42','2024-06-18 23:00:42',0),(3,'Weight','weight','text',1,1,1,'published',0,'2024-06-18 23:00:42','2024-06-18 23:00:42',0),(4,'Boxes','boxes','text',1,1,1,'published',1,'2024-06-18 23:00:42','2024-06-18 23:00:42',0); /*!40000 ALTER TABLE `ec_product_attribute_sets` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_attribute_sets_translations` -- DROP TABLE IF EXISTS `ec_product_attribute_sets_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_attribute_sets_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_product_attribute_sets_id` bigint unsigned NOT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`ec_product_attribute_sets_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_attribute_sets_translations` -- LOCK TABLES `ec_product_attribute_sets_translations` WRITE; /*!40000 ALTER TABLE `ec_product_attribute_sets_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_product_attribute_sets_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_attributes` -- DROP TABLE IF EXISTS `ec_product_attributes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_attributes` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `attribute_set_id` bigint unsigned NOT NULL, `title` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `color` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_default` tinyint unsigned NOT NULL DEFAULT '0', `order` tinyint unsigned NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `attribute_set_status_index` (`attribute_set_id`) ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_attributes` -- LOCK TABLES `ec_product_attributes` WRITE; /*!40000 ALTER TABLE `ec_product_attributes` DISABLE KEYS */; INSERT INTO `ec_product_attributes` VALUES (1,1,'Green','green','#5FB7D4',NULL,1,1,'2024-06-18 23:00:42','2024-06-18 23:00:42'),(2,1,'Blue','blue','#333333',NULL,0,2,'2024-06-18 23:00:42','2024-06-18 23:00:42'),(3,1,'Red','red','#DA323F',NULL,0,3,'2024-06-18 23:00:42','2024-06-18 23:00:42'),(4,1,'Black','black','#2F366C',NULL,0,4,'2024-06-18 23:00:42','2024-06-18 23:00:42'),(5,1,'Brown','brown','#87554B',NULL,0,5,'2024-06-18 23:00:42','2024-06-18 23:00:42'),(6,2,'S','s',NULL,NULL,1,1,'2024-06-18 23:00:42','2024-06-18 23:00:42'),(7,2,'M','m',NULL,NULL,0,2,'2024-06-18 23:00:42','2024-06-18 23:00:42'),(8,2,'L','l',NULL,NULL,0,3,'2024-06-18 23:00:42','2024-06-18 23:00:42'),(9,2,'XL','xl',NULL,NULL,0,4,'2024-06-18 23:00:42','2024-06-18 23:00:42'),(10,2,'XXL','xxl',NULL,NULL,0,5,'2024-06-18 23:00:42','2024-06-18 23:00:42'),(11,3,'1KG','1kg',NULL,NULL,1,1,'2024-06-18 23:00:42','2024-06-18 23:00:42'),(12,3,'2KG','2kg',NULL,NULL,0,2,'2024-06-18 23:00:42','2024-06-18 23:00:42'),(13,3,'3KG','3kg',NULL,NULL,0,3,'2024-06-18 23:00:42','2024-06-18 23:00:42'),(14,3,'4KG','4kg',NULL,NULL,0,4,'2024-06-18 23:00:42','2024-06-18 23:00:42'),(15,3,'5KG','5kg',NULL,NULL,0,5,'2024-06-18 23:00:42','2024-06-18 23:00:42'),(16,4,'1 Box','1-box',NULL,NULL,1,1,'2024-06-18 23:00:42','2024-06-18 23:00:42'),(17,4,'2 Boxes','2-boxes',NULL,NULL,0,2,'2024-06-18 23:00:42','2024-06-18 23:00:42'),(18,4,'3 Boxes','3-boxes',NULL,NULL,0,3,'2024-06-18 23:00:42','2024-06-18 23:00:42'),(19,4,'4 Boxes','4-boxes',NULL,NULL,0,4,'2024-06-18 23:00:42','2024-06-18 23:00:42'),(20,4,'5 Boxes','5-boxes',NULL,NULL,0,5,'2024-06-18 23:00:42','2024-06-18 23:00:42'); /*!40000 ALTER TABLE `ec_product_attributes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_attributes_translations` -- DROP TABLE IF EXISTS `ec_product_attributes_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_attributes_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_product_attributes_id` bigint unsigned NOT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`ec_product_attributes_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_attributes_translations` -- LOCK TABLES `ec_product_attributes_translations` WRITE; /*!40000 ALTER TABLE `ec_product_attributes_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_product_attributes_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_categories` -- DROP TABLE IF EXISTS `ec_product_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_categories` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `parent_id` bigint unsigned NOT NULL DEFAULT '0', `description` mediumtext COLLATE utf8mb4_unicode_ci, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `order` int unsigned NOT NULL DEFAULT '0', `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_featured` tinyint unsigned NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `icon` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `icon_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), KEY `ec_product_categories_parent_id_status_created_at_index` (`parent_id`,`status`,`created_at`), KEY `ec_product_categories_parent_id_status_index` (`parent_id`,`status`) ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_categories` -- LOCK TABLES `ec_product_categories` WRITE; /*!40000 ALTER TABLE `ec_product_categories` DISABLE KEYS */; INSERT INTO `ec_product_categories` VALUES (1,'Desktop PC',0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',1,'product-categories/1.png',1,'2024-06-18 23:00:06','2024-06-18 23:00:06',NULL,NULL),(2,'Headphone',0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',2,'product-categories/2.png',1,'2024-06-18 23:00:06','2024-06-18 23:00:06',NULL,NULL),(3,'Laptop',0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',3,'product-categories/3.png',1,'2024-06-18 23:00:06','2024-06-18 23:00:06',NULL,NULL),(4,'Mobile Phone',0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',4,'product-categories/4.png',1,'2024-06-18 23:00:06','2024-06-18 23:00:06',NULL,NULL),(5,'Printer',0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',5,'product-categories/5.png',1,'2024-06-18 23:00:06','2024-06-18 23:00:06',NULL,NULL),(6,'Books',0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',6,'product-categories/6.png',1,'2024-06-18 23:00:06','2024-06-18 23:00:06',NULL,NULL),(7,'Tablet',0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',7,'product-categories/7.png',1,'2024-06-18 23:00:06','2024-06-18 23:00:06',NULL,NULL),(8,'USB Flash',0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',8,'product-categories/8.png',1,'2024-06-18 23:00:06','2024-06-18 23:00:06',NULL,NULL),(9,'Game Mouse',0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',9,'product-categories/9.png',1,'2024-06-18 23:00:06','2024-06-18 23:00:06',NULL,NULL),(10,'Security',0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',10,'product-categories/10.png',1,'2024-06-18 23:00:06','2024-06-18 23:00:06',NULL,NULL),(11,'Watch',0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',11,'product-categories/11.png',1,'2024-06-18 23:00:06','2024-06-18 23:00:06',NULL,NULL),(12,'Scanner',0,'From year to year we strive to invent the most innovative technology that is used by both small enterprises and space enterprises.','published',12,'product-categories/12.png',1,'2024-06-18 23:00:06','2024-06-18 23:00:06',NULL,NULL); /*!40000 ALTER TABLE `ec_product_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_categories_translations` -- DROP TABLE IF EXISTS `ec_product_categories_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_categories_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_product_categories_id` bigint unsigned NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` mediumtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`lang_code`,`ec_product_categories_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_categories_translations` -- LOCK TABLES `ec_product_categories_translations` WRITE; /*!40000 ALTER TABLE `ec_product_categories_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_product_categories_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_categorizables` -- DROP TABLE IF EXISTS `ec_product_categorizables`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_categorizables` ( `category_id` bigint unsigned NOT NULL, `reference_id` bigint unsigned NOT NULL, `reference_type` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`category_id`,`reference_id`,`reference_type`), KEY `ec_product_categorizables_category_id_index` (`category_id`), KEY `ec_product_categorizables_reference_id_index` (`reference_id`), KEY `ec_product_categorizables_reference_type_index` (`reference_type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_categorizables` -- LOCK TABLES `ec_product_categorizables` WRITE; /*!40000 ALTER TABLE `ec_product_categorizables` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_product_categorizables` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_category_product` -- DROP TABLE IF EXISTS `ec_product_category_product`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_category_product` ( `category_id` bigint unsigned NOT NULL, `product_id` bigint unsigned NOT NULL, PRIMARY KEY (`product_id`,`category_id`), KEY `ec_product_category_product_category_id_index` (`category_id`), KEY `ec_product_category_product_product_id_index` (`product_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_category_product` -- LOCK TABLES `ec_product_category_product` WRITE; /*!40000 ALTER TABLE `ec_product_category_product` DISABLE KEYS */; INSERT INTO `ec_product_category_product` VALUES (1,8),(1,20),(1,31),(1,42),(1,44),(1,52),(1,53),(2,34),(2,53),(2,57),(2,59),(3,31),(3,60),(4,24),(4,29),(4,37),(4,56),(5,48),(5,49),(6,1),(6,2),(6,6),(6,13),(6,14),(6,17),(6,23),(6,35),(6,50),(6,54),(6,60),(6,62),(7,1),(7,27),(7,62),(8,9),(8,21),(8,30),(8,39),(8,58),(9,1),(9,15),(9,34),(9,43),(9,64),(10,4),(10,9),(10,17),(10,24),(10,26),(11,16),(11,22),(11,32),(11,48),(11,63),(12,5),(12,27),(12,32),(12,65),(13,11),(13,18),(13,23),(13,41),(14,4),(14,19),(15,6),(15,8),(15,12),(15,20),(15,26),(15,30),(15,36),(15,38),(15,43),(15,44),(15,53),(15,57),(15,59),(16,3),(16,4),(16,5),(16,13),(16,21),(16,28),(16,33),(16,41),(16,49),(16,50),(16,51),(17,7),(17,11),(17,19),(17,23),(17,28),(17,56),(17,65),(18,3),(18,15),(18,26),(18,39),(18,40),(18,44),(18,53),(19,7),(19,10),(19,15),(19,31),(19,32),(19,34),(19,47),(19,52),(19,55),(19,64),(20,25),(20,33),(20,42),(20,51),(20,54),(20,57),(20,58),(20,61),(21,2),(21,16),(21,45),(21,47),(21,50),(21,55),(22,7),(22,12),(22,17),(22,32),(22,33),(22,37),(22,48),(22,55),(22,60),(23,3),(23,6),(23,18),(23,35),(23,52),(23,57),(24,56),(24,62),(24,63),(24,64),(25,9),(25,13),(25,26),(25,29),(25,36),(25,37),(25,44),(25,45),(25,47),(25,50),(26,16),(26,19),(26,20),(26,21),(26,36),(26,38),(26,46),(26,49),(27,2),(27,7),(27,10),(27,11),(27,21),(27,22),(27,41),(27,51),(27,60),(27,63),(27,65),(28,12),(28,43),(28,46),(28,52),(28,64),(29,9),(29,12),(29,20),(29,24),(29,27),(29,30),(29,37),(29,62),(30,13),(30,17),(30,27),(30,28),(30,59),(30,65),(31,4),(31,5),(31,10),(31,18),(31,22),(31,23),(31,29),(31,35),(31,45),(31,46),(31,49),(32,1),(32,8),(32,10),(32,11),(32,18),(32,29),(32,35),(32,55),(32,63),(33,14),(33,25),(33,31),(33,38),(33,40),(33,41),(33,47),(34,2),(34,5),(34,14),(34,39),(34,56),(34,59),(35,3),(35,19),(35,54),(36,8),(36,14),(36,24),(36,38),(36,42),(36,51),(36,58),(36,61),(37,6),(37,16),(37,25),(37,30),(37,34),(37,36),(37,39),(37,43),(37,48),(37,54),(37,61); /*!40000 ALTER TABLE `ec_product_category_product` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_collection_products` -- DROP TABLE IF EXISTS `ec_product_collection_products`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_collection_products` ( `product_collection_id` bigint unsigned NOT NULL, `product_id` bigint unsigned NOT NULL, PRIMARY KEY (`product_id`,`product_collection_id`), KEY `ec_product_collection_products_product_collection_id_index` (`product_collection_id`), KEY `ec_product_collection_products_product_id_index` (`product_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_collection_products` -- LOCK TABLES `ec_product_collection_products` WRITE; /*!40000 ALTER TABLE `ec_product_collection_products` DISABLE KEYS */; INSERT INTO `ec_product_collection_products` VALUES (1,2),(1,3),(1,5),(1,9),(1,10),(1,11),(1,16),(1,18),(1,26),(1,29),(1,32),(1,35),(1,37),(1,38),(1,40),(1,41),(1,47),(1,52),(1,58),(1,60),(1,64),(1,65),(2,8),(2,17),(2,19),(2,20),(2,22),(2,24),(2,25),(2,27),(2,28),(2,30),(2,31),(2,34),(2,43),(2,44),(2,45),(2,48),(2,49),(2,51),(2,53),(2,55),(2,56),(3,1),(3,4),(3,6),(3,7),(3,12),(3,13),(3,14),(3,15),(3,21),(3,23),(3,33),(3,36),(3,39),(3,42),(3,46),(3,50),(3,54),(3,57),(3,59),(3,61),(3,62),(3,63); /*!40000 ALTER TABLE `ec_product_collection_products` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_collections` -- DROP TABLE IF EXISTS `ec_product_collections`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_collections` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `is_featured` tinyint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_collections` -- LOCK TABLES `ec_product_collections` WRITE; /*!40000 ALTER TABLE `ec_product_collections` DISABLE KEYS */; INSERT INTO `ec_product_collections` VALUES (1,'New Arrival','new-arrival',NULL,NULL,'published','2024-06-18 23:00:06','2024-06-18 23:00:06',0),(2,'Best Sellers','best-sellers',NULL,NULL,'published','2024-06-18 23:00:06','2024-06-18 23:00:06',0),(3,'Special Offer','special-offer',NULL,NULL,'published','2024-06-18 23:00:06','2024-06-18 23:00:06',0); /*!40000 ALTER TABLE `ec_product_collections` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_collections_translations` -- DROP TABLE IF EXISTS `ec_product_collections_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_collections_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_product_collections_id` bigint unsigned NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`ec_product_collections_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_collections_translations` -- LOCK TABLES `ec_product_collections_translations` WRITE; /*!40000 ALTER TABLE `ec_product_collections_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_product_collections_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_cross_sale_relations` -- DROP TABLE IF EXISTS `ec_product_cross_sale_relations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_cross_sale_relations` ( `from_product_id` bigint unsigned NOT NULL, `to_product_id` bigint unsigned NOT NULL, `is_variant` tinyint(1) NOT NULL DEFAULT '0', `price` decimal(15,2) DEFAULT '0.00', `price_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'fixed', `apply_to_all_variations` tinyint(1) NOT NULL DEFAULT '1', PRIMARY KEY (`from_product_id`,`to_product_id`), KEY `ec_product_cross_sale_relations_from_product_id_index` (`from_product_id`), KEY `ec_product_cross_sale_relations_to_product_id_index` (`to_product_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_cross_sale_relations` -- LOCK TABLES `ec_product_cross_sale_relations` WRITE; /*!40000 ALTER TABLE `ec_product_cross_sale_relations` DISABLE KEYS */; INSERT INTO `ec_product_cross_sale_relations` VALUES (1,7,0,0.00,'fixed',1),(1,8,0,0.00,'fixed',1),(1,10,0,0.00,'fixed',1),(1,13,0,0.00,'fixed',1),(1,16,0,0.00,'fixed',1),(1,18,0,0.00,'fixed',1),(1,19,0,0.00,'fixed',1),(2,11,0,0.00,'fixed',1),(2,13,0,0.00,'fixed',1),(2,14,0,0.00,'fixed',1),(2,15,0,0.00,'fixed',1),(2,16,0,0.00,'fixed',1),(2,18,0,0.00,'fixed',1),(2,20,0,0.00,'fixed',1),(3,1,0,0.00,'fixed',1),(3,4,0,0.00,'fixed',1),(3,5,0,0.00,'fixed',1),(3,6,0,0.00,'fixed',1),(3,8,0,0.00,'fixed',1),(3,16,0,0.00,'fixed',1),(3,19,0,0.00,'fixed',1),(4,3,0,0.00,'fixed',1),(4,9,0,0.00,'fixed',1),(4,10,0,0.00,'fixed',1),(4,12,0,0.00,'fixed',1),(4,13,0,0.00,'fixed',1),(5,3,0,0.00,'fixed',1),(5,6,0,0.00,'fixed',1),(5,12,0,0.00,'fixed',1),(5,14,0,0.00,'fixed',1),(5,16,0,0.00,'fixed',1),(5,17,0,0.00,'fixed',1),(6,4,0,0.00,'fixed',1),(6,11,0,0.00,'fixed',1),(6,12,0,0.00,'fixed',1),(6,13,0,0.00,'fixed',1),(6,19,0,0.00,'fixed',1),(7,5,0,0.00,'fixed',1),(7,11,0,0.00,'fixed',1),(7,12,0,0.00,'fixed',1),(7,14,0,0.00,'fixed',1),(7,15,0,0.00,'fixed',1),(7,17,0,0.00,'fixed',1),(8,1,0,0.00,'fixed',1),(8,11,0,0.00,'fixed',1),(8,12,0,0.00,'fixed',1),(8,15,0,0.00,'fixed',1),(8,17,0,0.00,'fixed',1),(8,19,0,0.00,'fixed',1),(8,20,0,0.00,'fixed',1),(9,5,0,0.00,'fixed',1),(9,10,0,0.00,'fixed',1),(9,12,0,0.00,'fixed',1),(9,13,0,0.00,'fixed',1),(9,14,0,0.00,'fixed',1),(9,19,0,0.00,'fixed',1),(10,5,0,0.00,'fixed',1),(10,6,0,0.00,'fixed',1),(10,7,0,0.00,'fixed',1),(10,15,0,0.00,'fixed',1),(10,16,0,0.00,'fixed',1),(10,18,0,0.00,'fixed',1),(11,4,0,0.00,'fixed',1),(11,8,0,0.00,'fixed',1),(11,13,0,0.00,'fixed',1),(11,15,0,0.00,'fixed',1),(11,16,0,0.00,'fixed',1),(11,17,0,0.00,'fixed',1),(11,18,0,0.00,'fixed',1),(12,3,0,0.00,'fixed',1),(12,7,0,0.00,'fixed',1),(12,9,0,0.00,'fixed',1),(12,11,0,0.00,'fixed',1),(12,16,0,0.00,'fixed',1),(13,4,0,0.00,'fixed',1),(13,6,0,0.00,'fixed',1),(13,8,0,0.00,'fixed',1),(13,10,0,0.00,'fixed',1),(13,14,0,0.00,'fixed',1),(13,19,0,0.00,'fixed',1),(13,20,0,0.00,'fixed',1),(14,1,0,0.00,'fixed',1),(14,4,0,0.00,'fixed',1),(14,7,0,0.00,'fixed',1),(14,10,0,0.00,'fixed',1),(14,11,0,0.00,'fixed',1),(14,12,0,0.00,'fixed',1),(14,20,0,0.00,'fixed',1),(15,3,0,0.00,'fixed',1),(15,4,0,0.00,'fixed',1),(15,5,0,0.00,'fixed',1),(15,10,0,0.00,'fixed',1),(15,11,0,0.00,'fixed',1),(15,14,0,0.00,'fixed',1),(15,16,0,0.00,'fixed',1),(16,5,0,0.00,'fixed',1),(16,10,0,0.00,'fixed',1),(16,11,0,0.00,'fixed',1),(16,13,0,0.00,'fixed',1),(16,14,0,0.00,'fixed',1),(16,15,0,0.00,'fixed',1),(17,2,0,0.00,'fixed',1),(17,5,0,0.00,'fixed',1),(17,6,0,0.00,'fixed',1),(17,10,0,0.00,'fixed',1),(17,11,0,0.00,'fixed',1),(17,19,0,0.00,'fixed',1),(18,1,0,0.00,'fixed',1),(18,3,0,0.00,'fixed',1),(18,5,0,0.00,'fixed',1),(18,13,0,0.00,'fixed',1),(18,16,0,0.00,'fixed',1),(18,20,0,0.00,'fixed',1),(19,1,0,0.00,'fixed',1),(19,5,0,0.00,'fixed',1),(19,7,0,0.00,'fixed',1),(19,13,0,0.00,'fixed',1),(19,14,0,0.00,'fixed',1),(19,16,0,0.00,'fixed',1),(19,17,0,0.00,'fixed',1),(20,2,0,0.00,'fixed',1),(20,3,0,0.00,'fixed',1),(20,4,0,0.00,'fixed',1),(20,5,0,0.00,'fixed',1),(20,8,0,0.00,'fixed',1),(20,11,0,0.00,'fixed',1),(21,1,0,0.00,'fixed',1),(21,3,0,0.00,'fixed',1),(21,5,0,0.00,'fixed',1),(21,7,0,0.00,'fixed',1),(21,11,0,0.00,'fixed',1),(21,13,0,0.00,'fixed',1),(22,4,0,0.00,'fixed',1),(22,8,0,0.00,'fixed',1),(22,9,0,0.00,'fixed',1),(22,10,0,0.00,'fixed',1),(22,11,0,0.00,'fixed',1),(22,16,0,0.00,'fixed',1),(22,18,0,0.00,'fixed',1),(23,1,0,0.00,'fixed',1),(23,3,0,0.00,'fixed',1),(23,8,0,0.00,'fixed',1),(23,13,0,0.00,'fixed',1),(23,14,0,0.00,'fixed',1),(23,16,0,0.00,'fixed',1),(23,19,0,0.00,'fixed',1),(24,5,0,0.00,'fixed',1),(24,7,0,0.00,'fixed',1),(24,11,0,0.00,'fixed',1),(24,12,0,0.00,'fixed',1),(24,14,0,0.00,'fixed',1),(24,19,0,0.00,'fixed',1),(25,1,0,0.00,'fixed',1),(25,3,0,0.00,'fixed',1),(25,5,0,0.00,'fixed',1),(25,6,0,0.00,'fixed',1),(25,7,0,0.00,'fixed',1),(25,18,0,0.00,'fixed',1),(26,5,0,0.00,'fixed',1),(26,9,0,0.00,'fixed',1),(26,10,0,0.00,'fixed',1),(26,17,0,0.00,'fixed',1),(26,18,0,0.00,'fixed',1),(26,19,0,0.00,'fixed',1),(27,3,0,0.00,'fixed',1),(27,7,0,0.00,'fixed',1),(27,9,0,0.00,'fixed',1),(27,12,0,0.00,'fixed',1),(27,14,0,0.00,'fixed',1),(27,17,0,0.00,'fixed',1),(27,18,0,0.00,'fixed',1),(28,4,0,0.00,'fixed',1),(28,5,0,0.00,'fixed',1),(28,13,0,0.00,'fixed',1),(28,17,0,0.00,'fixed',1),(29,1,0,0.00,'fixed',1),(29,2,0,0.00,'fixed',1),(29,5,0,0.00,'fixed',1),(29,7,0,0.00,'fixed',1),(29,10,0,0.00,'fixed',1),(29,14,0,0.00,'fixed',1),(30,1,0,0.00,'fixed',1),(30,2,0,0.00,'fixed',1),(30,3,0,0.00,'fixed',1),(30,8,0,0.00,'fixed',1),(30,12,0,0.00,'fixed',1),(30,13,0,0.00,'fixed',1),(30,15,0,0.00,'fixed',1),(31,3,0,0.00,'fixed',1),(31,4,0,0.00,'fixed',1),(31,6,0,0.00,'fixed',1),(31,7,0,0.00,'fixed',1),(31,8,0,0.00,'fixed',1),(31,19,0,0.00,'fixed',1),(32,2,0,0.00,'fixed',1),(32,4,0,0.00,'fixed',1),(32,5,0,0.00,'fixed',1),(32,13,0,0.00,'fixed',1),(32,15,0,0.00,'fixed',1),(32,17,0,0.00,'fixed',1),(33,2,0,0.00,'fixed',1),(33,3,0,0.00,'fixed',1),(33,11,0,0.00,'fixed',1),(33,12,0,0.00,'fixed',1),(33,13,0,0.00,'fixed',1),(33,17,0,0.00,'fixed',1),(34,5,0,0.00,'fixed',1),(34,11,0,0.00,'fixed',1),(34,12,0,0.00,'fixed',1),(34,14,0,0.00,'fixed',1),(34,15,0,0.00,'fixed',1),(34,17,0,0.00,'fixed',1),(35,1,0,0.00,'fixed',1),(35,3,0,0.00,'fixed',1),(35,4,0,0.00,'fixed',1),(35,6,0,0.00,'fixed',1),(35,11,0,0.00,'fixed',1),(35,18,0,0.00,'fixed',1),(35,19,0,0.00,'fixed',1),(36,1,0,0.00,'fixed',1),(36,4,0,0.00,'fixed',1),(36,6,0,0.00,'fixed',1),(36,8,0,0.00,'fixed',1),(36,9,0,0.00,'fixed',1),(36,15,0,0.00,'fixed',1),(37,2,0,0.00,'fixed',1),(37,4,0,0.00,'fixed',1),(37,5,0,0.00,'fixed',1),(37,15,0,0.00,'fixed',1),(37,16,0,0.00,'fixed',1),(37,18,0,0.00,'fixed',1),(38,1,0,0.00,'fixed',1),(38,4,0,0.00,'fixed',1),(38,8,0,0.00,'fixed',1),(38,10,0,0.00,'fixed',1),(38,12,0,0.00,'fixed',1),(38,15,0,0.00,'fixed',1),(39,5,0,0.00,'fixed',1),(39,8,0,0.00,'fixed',1),(39,9,0,0.00,'fixed',1),(39,18,0,0.00,'fixed',1),(39,19,0,0.00,'fixed',1),(40,1,0,0.00,'fixed',1),(40,3,0,0.00,'fixed',1),(40,4,0,0.00,'fixed',1),(40,6,0,0.00,'fixed',1),(40,8,0,0.00,'fixed',1),(40,17,0,0.00,'fixed',1),(40,19,0,0.00,'fixed',1),(41,1,0,0.00,'fixed',1),(41,2,0,0.00,'fixed',1),(41,3,0,0.00,'fixed',1),(41,7,0,0.00,'fixed',1),(41,9,0,0.00,'fixed',1),(41,13,0,0.00,'fixed',1),(41,17,0,0.00,'fixed',1),(42,3,0,0.00,'fixed',1),(42,7,0,0.00,'fixed',1),(42,9,0,0.00,'fixed',1),(42,11,0,0.00,'fixed',1),(42,14,0,0.00,'fixed',1),(43,4,0,0.00,'fixed',1),(43,5,0,0.00,'fixed',1),(43,7,0,0.00,'fixed',1),(43,12,0,0.00,'fixed',1),(43,13,0,0.00,'fixed',1),(43,14,0,0.00,'fixed',1),(43,18,0,0.00,'fixed',1),(44,2,0,0.00,'fixed',1),(44,3,0,0.00,'fixed',1),(44,5,0,0.00,'fixed',1),(44,7,0,0.00,'fixed',1),(44,12,0,0.00,'fixed',1),(44,19,0,0.00,'fixed',1),(45,1,0,0.00,'fixed',1),(45,5,0,0.00,'fixed',1),(45,9,0,0.00,'fixed',1),(45,13,0,0.00,'fixed',1),(45,14,0,0.00,'fixed',1),(45,15,0,0.00,'fixed',1),(46,4,0,0.00,'fixed',1),(46,10,0,0.00,'fixed',1),(46,11,0,0.00,'fixed',1),(46,15,0,0.00,'fixed',1),(46,16,0,0.00,'fixed',1),(47,11,0,0.00,'fixed',1),(47,12,0,0.00,'fixed',1),(47,13,0,0.00,'fixed',1),(47,15,0,0.00,'fixed',1),(47,17,0,0.00,'fixed',1),(47,18,0,0.00,'fixed',1),(48,5,0,0.00,'fixed',1),(48,9,0,0.00,'fixed',1),(48,10,0,0.00,'fixed',1),(48,11,0,0.00,'fixed',1),(48,16,0,0.00,'fixed',1),(48,18,0,0.00,'fixed',1),(49,1,0,0.00,'fixed',1),(49,3,0,0.00,'fixed',1),(49,6,0,0.00,'fixed',1),(49,11,0,0.00,'fixed',1),(49,18,0,0.00,'fixed',1),(49,19,0,0.00,'fixed',1),(50,3,0,0.00,'fixed',1),(50,5,0,0.00,'fixed',1),(50,8,0,0.00,'fixed',1),(50,12,0,0.00,'fixed',1),(50,13,0,0.00,'fixed',1),(50,17,0,0.00,'fixed',1),(51,5,0,0.00,'fixed',1),(51,8,0,0.00,'fixed',1),(51,11,0,0.00,'fixed',1),(51,12,0,0.00,'fixed',1),(52,2,0,0.00,'fixed',1),(52,6,0,0.00,'fixed',1),(52,7,0,0.00,'fixed',1),(52,9,0,0.00,'fixed',1),(52,15,0,0.00,'fixed',1),(52,17,0,0.00,'fixed',1),(53,2,0,0.00,'fixed',1),(53,10,0,0.00,'fixed',1),(53,12,0,0.00,'fixed',1),(53,16,0,0.00,'fixed',1),(53,17,0,0.00,'fixed',1),(53,19,0,0.00,'fixed',1),(54,8,0,0.00,'fixed',1),(54,9,0,0.00,'fixed',1),(54,10,0,0.00,'fixed',1),(54,16,0,0.00,'fixed',1),(54,19,0,0.00,'fixed',1),(55,7,0,0.00,'fixed',1),(55,9,0,0.00,'fixed',1),(55,10,0,0.00,'fixed',1),(55,13,0,0.00,'fixed',1),(55,16,0,0.00,'fixed',1),(56,5,0,0.00,'fixed',1),(56,7,0,0.00,'fixed',1),(56,11,0,0.00,'fixed',1),(56,14,0,0.00,'fixed',1),(56,18,0,0.00,'fixed',1),(56,19,0,0.00,'fixed',1),(57,2,0,0.00,'fixed',1),(57,4,0,0.00,'fixed',1),(57,6,0,0.00,'fixed',1),(57,7,0,0.00,'fixed',1),(57,15,0,0.00,'fixed',1),(57,19,0,0.00,'fixed',1),(58,2,0,0.00,'fixed',1),(58,10,0,0.00,'fixed',1),(58,13,0,0.00,'fixed',1),(58,15,0,0.00,'fixed',1),(58,17,0,0.00,'fixed',1),(58,18,0,0.00,'fixed',1),(59,3,0,0.00,'fixed',1),(59,4,0,0.00,'fixed',1),(59,5,0,0.00,'fixed',1),(59,9,0,0.00,'fixed',1),(59,13,0,0.00,'fixed',1),(60,3,0,0.00,'fixed',1),(60,5,0,0.00,'fixed',1),(60,6,0,0.00,'fixed',1),(60,10,0,0.00,'fixed',1),(60,12,0,0.00,'fixed',1),(61,5,0,0.00,'fixed',1),(61,9,0,0.00,'fixed',1),(61,12,0,0.00,'fixed',1),(61,13,0,0.00,'fixed',1),(61,14,0,0.00,'fixed',1),(61,18,0,0.00,'fixed',1),(62,7,0,0.00,'fixed',1),(62,8,0,0.00,'fixed',1),(62,10,0,0.00,'fixed',1),(62,11,0,0.00,'fixed',1),(62,17,0,0.00,'fixed',1),(62,19,0,0.00,'fixed',1),(63,3,0,0.00,'fixed',1),(63,5,0,0.00,'fixed',1),(63,9,0,0.00,'fixed',1),(63,13,0,0.00,'fixed',1),(63,14,0,0.00,'fixed',1),(63,15,0,0.00,'fixed',1),(63,16,0,0.00,'fixed',1),(64,1,0,0.00,'fixed',1),(64,2,0,0.00,'fixed',1),(64,6,0,0.00,'fixed',1),(64,10,0,0.00,'fixed',1),(64,12,0,0.00,'fixed',1),(64,13,0,0.00,'fixed',1),(64,16,0,0.00,'fixed',1),(65,2,0,0.00,'fixed',1),(65,13,0,0.00,'fixed',1),(65,14,0,0.00,'fixed',1),(65,15,0,0.00,'fixed',1),(65,17,0,0.00,'fixed',1); /*!40000 ALTER TABLE `ec_product_cross_sale_relations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_files` -- DROP TABLE IF EXISTS `ec_product_files`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_files` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `product_id` bigint unsigned DEFAULT NULL, `url` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `extras` mediumtext COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `ec_product_files_product_id_index` (`product_id`) ) ENGINE=InnoDB AUTO_INCREMENT=125 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_files` -- LOCK TABLES `ec_product_files` WRITE; /*!40000 ALTER TABLE `ec_product_files` DISABLE KEYS */; INSERT INTO `ec_product_files` VALUES (1,66,'ecommerce/digital-product-files/1.jpg','{\"filename\":\"1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"1\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(2,67,'ecommerce/digital-product-files/1.jpg','{\"filename\":\"1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"1\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(3,77,'ecommerce/digital-product-files/5.jpg','{\"filename\":\"5.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/5.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"5\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(4,77,'ecommerce/digital-product-files/5-1.jpg','{\"filename\":\"5-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/5-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"5-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(5,77,'ecommerce/digital-product-files/5-2.jpg','{\"filename\":\"5-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/5-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"5-2\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(6,77,'ecommerce/digital-product-files/5-3.jpg','{\"filename\":\"5-3.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/5-3.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"5-3\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(7,78,'ecommerce/digital-product-files/5.jpg','{\"filename\":\"5.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/5.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"5\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(8,78,'ecommerce/digital-product-files/5-1.jpg','{\"filename\":\"5-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/5-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"5-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(9,78,'ecommerce/digital-product-files/5-2.jpg','{\"filename\":\"5-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/5-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"5-2\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(10,78,'ecommerce/digital-product-files/5-3.jpg','{\"filename\":\"5-3.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/5-3.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"5-3\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(11,83,'ecommerce/digital-product-files/9.jpg','{\"filename\":\"9.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/9.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"9\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(12,83,'ecommerce/digital-product-files/9-1.jpg','{\"filename\":\"9-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/9-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"9-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(13,83,'ecommerce/digital-product-files/9-2.jpg','{\"filename\":\"9-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/9-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"9-2\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(14,91,'ecommerce/digital-product-files/13.jpg','{\"filename\":\"13.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/13.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"13\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(15,91,'ecommerce/digital-product-files/13-1.jpg','{\"filename\":\"13-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/13-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"13-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(16,92,'ecommerce/digital-product-files/13.jpg','{\"filename\":\"13.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/13.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"13\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(17,92,'ecommerce/digital-product-files/13-1.jpg','{\"filename\":\"13-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/13-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"13-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(18,100,'ecommerce/digital-product-files/17.jpg','{\"filename\":\"17.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/17.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"17\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(19,100,'ecommerce/digital-product-files/17-1.jpg','{\"filename\":\"17-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/17-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"17-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(20,100,'ecommerce/digital-product-files/17-2.jpg','{\"filename\":\"17-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/17-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"17-2\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(21,100,'ecommerce/digital-product-files/17-3.jpg','{\"filename\":\"17-3.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/17-3.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"17-3\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(22,101,'ecommerce/digital-product-files/17.jpg','{\"filename\":\"17.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/17.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"17\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(23,101,'ecommerce/digital-product-files/17-1.jpg','{\"filename\":\"17-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/17-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"17-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(24,101,'ecommerce/digital-product-files/17-2.jpg','{\"filename\":\"17-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/17-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"17-2\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(25,101,'ecommerce/digital-product-files/17-3.jpg','{\"filename\":\"17-3.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/17-3.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"17-3\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(26,102,'ecommerce/digital-product-files/17.jpg','{\"filename\":\"17.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/17.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"17\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(27,102,'ecommerce/digital-product-files/17-1.jpg','{\"filename\":\"17-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/17-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"17-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(28,102,'ecommerce/digital-product-files/17-2.jpg','{\"filename\":\"17-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/17-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"17-2\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(29,102,'ecommerce/digital-product-files/17-3.jpg','{\"filename\":\"17-3.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/17-3.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"17-3\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(30,103,'ecommerce/digital-product-files/17.jpg','{\"filename\":\"17.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/17.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"17\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(31,103,'ecommerce/digital-product-files/17-1.jpg','{\"filename\":\"17-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/17-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"17-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(32,103,'ecommerce/digital-product-files/17-2.jpg','{\"filename\":\"17-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/17-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"17-2\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(33,103,'ecommerce/digital-product-files/17-3.jpg','{\"filename\":\"17-3.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/17-3.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"17-3\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(34,114,'ecommerce/digital-product-files/21.jpg','{\"filename\":\"21.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/21.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"21\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(35,114,'ecommerce/digital-product-files/21-1.jpg','{\"filename\":\"21-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/21-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"21-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(36,114,'ecommerce/digital-product-files/21-2.jpg','{\"filename\":\"21-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/21-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"21-2\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(37,115,'ecommerce/digital-product-files/21.jpg','{\"filename\":\"21.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/21.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"21\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(38,115,'ecommerce/digital-product-files/21-1.jpg','{\"filename\":\"21-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/21-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"21-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(39,115,'ecommerce/digital-product-files/21-2.jpg','{\"filename\":\"21-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/21-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"21-2\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(40,124,'ecommerce/digital-product-files/25.jpg','{\"filename\":\"25.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/25.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"25\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(41,124,'ecommerce/digital-product-files/25-1.jpg','{\"filename\":\"25-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/25-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"25-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(42,124,'ecommerce/digital-product-files/25-2.jpg','{\"filename\":\"25-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/25-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"25-2\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(43,125,'ecommerce/digital-product-files/25.jpg','{\"filename\":\"25.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/25.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"25\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(44,125,'ecommerce/digital-product-files/25-1.jpg','{\"filename\":\"25-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/25-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"25-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(45,125,'ecommerce/digital-product-files/25-2.jpg','{\"filename\":\"25-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/25-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"25-2\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(46,126,'ecommerce/digital-product-files/25.jpg','{\"filename\":\"25.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/25.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"25\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(47,126,'ecommerce/digital-product-files/25-1.jpg','{\"filename\":\"25-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/25-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"25-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(48,126,'ecommerce/digital-product-files/25-2.jpg','{\"filename\":\"25-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/25-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"25-2\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(49,134,'ecommerce/digital-product-files/29.jpg','{\"filename\":\"29.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/29.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"29\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(50,134,'ecommerce/digital-product-files/29-1.jpg','{\"filename\":\"29-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/29-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"29-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(51,134,'ecommerce/digital-product-files/29-2.jpg','{\"filename\":\"29-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/29-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"29-2\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(52,135,'ecommerce/digital-product-files/29.jpg','{\"filename\":\"29.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/29.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"29\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(53,135,'ecommerce/digital-product-files/29-1.jpg','{\"filename\":\"29-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/29-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"29-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(54,135,'ecommerce/digital-product-files/29-2.jpg','{\"filename\":\"29-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/29-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"29-2\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(55,144,'ecommerce/digital-product-files/33.jpg','{\"filename\":\"33.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/33.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"33\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(56,144,'ecommerce/digital-product-files/33-1.jpg','{\"filename\":\"33-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/33-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"33-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(57,144,'ecommerce/digital-product-files/33-2.jpg','{\"filename\":\"33-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/33-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"33-2\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(58,145,'ecommerce/digital-product-files/33.jpg','{\"filename\":\"33.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/33.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"33\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(59,145,'ecommerce/digital-product-files/33-1.jpg','{\"filename\":\"33-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/33-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"33-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(60,145,'ecommerce/digital-product-files/33-2.jpg','{\"filename\":\"33-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/33-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"33-2\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(61,146,'ecommerce/digital-product-files/33.jpg','{\"filename\":\"33.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/33.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"33\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(62,146,'ecommerce/digital-product-files/33-1.jpg','{\"filename\":\"33-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/33-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"33-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(63,146,'ecommerce/digital-product-files/33-2.jpg','{\"filename\":\"33-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/33-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"33-2\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(64,147,'ecommerce/digital-product-files/33.jpg','{\"filename\":\"33.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/33.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"33\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(65,147,'ecommerce/digital-product-files/33-1.jpg','{\"filename\":\"33-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/33-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"33-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(66,147,'ecommerce/digital-product-files/33-2.jpg','{\"filename\":\"33-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/33-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"33-2\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(67,154,'ecommerce/digital-product-files/37.jpg','{\"filename\":\"37.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/37.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"37\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(68,154,'ecommerce/digital-product-files/37-1.jpg','{\"filename\":\"37-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/37-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"37-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(69,154,'ecommerce/digital-product-files/37-2.jpg','{\"filename\":\"37-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/37-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"37-2\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(70,155,'ecommerce/digital-product-files/37.jpg','{\"filename\":\"37.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/37.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"37\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(71,155,'ecommerce/digital-product-files/37-1.jpg','{\"filename\":\"37-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/37-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"37-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(72,155,'ecommerce/digital-product-files/37-2.jpg','{\"filename\":\"37-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/37-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"37-2\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(73,156,'ecommerce/digital-product-files/37.jpg','{\"filename\":\"37.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/37.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"37\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(74,156,'ecommerce/digital-product-files/37-1.jpg','{\"filename\":\"37-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/37-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"37-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(75,156,'ecommerce/digital-product-files/37-2.jpg','{\"filename\":\"37-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/37-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"37-2\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(76,168,'ecommerce/digital-product-files/41.jpg','{\"filename\":\"41.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/41.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"41\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(77,168,'ecommerce/digital-product-files/41-1.jpg','{\"filename\":\"41-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/41-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"41-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(78,168,'ecommerce/digital-product-files/41-2.jpg','{\"filename\":\"41-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/41-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"41-2\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(79,169,'ecommerce/digital-product-files/41.jpg','{\"filename\":\"41.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/41.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"41\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(80,169,'ecommerce/digital-product-files/41-1.jpg','{\"filename\":\"41-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/41-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"41-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(81,169,'ecommerce/digital-product-files/41-2.jpg','{\"filename\":\"41-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/41-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"41-2\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(82,170,'ecommerce/digital-product-files/41.jpg','{\"filename\":\"41.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/41.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"41\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(83,170,'ecommerce/digital-product-files/41-1.jpg','{\"filename\":\"41-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/41-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"41-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(84,170,'ecommerce/digital-product-files/41-2.jpg','{\"filename\":\"41-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/41-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"41-2\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(85,177,'ecommerce/digital-product-files/45.jpg','{\"filename\":\"45.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/45.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"45\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(86,177,'ecommerce/digital-product-files/45-1.jpg','{\"filename\":\"45-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/45-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"45-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(87,178,'ecommerce/digital-product-files/45.jpg','{\"filename\":\"45.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/45.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"45\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(88,178,'ecommerce/digital-product-files/45-1.jpg','{\"filename\":\"45-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/45-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"45-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(89,179,'ecommerce/digital-product-files/45.jpg','{\"filename\":\"45.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/45.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"45\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(90,179,'ecommerce/digital-product-files/45-1.jpg','{\"filename\":\"45-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/45-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:41\",\"name\":\"45-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:41','2024-06-18 23:00:41'),(91,184,'ecommerce/digital-product-files/49.jpg','{\"filename\":\"49.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/49.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"49\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'),(92,184,'ecommerce/digital-product-files/49-1.jpg','{\"filename\":\"49-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/49-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"49-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'),(93,184,'ecommerce/digital-product-files/49-2.jpg','{\"filename\":\"49-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/49-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"49-2\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'),(94,185,'ecommerce/digital-product-files/49.jpg','{\"filename\":\"49.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/49.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"49\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'),(95,185,'ecommerce/digital-product-files/49-1.jpg','{\"filename\":\"49-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/49-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"49-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'),(96,185,'ecommerce/digital-product-files/49-2.jpg','{\"filename\":\"49-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/49-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"49-2\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'),(97,186,'ecommerce/digital-product-files/49.jpg','{\"filename\":\"49.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/49.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"49\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'),(98,186,'ecommerce/digital-product-files/49-1.jpg','{\"filename\":\"49-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/49-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"49-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'),(99,186,'ecommerce/digital-product-files/49-2.jpg','{\"filename\":\"49-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/49-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"49-2\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'),(100,195,'ecommerce/digital-product-files/53.jpg','{\"filename\":\"53.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/53.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"53\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'),(101,195,'ecommerce/digital-product-files/53-1.jpg','{\"filename\":\"53-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/53-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"53-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'),(102,196,'ecommerce/digital-product-files/53.jpg','{\"filename\":\"53.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/53.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"53\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'),(103,196,'ecommerce/digital-product-files/53-1.jpg','{\"filename\":\"53-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/53-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"53-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'),(104,197,'ecommerce/digital-product-files/53.jpg','{\"filename\":\"53.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/53.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"53\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'),(105,197,'ecommerce/digital-product-files/53-1.jpg','{\"filename\":\"53-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/53-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"53-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'),(106,205,'ecommerce/digital-product-files/57.jpg','{\"filename\":\"57.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/57.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"57\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'),(107,205,'ecommerce/digital-product-files/57-1.jpg','{\"filename\":\"57-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/57-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"57-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'),(108,206,'ecommerce/digital-product-files/57.jpg','{\"filename\":\"57.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/57.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"57\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'),(109,206,'ecommerce/digital-product-files/57-1.jpg','{\"filename\":\"57-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/57-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"57-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'),(110,207,'ecommerce/digital-product-files/57.jpg','{\"filename\":\"57.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/57.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"57\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'),(111,207,'ecommerce/digital-product-files/57-1.jpg','{\"filename\":\"57-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/57-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"57-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'),(112,215,'ecommerce/digital-product-files/61.jpg','{\"filename\":\"61.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/61.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"61\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'),(113,215,'ecommerce/digital-product-files/61-1.jpg','{\"filename\":\"61-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/61-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"61-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'),(114,216,'ecommerce/digital-product-files/61.jpg','{\"filename\":\"61.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/61.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"61\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'),(115,216,'ecommerce/digital-product-files/61-1.jpg','{\"filename\":\"61-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/61-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"61-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'),(116,224,'ecommerce/digital-product-files/65.jpg','{\"filename\":\"65.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/65.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"65\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'),(117,224,'ecommerce/digital-product-files/65-1.jpg','{\"filename\":\"65-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/65-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"65-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'),(118,224,'ecommerce/digital-product-files/65-2.jpg','{\"filename\":\"65-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/65-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"65-2\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'),(119,225,'ecommerce/digital-product-files/65.jpg','{\"filename\":\"65.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/65.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"65\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'),(120,225,'ecommerce/digital-product-files/65-1.jpg','{\"filename\":\"65-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/65-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"65-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'),(121,225,'ecommerce/digital-product-files/65-2.jpg','{\"filename\":\"65-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/65-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"65-2\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'),(122,226,'ecommerce/digital-product-files/65.jpg','{\"filename\":\"65.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/65.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"65\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'),(123,226,'ecommerce/digital-product-files/65-1.jpg','{\"filename\":\"65-1.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/65-1.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"65-1\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'),(124,226,'ecommerce/digital-product-files/65-2.jpg','{\"filename\":\"65-2.jpg\",\"url\":\"ecommerce\\/digital-product-files\\/65-2.jpg\",\"mime_type\":\"image\\/jpeg\",\"size\":34111,\"modified\":\"2024-06-19 06:00:42\",\"name\":\"65-2\",\"extension\":\"jpg\"}','2024-06-18 23:00:42','2024-06-18 23:00:42'); /*!40000 ALTER TABLE `ec_product_files` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_label_products` -- DROP TABLE IF EXISTS `ec_product_label_products`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_label_products` ( `product_label_id` bigint unsigned NOT NULL, `product_id` bigint unsigned NOT NULL, PRIMARY KEY (`product_label_id`,`product_id`), KEY `ec_product_label_products_product_label_id_index` (`product_label_id`), KEY `ec_product_label_products_product_id_index` (`product_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_label_products` -- LOCK TABLES `ec_product_label_products` WRITE; /*!40000 ALTER TABLE `ec_product_label_products` DISABLE KEYS */; INSERT INTO `ec_product_label_products` VALUES (1,6),(1,9),(1,39),(1,45),(1,63),(2,12),(2,15),(2,18),(2,30),(2,33),(2,51),(2,57),(2,60),(3,3),(3,21),(3,24),(3,27),(3,36),(3,42),(3,48),(3,54); /*!40000 ALTER TABLE `ec_product_label_products` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_labels` -- DROP TABLE IF EXISTS `ec_product_labels`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_labels` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `color` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_labels` -- LOCK TABLES `ec_product_labels` WRITE; /*!40000 ALTER TABLE `ec_product_labels` DISABLE KEYS */; INSERT INTO `ec_product_labels` VALUES (1,'Hot','#d71e2d','published','2024-06-18 23:00:06','2024-06-18 23:00:06'),(2,'New','#02856e','published','2024-06-18 23:00:06','2024-06-18 23:00:06'),(3,'Sale','#fe9931','published','2024-06-18 23:00:06','2024-06-18 23:00:06'); /*!40000 ALTER TABLE `ec_product_labels` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_labels_translations` -- DROP TABLE IF EXISTS `ec_product_labels_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_labels_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_product_labels_id` bigint unsigned NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`ec_product_labels_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_labels_translations` -- LOCK TABLES `ec_product_labels_translations` WRITE; /*!40000 ALTER TABLE `ec_product_labels_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_product_labels_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_related_relations` -- DROP TABLE IF EXISTS `ec_product_related_relations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_related_relations` ( `from_product_id` bigint unsigned NOT NULL, `to_product_id` bigint unsigned NOT NULL, PRIMARY KEY (`from_product_id`,`to_product_id`), KEY `ec_product_related_relations_from_product_id_index` (`from_product_id`), KEY `ec_product_related_relations_to_product_id_index` (`to_product_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_related_relations` -- LOCK TABLES `ec_product_related_relations` WRITE; /*!40000 ALTER TABLE `ec_product_related_relations` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_product_related_relations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_tag_product` -- DROP TABLE IF EXISTS `ec_product_tag_product`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_tag_product` ( `product_id` bigint unsigned NOT NULL, `tag_id` bigint unsigned NOT NULL, PRIMARY KEY (`product_id`,`tag_id`), KEY `ec_product_tag_product_product_id_index` (`product_id`), KEY `ec_product_tag_product_tag_id_index` (`tag_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_tag_product` -- LOCK TABLES `ec_product_tag_product` WRITE; /*!40000 ALTER TABLE `ec_product_tag_product` DISABLE KEYS */; INSERT INTO `ec_product_tag_product` VALUES (1,1),(1,6),(2,1),(2,4),(2,5),(3,1),(3,2),(4,1),(4,2),(5,2),(5,5),(6,2),(6,3),(6,6),(7,4),(7,6),(8,2),(8,3),(9,5),(9,6),(10,3),(10,5),(10,6),(11,5),(11,6),(12,4),(12,5),(12,6),(13,4),(13,5),(13,6),(14,2),(14,3),(14,5),(15,3),(15,4),(16,4),(16,5),(16,6),(17,1),(17,3),(17,4),(18,1),(18,2),(18,6),(19,2),(19,4),(19,6),(20,2),(20,3),(21,3),(21,5),(22,3),(22,6),(23,1),(23,2),(23,5),(24,1),(24,6),(25,1),(25,5),(26,3),(26,4),(27,1),(27,2),(27,6),(28,3),(28,5),(28,6),(29,1),(29,4),(29,6),(30,3),(30,6),(31,3),(31,5),(32,2),(32,3),(32,4),(33,2),(33,3),(33,4),(34,6),(35,3),(35,5),(36,1),(36,2),(37,1),(37,2),(38,4),(38,5),(38,6),(39,4),(39,5),(39,6),(40,1),(40,4),(41,1),(41,3),(42,2),(42,3),(43,1),(43,3),(43,4),(44,2),(44,4),(44,6),(45,5),(45,6),(46,3),(46,4),(47,1),(47,5),(47,6),(48,1),(48,3),(48,5),(49,2),(49,4),(49,6),(50,2),(50,3),(50,5),(51,1),(51,2),(51,5),(52,4),(53,1),(53,5),(54,2),(54,4),(54,6),(55,5),(55,6),(56,1),(56,2),(56,5),(57,2),(57,4),(58,5),(58,6),(59,2),(59,3),(59,5),(60,1),(60,2),(60,3),(61,1),(61,4),(61,5),(62,1),(62,3),(62,6),(63,2),(63,3),(63,4),(64,1),(64,3),(65,2),(65,4),(65,6); /*!40000 ALTER TABLE `ec_product_tag_product` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_tags` -- DROP TABLE IF EXISTS `ec_product_tags`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_tags` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_tags` -- LOCK TABLES `ec_product_tags` WRITE; /*!40000 ALTER TABLE `ec_product_tags` DISABLE KEYS */; INSERT INTO `ec_product_tags` VALUES (1,'Electronic',NULL,'published','2024-06-18 23:00:42','2024-06-18 23:00:42'),(2,'Mobile',NULL,'published','2024-06-18 23:00:42','2024-06-18 23:00:42'),(3,'Iphone',NULL,'published','2024-06-18 23:00:42','2024-06-18 23:00:42'),(4,'Printer',NULL,'published','2024-06-18 23:00:42','2024-06-18 23:00:42'),(5,'Office',NULL,'published','2024-06-18 23:00:42','2024-06-18 23:00:42'),(6,'IT',NULL,'published','2024-06-18 23:00:42','2024-06-18 23:00:42'); /*!40000 ALTER TABLE `ec_product_tags` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_tags_translations` -- DROP TABLE IF EXISTS `ec_product_tags_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_tags_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_product_tags_id` bigint unsigned NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`ec_product_tags_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_tags_translations` -- LOCK TABLES `ec_product_tags_translations` WRITE; /*!40000 ALTER TABLE `ec_product_tags_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_product_tags_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_up_sale_relations` -- DROP TABLE IF EXISTS `ec_product_up_sale_relations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_up_sale_relations` ( `from_product_id` bigint unsigned NOT NULL, `to_product_id` bigint unsigned NOT NULL, PRIMARY KEY (`from_product_id`,`to_product_id`), KEY `ec_product_up_sale_relations_from_product_id_index` (`from_product_id`), KEY `ec_product_up_sale_relations_to_product_id_index` (`to_product_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_up_sale_relations` -- LOCK TABLES `ec_product_up_sale_relations` WRITE; /*!40000 ALTER TABLE `ec_product_up_sale_relations` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_product_up_sale_relations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_variation_items` -- DROP TABLE IF EXISTS `ec_product_variation_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_variation_items` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `attribute_id` bigint unsigned NOT NULL, `variation_id` bigint unsigned NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ec_product_variation_items_attribute_id_variation_id_unique` (`attribute_id`,`variation_id`), KEY `attribute_variation_index` (`attribute_id`,`variation_id`) ) ENGINE=InnoDB AUTO_INCREMENT=323 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_variation_items` -- LOCK TABLES `ec_product_variation_items` WRITE; /*!40000 ALTER TABLE `ec_product_variation_items` DISABLE KEYS */; INSERT INTO `ec_product_variation_items` VALUES (3,1,2),(9,1,5),(21,1,11),(35,1,18),(43,1,22),(51,1,26),(57,1,29),(63,1,32),(67,1,34),(91,1,46),(103,1,52),(7,2,4),(19,2,10),(29,2,15),(39,2,20),(49,2,25),(71,2,36),(81,2,41),(93,2,47),(97,2,49),(1,3,1),(5,3,3),(55,3,28),(65,3,33),(75,3,38),(77,3,39),(89,3,45),(99,3,50),(11,4,6),(13,4,7),(15,4,8),(17,4,9),(23,4,12),(33,4,17),(37,4,19),(41,4,21),(47,4,24),(53,4,27),(59,4,30),(79,4,40),(85,4,43),(87,4,44),(25,5,13),(27,5,14),(31,5,16),(45,5,23),(61,5,31),(69,5,35),(73,5,37),(83,5,42),(95,5,48),(101,5,51),(105,5,53),(107,5,54),(109,5,55),(44,6,22),(56,6,28),(58,6,29),(62,6,31),(64,6,32),(80,6,40),(82,6,41),(92,6,46),(28,7,14),(30,7,15),(40,7,20),(46,7,23),(68,7,34),(70,7,35),(76,7,38),(78,7,39),(84,7,42),(94,7,47),(102,7,51),(104,7,52),(2,8,1),(4,8,2),(8,8,4),(14,8,7),(16,8,8),(24,8,12),(32,8,16),(36,8,18),(42,8,21),(48,8,24),(50,8,25),(106,8,53),(110,8,55),(10,9,5),(12,9,6),(18,9,9),(20,9,10),(22,9,11),(52,9,26),(54,9,27),(60,9,30),(66,9,33),(72,9,36),(86,9,43),(90,9,45),(6,10,3),(26,10,13),(34,10,17),(38,10,19),(74,10,37),(88,10,44),(96,10,48),(98,10,49),(100,10,50),(108,10,54),(127,11,64),(145,11,73),(149,11,75),(155,11,78),(159,11,80),(167,11,84),(179,11,90),(193,11,97),(209,11,105),(225,11,113),(239,11,120),(249,11,125),(253,11,127),(263,11,132),(267,11,134),(273,11,137),(279,11,140),(301,11,151),(311,11,156),(317,11,159),(123,12,62),(131,12,66),(137,12,69),(153,12,77),(157,12,79),(171,12,86),(175,12,88),(187,12,94),(195,12,98),(229,12,115),(231,12,116),(269,12,135),(271,12,136),(281,12,141),(283,12,142),(295,12,148),(299,12,150),(309,12,155),(113,13,57),(139,13,70),(141,13,71),(147,13,74),(161,13,81),(163,13,82),(173,13,87),(181,13,91),(183,13,92),(189,13,95),(203,13,102),(211,13,106),(221,13,111),(243,13,122),(255,13,128),(275,13,138),(287,13,144),(291,13,146),(297,13,149),(303,13,152),(305,13,153),(307,13,154),(319,13,160),(321,13,161),(117,14,59),(119,14,60),(129,14,65),(133,14,67),(135,14,68),(151,14,76),(169,14,85),(185,14,93),(191,14,96),(199,14,100),(207,14,104),(213,14,107),(215,14,108),(217,14,109),(219,14,110),(227,14,114),(233,14,117),(237,14,119),(241,14,121),(259,14,130),(261,14,131),(277,14,139),(289,14,145),(293,14,147),(111,15,56),(115,15,58),(121,15,61),(125,15,63),(143,15,72),(165,15,83),(177,15,89),(197,15,99),(201,15,101),(205,15,103),(223,15,112),(235,15,118),(245,15,123),(247,15,124),(251,15,126),(257,15,129),(265,15,133),(285,15,143),(313,15,157),(315,15,158),(112,16,56),(116,16,58),(126,16,63),(128,16,64),(130,16,65),(132,16,66),(148,16,74),(172,16,86),(196,16,98),(218,16,109),(224,16,112),(232,16,116),(240,16,120),(256,16,128),(272,16,136),(280,16,140),(294,16,147),(308,16,154),(310,16,155),(114,17,57),(122,17,61),(152,17,76),(156,17,78),(190,17,95),(200,17,100),(206,17,103),(208,17,104),(210,17,105),(216,17,108),(226,17,113),(234,17,117),(254,17,127),(268,17,134),(300,17,150),(302,17,151),(316,17,158),(322,17,161),(118,18,59),(140,18,70),(142,18,71),(146,18,73),(168,18,84),(174,18,87),(180,18,90),(182,18,91),(188,18,94),(202,18,101),(228,18,114),(242,18,121),(250,18,125),(260,18,130),(276,18,138),(278,18,139),(286,18,143),(296,18,148),(298,18,149),(312,18,156),(318,18,159),(120,19,60),(134,19,67),(138,19,69),(158,19,79),(164,19,82),(166,19,83),(176,19,88),(186,19,93),(194,19,97),(204,19,102),(214,19,107),(220,19,110),(238,19,119),(248,19,124),(252,19,126),(258,19,129),(262,19,131),(264,19,132),(270,19,135),(274,19,137),(284,19,142),(304,19,152),(124,20,62),(136,20,68),(144,20,72),(150,20,75),(154,20,77),(160,20,80),(162,20,81),(170,20,85),(178,20,89),(184,20,92),(192,20,96),(198,20,99),(212,20,106),(222,20,111),(230,20,115),(236,20,118),(244,20,122),(246,20,123),(266,20,133),(282,20,141),(288,20,144),(290,20,145),(292,20,146),(306,20,153),(314,20,157),(320,20,160); /*!40000 ALTER TABLE `ec_product_variation_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_variations` -- DROP TABLE IF EXISTS `ec_product_variations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_variations` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `product_id` bigint unsigned DEFAULT NULL, `configurable_product_id` bigint unsigned NOT NULL, `is_default` tinyint NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `ec_product_variations_product_id_configurable_product_id_unique` (`product_id`,`configurable_product_id`), KEY `configurable_product_index` (`product_id`,`configurable_product_id`) ) ENGINE=InnoDB AUTO_INCREMENT=162 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_variations` -- LOCK TABLES `ec_product_variations` WRITE; /*!40000 ALTER TABLE `ec_product_variations` DISABLE KEYS */; INSERT INTO `ec_product_variations` VALUES (1,66,1,1),(2,67,1,0),(3,68,2,1),(4,69,2,0),(5,70,2,0),(6,71,2,0),(7,72,3,1),(8,73,3,0),(9,74,3,0),(10,75,4,1),(11,76,4,0),(12,77,5,1),(13,78,5,0),(14,79,6,1),(15,80,7,1),(16,81,7,0),(17,82,8,1),(18,83,9,1),(19,84,10,1),(20,85,10,0),(21,86,10,0),(22,87,11,1),(23,88,12,1),(24,89,12,0),(25,90,12,0),(26,91,13,1),(27,92,13,0),(28,93,14,1),(29,94,14,0),(30,95,15,1),(31,96,15,0),(32,97,15,0),(33,98,16,1),(34,99,16,0),(35,100,17,1),(36,101,17,0),(37,102,17,0),(38,103,17,0),(39,104,18,1),(40,105,18,0),(41,106,18,0),(42,107,19,1),(43,108,19,0),(44,109,19,0),(45,110,19,0),(46,111,19,0),(47,112,20,1),(48,113,20,0),(49,114,21,1),(50,115,21,0),(51,116,22,1),(52,117,22,0),(53,118,22,0),(54,119,23,1),(55,120,23,0),(56,121,24,1),(57,122,24,0),(58,123,24,0),(59,124,25,1),(60,125,25,0),(61,126,25,0),(62,127,26,1),(63,128,26,0),(64,129,26,0),(65,130,27,1),(66,131,27,0),(67,132,27,0),(68,133,28,1),(69,134,29,1),(70,135,29,0),(71,136,30,1),(72,137,30,0),(73,138,30,0),(74,139,31,1),(75,140,31,0),(76,141,31,0),(77,142,32,1),(78,143,32,0),(79,144,33,1),(80,145,33,0),(81,146,33,0),(82,147,33,0),(83,148,34,1),(84,149,34,0),(85,150,35,1),(86,151,35,0),(87,152,36,1),(88,153,36,0),(89,154,37,1),(90,155,37,0),(91,156,37,0),(92,157,38,1),(93,158,38,0),(94,159,38,0),(95,160,39,1),(96,161,39,0),(97,162,39,0),(98,163,39,0),(99,164,40,1),(100,165,40,0),(101,166,40,0),(102,167,40,0),(103,168,41,1),(104,169,41,0),(105,170,41,0),(106,171,42,1),(107,172,42,0),(108,173,42,0),(109,174,43,1),(110,175,44,1),(111,176,44,0),(112,177,45,1),(113,178,45,0),(114,179,45,0),(115,180,46,1),(116,181,46,0),(117,182,47,1),(118,183,48,1),(119,184,49,1),(120,185,49,0),(121,186,49,0),(122,187,50,1),(123,188,50,0),(124,189,50,0),(125,190,50,0),(126,191,51,1),(127,192,51,0),(128,193,52,1),(129,194,52,0),(130,195,53,1),(131,196,53,0),(132,197,53,0),(133,198,54,1),(134,199,54,0),(135,200,55,1),(136,201,55,0),(137,202,56,1),(138,203,56,0),(139,204,56,0),(140,205,57,1),(141,206,57,0),(142,207,57,0),(143,208,58,1),(144,209,58,0),(145,210,58,0),(146,211,59,1),(147,212,59,0),(148,213,60,1),(149,214,60,0),(150,215,61,1),(151,216,61,0),(152,217,62,1),(153,218,63,1),(154,219,63,0),(155,220,64,1),(156,221,64,0),(157,222,64,0),(158,223,64,0),(159,224,65,1),(160,225,65,0),(161,226,65,0); /*!40000 ALTER TABLE `ec_product_variations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_views` -- DROP TABLE IF EXISTS `ec_product_views`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_views` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `product_id` bigint unsigned NOT NULL, `views` int NOT NULL DEFAULT '1', `date` date NOT NULL DEFAULT '2024-06-19', PRIMARY KEY (`id`), UNIQUE KEY `ec_product_views_product_id_date_unique` (`product_id`,`date`), KEY `ec_product_views_product_id_index` (`product_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_views` -- LOCK TABLES `ec_product_views` WRITE; /*!40000 ALTER TABLE `ec_product_views` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_product_views` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_product_with_attribute_set` -- DROP TABLE IF EXISTS `ec_product_with_attribute_set`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_product_with_attribute_set` ( `attribute_set_id` bigint unsigned NOT NULL, `product_id` bigint unsigned NOT NULL, `order` tinyint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`product_id`,`attribute_set_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_product_with_attribute_set` -- LOCK TABLES `ec_product_with_attribute_set` WRITE; /*!40000 ALTER TABLE `ec_product_with_attribute_set` DISABLE KEYS */; INSERT INTO `ec_product_with_attribute_set` VALUES (1,1,0),(2,1,0),(1,2,0),(2,2,0),(1,3,0),(2,3,0),(1,4,0),(2,4,0),(1,5,0),(2,5,0),(1,6,0),(2,6,0),(1,7,0),(2,7,0),(1,8,0),(2,8,0),(1,9,0),(2,9,0),(1,10,0),(2,10,0),(1,11,0),(2,11,0),(1,12,0),(2,12,0),(1,13,0),(2,13,0),(1,14,0),(2,14,0),(1,15,0),(2,15,0),(1,16,0),(2,16,0),(1,17,0),(2,17,0),(1,18,0),(2,18,0),(1,19,0),(2,19,0),(1,20,0),(2,20,0),(1,21,0),(2,21,0),(1,22,0),(2,22,0),(1,23,0),(2,23,0),(3,24,0),(4,24,0),(3,25,0),(4,25,0),(3,26,0),(4,26,0),(3,27,0),(4,27,0),(3,28,0),(4,28,0),(3,29,0),(4,29,0),(3,30,0),(4,30,0),(3,31,0),(4,31,0),(3,32,0),(4,32,0),(3,33,0),(4,33,0),(3,34,0),(4,34,0),(3,35,0),(4,35,0),(3,36,0),(4,36,0),(3,37,0),(4,37,0),(3,38,0),(4,38,0),(3,39,0),(4,39,0),(3,40,0),(4,40,0),(3,41,0),(4,41,0),(3,42,0),(4,42,0),(3,43,0),(4,43,0),(3,44,0),(4,44,0),(3,45,0),(4,45,0),(3,46,0),(4,46,0),(3,47,0),(4,47,0),(3,48,0),(4,48,0),(3,49,0),(4,49,0),(3,50,0),(4,50,0),(3,51,0),(4,51,0),(3,52,0),(4,52,0),(3,53,0),(4,53,0),(3,54,0),(4,54,0),(3,55,0),(4,55,0),(3,56,0),(4,56,0),(3,57,0),(4,57,0),(3,58,0),(4,58,0),(3,59,0),(4,59,0),(3,60,0),(4,60,0),(3,61,0),(4,61,0),(3,62,0),(4,62,0),(3,63,0),(4,63,0),(3,64,0),(4,64,0),(3,65,0),(4,65,0); /*!40000 ALTER TABLE `ec_product_with_attribute_set` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_products` -- DROP TABLE IF EXISTS `ec_products`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_products` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` text COLLATE utf8mb4_unicode_ci, `content` longtext COLLATE utf8mb4_unicode_ci, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `images` text COLLATE utf8mb4_unicode_ci, `sku` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order` int unsigned NOT NULL DEFAULT '0', `quantity` int unsigned DEFAULT NULL, `allow_checkout_when_out_of_stock` tinyint unsigned NOT NULL DEFAULT '0', `with_storehouse_management` tinyint unsigned NOT NULL DEFAULT '0', `is_featured` tinyint unsigned NOT NULL DEFAULT '0', `brand_id` bigint unsigned DEFAULT NULL, `is_variation` tinyint NOT NULL DEFAULT '0', `sale_type` tinyint NOT NULL DEFAULT '0', `price` double unsigned DEFAULT NULL, `sale_price` double unsigned DEFAULT NULL, `start_date` timestamp NULL DEFAULT NULL, `end_date` timestamp NULL DEFAULT NULL, `length` double(8,2) DEFAULT NULL, `wide` double(8,2) DEFAULT NULL, `height` double(8,2) DEFAULT NULL, `weight` double(8,2) DEFAULT NULL, `tax_id` bigint unsigned DEFAULT NULL, `views` bigint NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `stock_status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT 'in_stock', `created_by_id` bigint unsigned DEFAULT '0', `created_by_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User', `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_type` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT 'physical', `barcode` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `cost_per_item` double DEFAULT NULL, `generate_license_code` tinyint(1) NOT NULL DEFAULT '0', `minimum_order_quantity` int unsigned DEFAULT '0', `maximum_order_quantity` int unsigned DEFAULT '0', PRIMARY KEY (`id`), KEY `ec_products_brand_id_status_is_variation_created_at_index` (`brand_id`,`status`,`is_variation`,`created_at`), KEY `sale_type_index` (`sale_type`), KEY `start_date_index` (`start_date`), KEY `end_date_index` (`end_date`), KEY `sale_price_index` (`sale_price`), KEY `is_variation_index` (`is_variation`), KEY `ec_products_sku_index` (`sku`) ) ENGINE=InnoDB AUTO_INCREMENT=227 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_products` -- LOCK TABLES `ec_products` WRITE; /*!40000 ALTER TABLE `ec_products` DISABLE KEYS */; INSERT INTO `ec_products` VALUES (1,'Dual Camera 20MP (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/1.jpg\"]','SW-105-A0',0,15,0,1,1,5,0,0,80.25,NULL,NULL,NULL,10.00,13.00,14.00,817.00,NULL,175958,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(2,'Smart Watches','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/2.jpg\",\"products\\/2-1.jpg\",\"products\\/2-2.jpg\",\"products\\/2-3.jpg\"]','SW-191-A0',0,12,0,1,1,1,0,0,40.5,NULL,NULL,NULL,15.00,10.00,14.00,896.00,NULL,36350,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(3,'Beat Headphone','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/3.jpg\"]','SW-132-A0',0,11,0,1,1,3,0,0,20,NULL,NULL,NULL,11.00,13.00,11.00,688.00,NULL,155799,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(4,'Red & Black Headphone','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/4.jpg\",\"products\\/4-1.jpg\",\"products\\/4-2.jpg\",\"products\\/4-3.jpg\"]','SW-110-A0',0,10,0,1,1,2,0,0,541,421.98,NULL,NULL,19.00,16.00,19.00,775.00,NULL,141921,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(5,'Smart Watch External (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/5.jpg\",\"products\\/5-1.jpg\",\"products\\/5-2.jpg\",\"products\\/5-3.jpg\"]','SW-107-A0',0,17,0,1,1,1,0,0,817,NULL,NULL,NULL,19.00,20.00,14.00,860.00,NULL,18490,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(6,'Nikon HD camera','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/6.jpg\"]','SW-153-A0',0,20,0,1,1,4,0,0,403,NULL,NULL,NULL,12.00,12.00,18.00,541.00,NULL,124665,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(7,'Audio Equipment','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/7.jpg\"]','SW-198-A0',0,19,0,1,1,3,0,0,514,NULL,NULL,NULL,12.00,20.00,20.00,887.00,NULL,182543,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(8,'Smart Televisions','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/8.jpg\",\"products\\/8-1.jpg\",\"products\\/8-2.jpg\",\"products\\/8-3.jpg\"]','SW-152-A0',0,18,0,1,1,2,0,0,1123,898.4,NULL,NULL,13.00,13.00,15.00,562.00,NULL,99441,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(9,'Samsung Smart Phone (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/9.jpg\",\"products\\/9-1.jpg\",\"products\\/9-2.jpg\"]','SW-199-A0',0,10,0,1,1,1,0,0,597,NULL,NULL,NULL,19.00,12.00,19.00,749.00,NULL,133388,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(10,'Herschel Leather Duffle Bag In Brown Color','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/10.jpg\",\"products\\/10-1.jpg\",\"products\\/10-2.jpg\"]','SW-127-A0',0,16,0,1,0,5,0,0,1155,NULL,NULL,NULL,16.00,10.00,19.00,667.00,NULL,109417,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(11,'Xbox One Wireless Controller Black Color','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/11.jpg\",\"products\\/11-1.jpg\",\"products\\/11-2.jpg\",\"products\\/11-3.jpg\"]','SW-153-A0',0,15,0,1,0,3,0,0,1191,NULL,NULL,NULL,13.00,10.00,19.00,573.00,NULL,70596,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(12,'EPSION Plaster Printer','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/12.jpg\",\"products\\/12-1.jpg\",\"products\\/12-2.jpg\",\"products\\/12-3.jpg\"]','SW-149-A0',0,16,0,1,0,3,0,0,568,414.64,NULL,NULL,11.00,11.00,20.00,745.00,NULL,152742,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(13,'Sound Intone I65 Earphone White Version (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/13.jpg\",\"products\\/13-1.jpg\"]','SW-119-A0',0,17,0,1,0,2,0,0,559,NULL,NULL,NULL,14.00,19.00,20.00,837.00,NULL,13969,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(14,'B&O Play Mini Bluetooth Speaker','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/14.jpg\"]','SW-147-A0',0,16,0,1,0,5,0,0,570,NULL,NULL,NULL,15.00,18.00,17.00,897.00,NULL,64823,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(15,'Apple MacBook Air Retina 13.3-Inch Laptop','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/15.jpg\",\"products\\/15-1.jpg\"]','SW-117-A0',0,17,0,1,0,2,0,0,585,NULL,NULL,NULL,17.00,17.00,11.00,704.00,NULL,177870,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(16,'Apple MacBook Air Retina 12-Inch Laptop','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/16.jpg\"]','SW-172-A0',0,18,0,1,0,3,0,0,525,462,NULL,NULL,14.00,13.00,10.00,681.00,NULL,124014,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(17,'Samsung Gear VR Virtual Reality Headset (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/17.jpg\",\"products\\/17-1.jpg\",\"products\\/17-2.jpg\",\"products\\/17-3.jpg\"]','SW-123-A0',0,14,0,1,0,5,0,0,513,NULL,NULL,NULL,15.00,20.00,18.00,732.00,NULL,98631,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(18,'Aveeno Moisturizing Body Shower 450ml','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/18.jpg\",\"products\\/18-1.jpg\",\"products\\/18-2.jpg\",\"products\\/18-3.jpg\"]','SW-182-A0',0,10,0,1,0,3,0,0,970,NULL,NULL,NULL,19.00,19.00,20.00,791.00,NULL,119062,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(19,'NYX Beauty Couton Pallete Makeup 12','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/19.jpg\",\"products\\/19-1.jpg\",\"products\\/19-2.jpg\",\"products\\/19-3.jpg\"]','SW-183-A0',0,14,0,1,0,1,0,0,983,NULL,NULL,NULL,19.00,13.00,12.00,607.00,NULL,139877,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(20,'NYX Beauty Couton Pallete Makeup 12','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/20.jpg\",\"products\\/20-1.jpg\",\"products\\/20-2.jpg\",\"products\\/20-3.jpg\"]','SW-149-A0',0,18,0,1,0,2,0,0,761,624.02,NULL,NULL,10.00,13.00,15.00,550.00,NULL,69235,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(21,'MVMTH Classical Leather Watch In Black (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/21.jpg\",\"products\\/21-1.jpg\",\"products\\/21-2.jpg\"]','SW-104-A0',0,18,0,1,0,4,0,0,770,NULL,NULL,NULL,12.00,15.00,14.00,565.00,NULL,69038,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(22,'Baxter Care Hair Kit For Bearded Mens','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/22.jpg\",\"products\\/22-1.jpg\",\"products\\/22-2.jpg\",\"products\\/22-3.jpg\"]','SW-121-A0',0,19,0,1,0,1,0,0,402,NULL,NULL,NULL,20.00,13.00,13.00,775.00,NULL,72419,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(23,'Ciate Palemore Lipstick Bold Red Color','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/23.jpg\",\"products\\/23-1.jpg\",\"products\\/23-2.jpg\",\"products\\/23-3.jpg\"]','SW-168-A0',0,10,0,1,0,5,0,0,706,NULL,NULL,NULL,19.00,14.00,10.00,873.00,NULL,65159,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(24,'Vimto Squash Remix Apple 1.5 Litres','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/24.jpg\",\"products\\/24-1.jpg\",\"products\\/24-2.jpg\"]','SW-106-A0',0,17,0,1,0,1,0,0,727,567.06,NULL,NULL,19.00,12.00,19.00,582.00,NULL,185435,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(25,'Crock Pot Slow Cooker (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/25.jpg\",\"products\\/25-1.jpg\",\"products\\/25-2.jpg\"]','SW-113-A0',0,11,0,1,0,3,0,0,979,NULL,NULL,NULL,10.00,20.00,13.00,594.00,NULL,102118,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(26,'Taylors of Harrogate Yorkshire Coffee','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/26.jpg\",\"products\\/26-1.jpg\"]','SW-179-A0',0,17,0,1,0,2,0,0,1297,NULL,NULL,NULL,15.00,11.00,16.00,642.00,NULL,164719,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(27,'Soft Mochi & Galeto Ice Cream','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/27.jpg\",\"products\\/27-1.jpg\"]','SW-144-A0',0,20,0,1,0,5,0,0,897,NULL,NULL,NULL,16.00,18.00,16.00,745.00,NULL,149546,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(28,'Naked Noodle Egg Noodles Singapore','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/28.jpg\",\"products\\/28-1.jpg\",\"products\\/28-2.jpg\"]','SW-176-A0',0,13,0,1,0,4,0,0,1024,829.44,NULL,NULL,12.00,13.00,15.00,564.00,NULL,12288,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(29,'Saute Pan Silver (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/29.jpg\",\"products\\/29-1.jpg\",\"products\\/29-2.jpg\"]','SW-129-A0',0,13,0,1,0,2,0,0,1126,NULL,NULL,NULL,11.00,18.00,11.00,749.00,NULL,185104,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(30,'Bar S – Classic Bun Length Franks','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/30.jpg\",\"products\\/30-1.jpg\",\"products\\/30-2.jpg\"]','SW-158-A0',0,16,0,1,0,3,0,0,567,NULL,NULL,NULL,10.00,12.00,12.00,833.00,NULL,84422,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(31,'Broccoli Crowns','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/31.jpg\",\"products\\/31-1.jpg\"]','SW-169-A0',0,10,0,1,0,4,0,0,1168,NULL,NULL,NULL,11.00,14.00,17.00,602.00,NULL,100607,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(32,'Slimming World Vegan Mac Greens','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/32.jpg\",\"products\\/32-1.jpg\",\"products\\/32-2.jpg\"]','SW-156-A0',0,16,0,1,0,1,0,0,1192,894,NULL,NULL,10.00,19.00,15.00,699.00,NULL,121052,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(33,'Häagen-Dazs Salted Caramel (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/33.jpg\",\"products\\/33-1.jpg\",\"products\\/33-2.jpg\"]','SW-118-A0',0,16,0,1,0,5,0,0,822,NULL,NULL,NULL,19.00,14.00,12.00,717.00,NULL,135486,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(34,'Iceland 3 Solo Exotic Burst','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/34.jpg\",\"products\\/34-1.jpg\"]','SW-190-A0',0,13,0,1,0,5,0,0,638,NULL,NULL,NULL,19.00,14.00,12.00,587.00,NULL,143593,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(35,'Extreme Budweiser Light Can','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/35.jpg\",\"products\\/35-1.jpg\"]','SW-158-A0',0,17,0,1,0,3,0,0,906,NULL,NULL,NULL,12.00,14.00,12.00,502.00,NULL,68879,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(36,'Iceland Macaroni Cheese Traybake','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/36.jpg\",\"products\\/36-1.jpg\",\"products\\/36-2.jpg\"]','SW-180-A0',0,20,0,1,0,2,0,0,549,450.18,NULL,NULL,16.00,10.00,20.00,613.00,NULL,4757,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(37,'Dolmio Bolognese Pasta Sauce (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/37.jpg\",\"products\\/37-1.jpg\",\"products\\/37-2.jpg\"]','SW-121-A0',0,18,0,1,0,3,0,0,1193,NULL,NULL,NULL,15.00,18.00,19.00,753.00,NULL,33989,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(38,'Sitema BakeIT Plastic Box','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/38.jpg\",\"products\\/38-1.jpg\",\"products\\/38-2.jpg\",\"products\\/38-3.jpg\"]','SW-133-A0',0,13,0,1,0,4,0,0,889,NULL,NULL,NULL,18.00,17.00,16.00,713.00,NULL,99177,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(39,'Wayfair Basics Dinner Plate Storage','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/39.jpg\",\"products\\/39-1.jpg\",\"products\\/39-2.jpg\"]','SW-175-A0',0,14,0,1,0,2,0,0,1134,NULL,NULL,NULL,13.00,19.00,16.00,769.00,NULL,39385,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(40,'Miko The Panda Water Bottle','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/40.jpg\",\"products\\/40-1.jpg\"]','SW-141-A0',0,13,0,1,0,5,0,0,511,373.03,NULL,NULL,14.00,19.00,15.00,594.00,NULL,77101,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(41,'Sesame Seed Bread (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/41.jpg\",\"products\\/41-1.jpg\",\"products\\/41-2.jpg\"]','SW-166-A0',0,18,0,1,0,1,0,0,616,NULL,NULL,NULL,19.00,13.00,18.00,588.00,NULL,150573,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(42,'Morrisons The Best Beef','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/42.jpg\",\"products\\/42-1.jpg\",\"products\\/42-2.jpg\"]','SW-156-A0',0,10,0,1,0,2,0,0,935,NULL,NULL,NULL,18.00,16.00,10.00,594.00,NULL,80483,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(43,'Avocado, Hass Large','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/43.jpg\",\"products\\/43-1.jpg\",\"products\\/43-2.jpg\"]','SW-143-A0',0,11,0,1,0,3,0,0,789,NULL,NULL,NULL,19.00,15.00,12.00,617.00,NULL,192290,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(44,'Italia Beef Lasagne','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/44.jpg\",\"products\\/44-1.jpg\",\"products\\/44-2.jpg\"]','SW-105-A0',0,20,0,1,0,1,0,0,783,665.55,NULL,NULL,17.00,18.00,14.00,784.00,NULL,129917,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(45,'Maxwell House Classic Roast Mocha (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/45.jpg\",\"products\\/45-1.jpg\"]','SW-141-A0',0,14,0,1,0,2,0,0,876,NULL,NULL,NULL,11.00,15.00,15.00,883.00,NULL,44055,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(46,'Bottled Pure Water 500ml','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/46.jpg\",\"products\\/46-1.jpg\"]','SW-138-A0',0,20,0,1,0,1,0,0,1222,NULL,NULL,NULL,19.00,10.00,13.00,808.00,NULL,43836,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(47,'Famart Farmhouse Soft White','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/47.jpg\",\"products\\/47-1.jpg\"]','SW-100-A0',0,19,0,1,0,5,0,0,1231,NULL,NULL,NULL,11.00,18.00,18.00,559.00,NULL,111222,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(48,'Coca-Cola Original Taste','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/48.jpg\",\"products\\/48-1.jpg\",\"products\\/48-2.jpg\"]','SW-159-A0',0,19,0,1,0,2,0,0,891,730.62,NULL,NULL,20.00,11.00,20.00,858.00,NULL,4863,'2024-06-18 23:00:40','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(49,'Casillero Diablo Cabernet Sauvignon (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/49.jpg\",\"products\\/49-1.jpg\",\"products\\/49-2.jpg\"]','SW-189-A0',0,14,0,1,0,4,0,0,875,NULL,NULL,NULL,20.00,14.00,19.00,626.00,NULL,38340,'2024-06-18 23:00:40','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(50,'Arla Organic Free Range Milk','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/50.jpg\",\"products\\/50-1.jpg\"]','SW-194-A0',0,14,0,1,0,5,0,0,749,NULL,NULL,NULL,15.00,10.00,14.00,548.00,NULL,182763,'2024-06-18 23:00:40','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(51,'Aptamil Follow On Baby Milk','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/51.jpg\"]','SW-192-A0',0,15,0,1,0,1,0,0,1156,NULL,NULL,NULL,19.00,12.00,14.00,642.00,NULL,174986,'2024-06-18 23:00:40','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(52,'Cuisinart Chef’S Classic Hard-Anodized','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/52.jpg\",\"products\\/52-1.jpg\",\"products\\/52-2.jpg\"]','SW-146-A0',0,19,0,1,0,5,0,0,1180,1026.6,NULL,NULL,12.00,16.00,10.00,665.00,NULL,9995,'2024-06-18 23:00:40','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(53,'Corn, Yellow Sweet (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/53.jpg\",\"products\\/53-1.jpg\"]','SW-110-A0',0,20,0,1,0,2,0,0,1034,NULL,NULL,NULL,15.00,18.00,12.00,810.00,NULL,78766,'2024-06-18 23:00:40','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(54,'Hobnobs The Nobbly Biscuit','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/54.jpg\",\"products\\/54-1.jpg\"]','SW-180-A0',0,11,0,1,0,3,0,0,720,NULL,NULL,NULL,15.00,11.00,10.00,787.00,NULL,187620,'2024-06-18 23:00:40','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(55,'Honest Organic Still Lemonade','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/55.jpg\",\"products\\/55-1.jpg\",\"products\\/55-2.jpg\"]','SW-172-A0',0,20,0,1,0,1,0,0,1214,NULL,NULL,NULL,19.00,15.00,13.00,893.00,NULL,58152,'2024-06-18 23:00:40','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(56,'Ice Beck’s Beer 350ml x 24 Pieces','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/56.jpg\",\"products\\/56-1.jpg\",\"products\\/56-2.jpg\"]','SW-181-A0',0,20,0,1,0,4,0,0,1270,1016,NULL,NULL,18.00,16.00,19.00,768.00,NULL,186739,'2024-06-18 23:00:40','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(57,'Iceland 6 Hot Cross Buns (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/57.jpg\",\"products\\/57-1.jpg\"]','SW-168-A0',0,14,0,1,0,2,0,0,1228,NULL,NULL,NULL,17.00,11.00,15.00,587.00,NULL,12083,'2024-06-18 23:00:40','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(58,'Iceland Luxury 4 Panini Rolls','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/58.jpg\",\"products\\/58-1.jpg\",\"products\\/58-2.jpg\"]','SW-137-A0',0,18,0,1,0,4,0,0,895,NULL,NULL,NULL,15.00,20.00,19.00,571.00,NULL,168282,'2024-06-18 23:00:40','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(59,'Iceland Soft Scoop Vanilla','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/59.jpg\",\"products\\/59-1.jpg\",\"products\\/59-2.jpg\",\"products\\/59-3.jpg\"]','SW-121-A0',0,14,0,1,0,2,0,0,993,NULL,NULL,NULL,13.00,20.00,12.00,767.00,NULL,57998,'2024-06-18 23:00:40','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(60,'Iceland Spaghetti Bolognese','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/60.jpg\",\"products\\/60-1.jpg\",\"products\\/60-2.jpg\"]','SW-145-A0',0,12,0,1,0,3,0,0,555,399.6,NULL,NULL,19.00,13.00,16.00,800.00,NULL,160112,'2024-06-18 23:00:40','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(61,'Kellogg’s Coco Pops Cereal (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/61.jpg\",\"products\\/61-1.jpg\"]','SW-174-A0',0,16,0,1,0,1,0,0,1274,NULL,NULL,NULL,11.00,14.00,10.00,728.00,NULL,154843,'2024-06-18 23:00:40','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(62,'Kit Kat Chunky Milk Chocolate','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/62.jpg\",\"products\\/62-1.jpg\"]','SW-167-A0',0,15,0,1,0,5,0,0,1006,NULL,NULL,NULL,15.00,14.00,10.00,653.00,NULL,13063,'2024-06-18 23:00:40','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(63,'Large Green Bell Pepper','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/63.jpg\",\"products\\/63-1.jpg\"]','SW-115-A0',0,18,0,1,0,5,0,0,755,NULL,NULL,NULL,17.00,11.00,16.00,544.00,NULL,51228,'2024-06-18 23:00:40','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(64,'Pice 94w Beasley Journal','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/64.jpg\",\"products\\/64-1.jpg\"]','SW-137-A0',0,14,0,1,0,4,0,0,1231,1107.9,NULL,NULL,17.00,16.00,15.00,751.00,NULL,106163,'2024-06-18 23:00:40','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(65,'Province Piece Glass Drinking Glass (Digital)','<ul><li> Unrestrained and portable active stereo speaker</li>\n <li> Free from the confines of wires and chords</li>\n <li> 20 hours of portable capabilities</li>\n <li> Double-ended Coil Cord with 3.5mm Stereo Plugs Included</li>\n <li> 3/4″ Dome Tweeters: 2X and 4″ Woofer: 1X</li></ul>','<p>Short Hooded Coat features a straight body, large pockets with button flaps, ventilation air holes, and a string detail along the hemline. The style is completed with a drawstring hood, featuring Rains’ signature built-in cap. Made from waterproof, matte PU, this lightweight unisex rain jacket is an ode to nostalgia through its classic silhouette and utilitarian design details.</p>\n <p>- Casual unisex fit</p>\n\n <p>- 64% polyester, 36% polyurethane</p>\n\n <p>- Water column pressure: 4000 mm</p>\n\n <p>- Model is 187cm tall and wearing a size S / M</p>\n\n <p>- Unisex fit</p>\n\n <p>- Drawstring hood with built-in cap</p>\n\n <p>- Front placket with snap buttons</p>\n\n <p>- Ventilation under armpit</p>\n\n <p>- Adjustable cuffs</p>\n\n <p>- Double welted front pockets</p>\n\n <p>- Adjustable elastic string at hempen</p>\n\n <p>- Ultrasonically welded seams</p>\n\n <p>This is a unisex item, please check our clothing & footwear sizing guide for specific Rains jacket sizing information. RAINS comes from the rainy nation of Denmark at the edge of the European continent, close to the ocean and with prevailing westerly winds; all factors that contribute to an average of 121 rain days each year. Arising from these rainy weather conditions comes the attitude that a quick rain shower may be beautiful, as well as moody- but first and foremost requires the right outfit. Rains focus on the whole experience of going outside on rainy days, issuing an invitation to explore even in the most mercurial weather.</p>','published','[\"products\\/65.jpg\",\"products\\/65-1.jpg\",\"products\\/65-2.jpg\"]','SW-126-A0',0,20,0,1,0,3,0,0,1201,NULL,NULL,NULL,10.00,16.00,10.00,626.00,NULL,157285,'2024-06-18 23:00:40','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(66,'Dual Camera 20MP (Digital)',NULL,NULL,'published','[\"products\\/1.jpg\"]','SW-105-A0',0,15,0,1,0,5,1,0,80.25,NULL,NULL,NULL,10.00,13.00,14.00,817.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(67,'Dual Camera 20MP (Digital)',NULL,NULL,'published','[\"products\\/1.jpg\"]','SW-105-A0-A1',0,15,0,1,0,5,1,0,80.25,NULL,NULL,NULL,10.00,13.00,14.00,817.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(68,'Smart Watches',NULL,NULL,'published','[\"products\\/2.jpg\"]','SW-191-A0',0,12,0,1,0,1,1,0,40.5,NULL,NULL,NULL,15.00,10.00,14.00,896.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(69,'Smart Watches',NULL,NULL,'published','[\"products\\/2-1.jpg\"]','SW-191-A0-A1',0,12,0,1,0,1,1,0,40.5,NULL,NULL,NULL,15.00,10.00,14.00,896.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(70,'Smart Watches',NULL,NULL,'published','[\"products\\/2-2.jpg\"]','SW-191-A0-A2',0,12,0,1,0,1,1,0,40.5,NULL,NULL,NULL,15.00,10.00,14.00,896.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(71,'Smart Watches',NULL,NULL,'published','[\"products\\/2-3.jpg\"]','SW-191-A0-A3',0,12,0,1,0,1,1,0,40.5,NULL,NULL,NULL,15.00,10.00,14.00,896.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(72,'Beat Headphone',NULL,NULL,'published','[\"products\\/3.jpg\"]','SW-132-A0',0,11,0,1,0,3,1,0,20,NULL,NULL,NULL,11.00,13.00,11.00,688.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(73,'Beat Headphone',NULL,NULL,'published','[\"products\\/3.jpg\"]','SW-132-A0-A1',0,11,0,1,0,3,1,0,20,NULL,NULL,NULL,11.00,13.00,11.00,688.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(74,'Beat Headphone',NULL,NULL,'published','[\"products\\/3.jpg\"]','SW-132-A0-A2',0,11,0,1,0,3,1,0,20,NULL,NULL,NULL,11.00,13.00,11.00,688.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(75,'Red & Black Headphone',NULL,NULL,'published','[\"products\\/4.jpg\"]','SW-110-A0',0,10,0,1,0,2,1,0,541,421.98,NULL,NULL,19.00,16.00,19.00,775.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(76,'Red & Black Headphone',NULL,NULL,'published','[\"products\\/4-1.jpg\"]','SW-110-A0-A1',0,10,0,1,0,2,1,0,541,443.62,NULL,NULL,19.00,16.00,19.00,775.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(77,'Smart Watch External (Digital)',NULL,NULL,'published','[\"products\\/5.jpg\"]','SW-107-A0',0,17,0,1,0,1,1,0,817,NULL,NULL,NULL,19.00,20.00,14.00,860.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(78,'Smart Watch External (Digital)',NULL,NULL,'published','[\"products\\/5-1.jpg\"]','SW-107-A0-A1',0,17,0,1,0,1,1,0,817,NULL,NULL,NULL,19.00,20.00,14.00,860.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(79,'Nikon HD camera',NULL,NULL,'published','[\"products\\/6.jpg\"]','SW-153-A0',0,20,0,1,0,4,1,0,403,NULL,NULL,NULL,12.00,12.00,18.00,541.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(80,'Audio Equipment',NULL,NULL,'published','[\"products\\/7.jpg\"]','SW-198-A0',0,19,0,1,0,3,1,0,514,NULL,NULL,NULL,12.00,20.00,20.00,887.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(81,'Audio Equipment',NULL,NULL,'published','[\"products\\/7.jpg\"]','SW-198-A0-A1',0,19,0,1,0,3,1,0,514,NULL,NULL,NULL,12.00,20.00,20.00,887.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(82,'Smart Televisions',NULL,NULL,'published','[\"products\\/8.jpg\"]','SW-152-A0',0,18,0,1,0,2,1,0,1123,898.4,NULL,NULL,13.00,13.00,15.00,562.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(83,'Samsung Smart Phone (Digital)',NULL,NULL,'published','[\"products\\/9.jpg\"]','SW-199-A0',0,10,0,1,0,1,1,0,597,NULL,NULL,NULL,19.00,12.00,19.00,749.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(84,'Herschel Leather Duffle Bag In Brown Color',NULL,NULL,'published','[\"products\\/10.jpg\"]','SW-127-A0',0,16,0,1,0,5,1,0,1155,NULL,NULL,NULL,16.00,10.00,19.00,667.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(85,'Herschel Leather Duffle Bag In Brown Color',NULL,NULL,'published','[\"products\\/10-1.jpg\"]','SW-127-A0-A1',0,16,0,1,0,5,1,0,1155,NULL,NULL,NULL,16.00,10.00,19.00,667.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(86,'Herschel Leather Duffle Bag In Brown Color',NULL,NULL,'published','[\"products\\/10-2.jpg\"]','SW-127-A0-A2',0,16,0,1,0,5,1,0,1155,NULL,NULL,NULL,16.00,10.00,19.00,667.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(87,'Xbox One Wireless Controller Black Color',NULL,NULL,'published','[\"products\\/11.jpg\"]','SW-153-A0',0,15,0,1,0,3,1,0,1191,NULL,NULL,NULL,13.00,10.00,19.00,573.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(88,'EPSION Plaster Printer',NULL,NULL,'published','[\"products\\/12.jpg\"]','SW-149-A0',0,16,0,1,0,3,1,0,568,414.64,NULL,NULL,11.00,11.00,20.00,745.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(89,'EPSION Plaster Printer',NULL,NULL,'published','[\"products\\/12-1.jpg\"]','SW-149-A0-A1',0,16,0,1,0,3,1,0,568,448.72,NULL,NULL,11.00,11.00,20.00,745.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(90,'EPSION Plaster Printer',NULL,NULL,'published','[\"products\\/12-2.jpg\"]','SW-149-A0-A2',0,16,0,1,0,3,1,0,568,465.76,NULL,NULL,11.00,11.00,20.00,745.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(91,'Sound Intone I65 Earphone White Version (Digital)',NULL,NULL,'published','[\"products\\/13.jpg\"]','SW-119-A0',0,17,0,1,0,2,1,0,559,NULL,NULL,NULL,14.00,19.00,20.00,837.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(92,'Sound Intone I65 Earphone White Version (Digital)',NULL,NULL,'published','[\"products\\/13-1.jpg\"]','SW-119-A0-A1',0,17,0,1,0,2,1,0,559,NULL,NULL,NULL,14.00,19.00,20.00,837.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(93,'B&O Play Mini Bluetooth Speaker',NULL,NULL,'published','[\"products\\/14.jpg\"]','SW-147-A0',0,16,0,1,0,5,1,0,570,NULL,NULL,NULL,15.00,18.00,17.00,897.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(94,'B&O Play Mini Bluetooth Speaker',NULL,NULL,'published','[\"products\\/14.jpg\"]','SW-147-A0-A1',0,16,0,1,0,5,1,0,570,NULL,NULL,NULL,15.00,18.00,17.00,897.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(95,'Apple MacBook Air Retina 13.3-Inch Laptop',NULL,NULL,'published','[\"products\\/15.jpg\"]','SW-117-A0',0,17,0,1,0,2,1,0,585,NULL,NULL,NULL,17.00,17.00,11.00,704.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(96,'Apple MacBook Air Retina 13.3-Inch Laptop',NULL,NULL,'published','[\"products\\/15-1.jpg\"]','SW-117-A0-A1',0,17,0,1,0,2,1,0,585,NULL,NULL,NULL,17.00,17.00,11.00,704.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(97,'Apple MacBook Air Retina 13.3-Inch Laptop',NULL,NULL,'published','[\"products\\/15.jpg\"]','SW-117-A0-A2',0,17,0,1,0,2,1,0,585,NULL,NULL,NULL,17.00,17.00,11.00,704.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(98,'Apple MacBook Air Retina 12-Inch Laptop',NULL,NULL,'published','[\"products\\/16.jpg\"]','SW-172-A0',0,18,0,1,0,3,1,0,525,462,NULL,NULL,14.00,13.00,10.00,681.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(99,'Apple MacBook Air Retina 12-Inch Laptop',NULL,NULL,'published','[\"products\\/16.jpg\"]','SW-172-A0-A1',0,18,0,1,0,3,1,0,525,435.75,NULL,NULL,14.00,13.00,10.00,681.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(100,'Samsung Gear VR Virtual Reality Headset (Digital)',NULL,NULL,'published','[\"products\\/17.jpg\"]','SW-123-A0',0,14,0,1,0,5,1,0,513,NULL,NULL,NULL,15.00,20.00,18.00,732.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(101,'Samsung Gear VR Virtual Reality Headset (Digital)',NULL,NULL,'published','[\"products\\/17-1.jpg\"]','SW-123-A0-A1',0,14,0,1,0,5,1,0,513,NULL,NULL,NULL,15.00,20.00,18.00,732.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(102,'Samsung Gear VR Virtual Reality Headset (Digital)',NULL,NULL,'published','[\"products\\/17-2.jpg\"]','SW-123-A0-A2',0,14,0,1,0,5,1,0,513,NULL,NULL,NULL,15.00,20.00,18.00,732.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(103,'Samsung Gear VR Virtual Reality Headset (Digital)',NULL,NULL,'published','[\"products\\/17-3.jpg\"]','SW-123-A0-A3',0,14,0,1,0,5,1,0,513,NULL,NULL,NULL,15.00,20.00,18.00,732.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(104,'Aveeno Moisturizing Body Shower 450ml',NULL,NULL,'published','[\"products\\/18.jpg\"]','SW-182-A0',0,10,0,1,0,3,1,0,970,NULL,NULL,NULL,19.00,19.00,20.00,791.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(105,'Aveeno Moisturizing Body Shower 450ml',NULL,NULL,'published','[\"products\\/18-1.jpg\"]','SW-182-A0-A1',0,10,0,1,0,3,1,0,970,NULL,NULL,NULL,19.00,19.00,20.00,791.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(106,'Aveeno Moisturizing Body Shower 450ml',NULL,NULL,'published','[\"products\\/18-2.jpg\"]','SW-182-A0-A2',0,10,0,1,0,3,1,0,970,NULL,NULL,NULL,19.00,19.00,20.00,791.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(107,'NYX Beauty Couton Pallete Makeup 12',NULL,NULL,'published','[\"products\\/19.jpg\"]','SW-183-A0',0,14,0,1,0,1,1,0,983,NULL,NULL,NULL,19.00,13.00,12.00,607.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(108,'NYX Beauty Couton Pallete Makeup 12',NULL,NULL,'published','[\"products\\/19-1.jpg\"]','SW-183-A0-A1',0,14,0,1,0,1,1,0,983,NULL,NULL,NULL,19.00,13.00,12.00,607.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(109,'NYX Beauty Couton Pallete Makeup 12',NULL,NULL,'published','[\"products\\/19-2.jpg\"]','SW-183-A0-A2',0,14,0,1,0,1,1,0,983,NULL,NULL,NULL,19.00,13.00,12.00,607.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(110,'NYX Beauty Couton Pallete Makeup 12',NULL,NULL,'published','[\"products\\/19-3.jpg\"]','SW-183-A0-A3',0,14,0,1,0,1,1,0,983,NULL,NULL,NULL,19.00,13.00,12.00,607.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(111,'NYX Beauty Couton Pallete Makeup 12',NULL,NULL,'published','[\"products\\/19.jpg\"]','SW-183-A0-A4',0,14,0,1,0,1,1,0,983,NULL,NULL,NULL,19.00,13.00,12.00,607.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(112,'NYX Beauty Couton Pallete Makeup 12',NULL,NULL,'published','[\"products\\/20.jpg\"]','SW-149-A0',0,18,0,1,0,2,1,0,761,624.02,NULL,NULL,10.00,13.00,15.00,550.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(113,'NYX Beauty Couton Pallete Makeup 12',NULL,NULL,'published','[\"products\\/20-1.jpg\"]','SW-149-A0-A1',0,18,0,1,0,2,1,0,761,555.53,NULL,NULL,10.00,13.00,15.00,550.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(114,'MVMTH Classical Leather Watch In Black (Digital)',NULL,NULL,'published','[\"products\\/21.jpg\"]','SW-104-A0',0,18,0,1,0,4,1,0,770,NULL,NULL,NULL,12.00,15.00,14.00,565.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(115,'MVMTH Classical Leather Watch In Black (Digital)',NULL,NULL,'published','[\"products\\/21-1.jpg\"]','SW-104-A0-A1',0,18,0,1,0,4,1,0,770,NULL,NULL,NULL,12.00,15.00,14.00,565.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(116,'Baxter Care Hair Kit For Bearded Mens',NULL,NULL,'published','[\"products\\/22.jpg\"]','SW-121-A0',0,19,0,1,0,1,1,0,402,NULL,NULL,NULL,20.00,13.00,13.00,775.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(117,'Baxter Care Hair Kit For Bearded Mens',NULL,NULL,'published','[\"products\\/22-1.jpg\"]','SW-121-A0-A1',0,19,0,1,0,1,1,0,402,NULL,NULL,NULL,20.00,13.00,13.00,775.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(118,'Baxter Care Hair Kit For Bearded Mens',NULL,NULL,'published','[\"products\\/22-2.jpg\"]','SW-121-A0-A2',0,19,0,1,0,1,1,0,402,NULL,NULL,NULL,20.00,13.00,13.00,775.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(119,'Ciate Palemore Lipstick Bold Red Color',NULL,NULL,'published','[\"products\\/23.jpg\"]','SW-168-A0',0,10,0,1,0,5,1,0,706,NULL,NULL,NULL,19.00,14.00,10.00,873.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(120,'Ciate Palemore Lipstick Bold Red Color',NULL,NULL,'published','[\"products\\/23-1.jpg\"]','SW-168-A0-A1',0,10,0,1,0,5,1,0,706,NULL,NULL,NULL,19.00,14.00,10.00,873.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(121,'Vimto Squash Remix Apple 1.5 Litres',NULL,NULL,'published','[\"products\\/24.jpg\"]','SW-106-A0',0,17,0,1,0,1,1,0,727,567.06,NULL,NULL,19.00,12.00,19.00,582.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(122,'Vimto Squash Remix Apple 1.5 Litres',NULL,NULL,'published','[\"products\\/24-1.jpg\"]','SW-106-A0-A1',0,17,0,1,0,1,1,0,727,603.41,NULL,NULL,19.00,12.00,19.00,582.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(123,'Vimto Squash Remix Apple 1.5 Litres',NULL,NULL,'published','[\"products\\/24-2.jpg\"]','SW-106-A0-A2',0,17,0,1,0,1,1,0,727,545.25,NULL,NULL,19.00,12.00,19.00,582.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(124,'Crock Pot Slow Cooker (Digital)',NULL,NULL,'published','[\"products\\/25.jpg\"]','SW-113-A0',0,11,0,1,0,3,1,0,979,NULL,NULL,NULL,10.00,20.00,13.00,594.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(125,'Crock Pot Slow Cooker (Digital)',NULL,NULL,'published','[\"products\\/25-1.jpg\"]','SW-113-A0-A1',0,11,0,1,0,3,1,0,979,NULL,NULL,NULL,10.00,20.00,13.00,594.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(126,'Crock Pot Slow Cooker (Digital)',NULL,NULL,'published','[\"products\\/25-2.jpg\"]','SW-113-A0-A2',0,11,0,1,0,3,1,0,979,NULL,NULL,NULL,10.00,20.00,13.00,594.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(127,'Taylors of Harrogate Yorkshire Coffee',NULL,NULL,'published','[\"products\\/26.jpg\"]','SW-179-A0',0,17,0,1,0,2,1,0,1297,NULL,NULL,NULL,15.00,11.00,16.00,642.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(128,'Taylors of Harrogate Yorkshire Coffee',NULL,NULL,'published','[\"products\\/26-1.jpg\"]','SW-179-A0-A1',0,17,0,1,0,2,1,0,1297,NULL,NULL,NULL,15.00,11.00,16.00,642.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(129,'Taylors of Harrogate Yorkshire Coffee',NULL,NULL,'published','[\"products\\/26.jpg\"]','SW-179-A0-A2',0,17,0,1,0,2,1,0,1297,NULL,NULL,NULL,15.00,11.00,16.00,642.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(130,'Soft Mochi & Galeto Ice Cream',NULL,NULL,'published','[\"products\\/27.jpg\"]','SW-144-A0',0,20,0,1,0,5,1,0,897,NULL,NULL,NULL,16.00,18.00,16.00,745.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(131,'Soft Mochi & Galeto Ice Cream',NULL,NULL,'published','[\"products\\/27-1.jpg\"]','SW-144-A0-A1',0,20,0,1,0,5,1,0,897,NULL,NULL,NULL,16.00,18.00,16.00,745.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(132,'Soft Mochi & Galeto Ice Cream',NULL,NULL,'published','[\"products\\/27.jpg\"]','SW-144-A0-A2',0,20,0,1,0,5,1,0,897,NULL,NULL,NULL,16.00,18.00,16.00,745.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(133,'Naked Noodle Egg Noodles Singapore',NULL,NULL,'published','[\"products\\/28.jpg\"]','SW-176-A0',0,13,0,1,0,4,1,0,1024,829.44,NULL,NULL,12.00,13.00,15.00,564.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(134,'Saute Pan Silver (Digital)',NULL,NULL,'published','[\"products\\/29.jpg\"]','SW-129-A0',0,13,0,1,0,2,1,0,1126,NULL,NULL,NULL,11.00,18.00,11.00,749.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(135,'Saute Pan Silver (Digital)',NULL,NULL,'published','[\"products\\/29-1.jpg\"]','SW-129-A0-A1',0,13,0,1,0,2,1,0,1126,NULL,NULL,NULL,11.00,18.00,11.00,749.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(136,'Bar S – Classic Bun Length Franks',NULL,NULL,'published','[\"products\\/30.jpg\"]','SW-158-A0',0,16,0,1,0,3,1,0,567,NULL,NULL,NULL,10.00,12.00,12.00,833.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(137,'Bar S – Classic Bun Length Franks',NULL,NULL,'published','[\"products\\/30-1.jpg\"]','SW-158-A0-A1',0,16,0,1,0,3,1,0,567,NULL,NULL,NULL,10.00,12.00,12.00,833.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(138,'Bar S – Classic Bun Length Franks',NULL,NULL,'published','[\"products\\/30-2.jpg\"]','SW-158-A0-A2',0,16,0,1,0,3,1,0,567,NULL,NULL,NULL,10.00,12.00,12.00,833.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(139,'Broccoli Crowns',NULL,NULL,'published','[\"products\\/31.jpg\"]','SW-169-A0',0,10,0,1,0,4,1,0,1168,NULL,NULL,NULL,11.00,14.00,17.00,602.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(140,'Broccoli Crowns',NULL,NULL,'published','[\"products\\/31-1.jpg\"]','SW-169-A0-A1',0,10,0,1,0,4,1,0,1168,NULL,NULL,NULL,11.00,14.00,17.00,602.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(141,'Broccoli Crowns',NULL,NULL,'published','[\"products\\/31.jpg\"]','SW-169-A0-A2',0,10,0,1,0,4,1,0,1168,NULL,NULL,NULL,11.00,14.00,17.00,602.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(142,'Slimming World Vegan Mac Greens',NULL,NULL,'published','[\"products\\/32.jpg\"]','SW-156-A0',0,16,0,1,0,1,1,0,1192,894,NULL,NULL,10.00,19.00,15.00,699.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(143,'Slimming World Vegan Mac Greens',NULL,NULL,'published','[\"products\\/32-1.jpg\"]','SW-156-A0-A1',0,16,0,1,0,1,1,0,1192,917.84,NULL,NULL,10.00,19.00,15.00,699.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(144,'Häagen-Dazs Salted Caramel (Digital)',NULL,NULL,'published','[\"products\\/33.jpg\"]','SW-118-A0',0,16,0,1,0,5,1,0,822,NULL,NULL,NULL,19.00,14.00,12.00,717.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(145,'Häagen-Dazs Salted Caramel (Digital)',NULL,NULL,'published','[\"products\\/33-1.jpg\"]','SW-118-A0-A1',0,16,0,1,0,5,1,0,822,NULL,NULL,NULL,19.00,14.00,12.00,717.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(146,'Häagen-Dazs Salted Caramel (Digital)',NULL,NULL,'published','[\"products\\/33-2.jpg\"]','SW-118-A0-A2',0,16,0,1,0,5,1,0,822,NULL,NULL,NULL,19.00,14.00,12.00,717.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(147,'Häagen-Dazs Salted Caramel (Digital)',NULL,NULL,'published','[\"products\\/33.jpg\"]','SW-118-A0-A3',0,16,0,1,0,5,1,0,822,NULL,NULL,NULL,19.00,14.00,12.00,717.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(148,'Iceland 3 Solo Exotic Burst',NULL,NULL,'published','[\"products\\/34.jpg\"]','SW-190-A0',0,13,0,1,0,5,1,0,638,NULL,NULL,NULL,19.00,14.00,12.00,587.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(149,'Iceland 3 Solo Exotic Burst',NULL,NULL,'published','[\"products\\/34-1.jpg\"]','SW-190-A0-A1',0,13,0,1,0,5,1,0,638,NULL,NULL,NULL,19.00,14.00,12.00,587.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(150,'Extreme Budweiser Light Can',NULL,NULL,'published','[\"products\\/35.jpg\"]','SW-158-A0',0,17,0,1,0,3,1,0,906,NULL,NULL,NULL,12.00,14.00,12.00,502.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(151,'Extreme Budweiser Light Can',NULL,NULL,'published','[\"products\\/35-1.jpg\"]','SW-158-A0-A1',0,17,0,1,0,3,1,0,906,NULL,NULL,NULL,12.00,14.00,12.00,502.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(152,'Iceland Macaroni Cheese Traybake',NULL,NULL,'published','[\"products\\/36.jpg\"]','SW-180-A0',0,20,0,1,0,2,1,0,549,450.18,NULL,NULL,16.00,10.00,20.00,613.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(153,'Iceland Macaroni Cheese Traybake',NULL,NULL,'published','[\"products\\/36-1.jpg\"]','SW-180-A0-A1',0,20,0,1,0,2,1,0,549,406.26,NULL,NULL,16.00,10.00,20.00,613.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(154,'Dolmio Bolognese Pasta Sauce (Digital)',NULL,NULL,'published','[\"products\\/37.jpg\"]','SW-121-A0',0,18,0,1,0,3,1,0,1193,NULL,NULL,NULL,15.00,18.00,19.00,753.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(155,'Dolmio Bolognese Pasta Sauce (Digital)',NULL,NULL,'published','[\"products\\/37-1.jpg\"]','SW-121-A0-A1',0,18,0,1,0,3,1,0,1193,NULL,NULL,NULL,15.00,18.00,19.00,753.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(156,'Dolmio Bolognese Pasta Sauce (Digital)',NULL,NULL,'published','[\"products\\/37-2.jpg\"]','SW-121-A0-A2',0,18,0,1,0,3,1,0,1193,NULL,NULL,NULL,15.00,18.00,19.00,753.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(157,'Sitema BakeIT Plastic Box',NULL,NULL,'published','[\"products\\/38.jpg\"]','SW-133-A0',0,13,0,1,0,4,1,0,889,NULL,NULL,NULL,18.00,17.00,16.00,713.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(158,'Sitema BakeIT Plastic Box',NULL,NULL,'published','[\"products\\/38-1.jpg\"]','SW-133-A0-A1',0,13,0,1,0,4,1,0,889,NULL,NULL,NULL,18.00,17.00,16.00,713.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(159,'Sitema BakeIT Plastic Box',NULL,NULL,'published','[\"products\\/38-2.jpg\"]','SW-133-A0-A2',0,13,0,1,0,4,1,0,889,NULL,NULL,NULL,18.00,17.00,16.00,713.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(160,'Wayfair Basics Dinner Plate Storage',NULL,NULL,'published','[\"products\\/39.jpg\"]','SW-175-A0',0,14,0,1,0,2,1,0,1134,NULL,NULL,NULL,13.00,19.00,16.00,769.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(161,'Wayfair Basics Dinner Plate Storage',NULL,NULL,'published','[\"products\\/39-1.jpg\"]','SW-175-A0-A1',0,14,0,1,0,2,1,0,1134,NULL,NULL,NULL,13.00,19.00,16.00,769.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(162,'Wayfair Basics Dinner Plate Storage',NULL,NULL,'published','[\"products\\/39-2.jpg\"]','SW-175-A0-A2',0,14,0,1,0,2,1,0,1134,NULL,NULL,NULL,13.00,19.00,16.00,769.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(163,'Wayfair Basics Dinner Plate Storage',NULL,NULL,'published','[\"products\\/39.jpg\"]','SW-175-A0-A3',0,14,0,1,0,2,1,0,1134,NULL,NULL,NULL,13.00,19.00,16.00,769.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(164,'Miko The Panda Water Bottle',NULL,NULL,'published','[\"products\\/40.jpg\"]','SW-141-A0',0,13,0,1,0,5,1,0,511,373.03,NULL,NULL,14.00,19.00,15.00,594.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(165,'Miko The Panda Water Bottle',NULL,NULL,'published','[\"products\\/40-1.jpg\"]','SW-141-A0-A1',0,13,0,1,0,5,1,0,511,449.68,NULL,NULL,14.00,19.00,15.00,594.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(166,'Miko The Panda Water Bottle',NULL,NULL,'published','[\"products\\/40.jpg\"]','SW-141-A0-A2',0,13,0,1,0,5,1,0,511,357.7,NULL,NULL,14.00,19.00,15.00,594.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(167,'Miko The Panda Water Bottle',NULL,NULL,'published','[\"products\\/40.jpg\"]','SW-141-A0-A3',0,13,0,1,0,5,1,0,511,403.69,NULL,NULL,14.00,19.00,15.00,594.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(168,'Sesame Seed Bread (Digital)',NULL,NULL,'published','[\"products\\/41.jpg\"]','SW-166-A0',0,18,0,1,0,1,1,0,616,NULL,NULL,NULL,19.00,13.00,18.00,588.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(169,'Sesame Seed Bread (Digital)',NULL,NULL,'published','[\"products\\/41-1.jpg\"]','SW-166-A0-A1',0,18,0,1,0,1,1,0,616,NULL,NULL,NULL,19.00,13.00,18.00,588.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(170,'Sesame Seed Bread (Digital)',NULL,NULL,'published','[\"products\\/41-2.jpg\"]','SW-166-A0-A2',0,18,0,1,0,1,1,0,616,NULL,NULL,NULL,19.00,13.00,18.00,588.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(171,'Morrisons The Best Beef',NULL,NULL,'published','[\"products\\/42.jpg\"]','SW-156-A0',0,10,0,1,0,2,1,0,935,NULL,NULL,NULL,18.00,16.00,10.00,594.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(172,'Morrisons The Best Beef',NULL,NULL,'published','[\"products\\/42-1.jpg\"]','SW-156-A0-A1',0,10,0,1,0,2,1,0,935,NULL,NULL,NULL,18.00,16.00,10.00,594.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(173,'Morrisons The Best Beef',NULL,NULL,'published','[\"products\\/42-2.jpg\"]','SW-156-A0-A2',0,10,0,1,0,2,1,0,935,NULL,NULL,NULL,18.00,16.00,10.00,594.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(174,'Avocado, Hass Large',NULL,NULL,'published','[\"products\\/43.jpg\"]','SW-143-A0',0,11,0,1,0,3,1,0,789,NULL,NULL,NULL,19.00,15.00,12.00,617.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(175,'Italia Beef Lasagne',NULL,NULL,'published','[\"products\\/44.jpg\"]','SW-105-A0',0,20,0,1,0,1,1,0,783,665.55,NULL,NULL,17.00,18.00,14.00,784.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(176,'Italia Beef Lasagne',NULL,NULL,'published','[\"products\\/44-1.jpg\"]','SW-105-A0-A1',0,20,0,1,0,1,1,0,783,642.06,NULL,NULL,17.00,18.00,14.00,784.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(177,'Maxwell House Classic Roast Mocha (Digital)',NULL,NULL,'published','[\"products\\/45.jpg\"]','SW-141-A0',0,14,0,1,0,2,1,0,876,NULL,NULL,NULL,11.00,15.00,15.00,883.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(178,'Maxwell House Classic Roast Mocha (Digital)',NULL,NULL,'published','[\"products\\/45-1.jpg\"]','SW-141-A0-A1',0,14,0,1,0,2,1,0,876,NULL,NULL,NULL,11.00,15.00,15.00,883.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(179,'Maxwell House Classic Roast Mocha (Digital)',NULL,NULL,'published','[\"products\\/45.jpg\"]','SW-141-A0-A2',0,14,0,1,0,2,1,0,876,NULL,NULL,NULL,11.00,15.00,15.00,883.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(180,'Bottled Pure Water 500ml',NULL,NULL,'published','[\"products\\/46.jpg\"]','SW-138-A0',0,20,0,1,0,1,1,0,1222,NULL,NULL,NULL,19.00,10.00,13.00,808.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(181,'Bottled Pure Water 500ml',NULL,NULL,'published','[\"products\\/46-1.jpg\"]','SW-138-A0-A1',0,20,0,1,0,1,1,0,1222,NULL,NULL,NULL,19.00,10.00,13.00,808.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(182,'Famart Farmhouse Soft White',NULL,NULL,'published','[\"products\\/47.jpg\"]','SW-100-A0',0,19,0,1,0,5,1,0,1231,NULL,NULL,NULL,11.00,18.00,18.00,559.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(183,'Coca-Cola Original Taste',NULL,NULL,'published','[\"products\\/48.jpg\"]','SW-159-A0',0,19,0,1,0,2,1,0,891,730.62,NULL,NULL,20.00,11.00,20.00,858.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:41','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(184,'Casillero Diablo Cabernet Sauvignon (Digital)',NULL,NULL,'published','[\"products\\/49.jpg\"]','SW-189-A0',0,14,0,1,0,4,1,0,875,NULL,NULL,NULL,20.00,14.00,19.00,626.00,NULL,0,'2024-06-18 23:00:41','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(185,'Casillero Diablo Cabernet Sauvignon (Digital)',NULL,NULL,'published','[\"products\\/49-1.jpg\"]','SW-189-A0-A1',0,14,0,1,0,4,1,0,875,NULL,NULL,NULL,20.00,14.00,19.00,626.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(186,'Casillero Diablo Cabernet Sauvignon (Digital)',NULL,NULL,'published','[\"products\\/49-2.jpg\"]','SW-189-A0-A2',0,14,0,1,0,4,1,0,875,NULL,NULL,NULL,20.00,14.00,19.00,626.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(187,'Arla Organic Free Range Milk',NULL,NULL,'published','[\"products\\/50.jpg\"]','SW-194-A0',0,14,0,1,0,5,1,0,749,NULL,NULL,NULL,15.00,10.00,14.00,548.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(188,'Arla Organic Free Range Milk',NULL,NULL,'published','[\"products\\/50-1.jpg\"]','SW-194-A0-A1',0,14,0,1,0,5,1,0,749,NULL,NULL,NULL,15.00,10.00,14.00,548.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(189,'Arla Organic Free Range Milk',NULL,NULL,'published','[\"products\\/50.jpg\"]','SW-194-A0-A2',0,14,0,1,0,5,1,0,749,NULL,NULL,NULL,15.00,10.00,14.00,548.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(190,'Arla Organic Free Range Milk',NULL,NULL,'published','[\"products\\/50.jpg\"]','SW-194-A0-A3',0,14,0,1,0,5,1,0,749,NULL,NULL,NULL,15.00,10.00,14.00,548.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(191,'Aptamil Follow On Baby Milk',NULL,NULL,'published','[\"products\\/51.jpg\"]','SW-192-A0',0,15,0,1,0,1,1,0,1156,NULL,NULL,NULL,19.00,12.00,14.00,642.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(192,'Aptamil Follow On Baby Milk',NULL,NULL,'published','[\"products\\/51.jpg\"]','SW-192-A0-A1',0,15,0,1,0,1,1,0,1156,NULL,NULL,NULL,19.00,12.00,14.00,642.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(193,'Cuisinart Chef’S Classic Hard-Anodized',NULL,NULL,'published','[\"products\\/52.jpg\"]','SW-146-A0',0,19,0,1,0,5,1,0,1180,1026.6,NULL,NULL,12.00,16.00,10.00,665.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(194,'Cuisinart Chef’S Classic Hard-Anodized',NULL,NULL,'published','[\"products\\/52-1.jpg\"]','SW-146-A0-A1',0,19,0,1,0,5,1,0,1180,1050.2,NULL,NULL,12.00,16.00,10.00,665.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(195,'Corn, Yellow Sweet (Digital)',NULL,NULL,'published','[\"products\\/53.jpg\"]','SW-110-A0',0,20,0,1,0,2,1,0,1034,NULL,NULL,NULL,15.00,18.00,12.00,810.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(196,'Corn, Yellow Sweet (Digital)',NULL,NULL,'published','[\"products\\/53-1.jpg\"]','SW-110-A0-A1',0,20,0,1,0,2,1,0,1034,NULL,NULL,NULL,15.00,18.00,12.00,810.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(197,'Corn, Yellow Sweet (Digital)',NULL,NULL,'published','[\"products\\/53.jpg\"]','SW-110-A0-A2',0,20,0,1,0,2,1,0,1034,NULL,NULL,NULL,15.00,18.00,12.00,810.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(198,'Hobnobs The Nobbly Biscuit',NULL,NULL,'published','[\"products\\/54.jpg\"]','SW-180-A0',0,11,0,1,0,3,1,0,720,NULL,NULL,NULL,15.00,11.00,10.00,787.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(199,'Hobnobs The Nobbly Biscuit',NULL,NULL,'published','[\"products\\/54-1.jpg\"]','SW-180-A0-A1',0,11,0,1,0,3,1,0,720,NULL,NULL,NULL,15.00,11.00,10.00,787.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(200,'Honest Organic Still Lemonade',NULL,NULL,'published','[\"products\\/55.jpg\"]','SW-172-A0',0,20,0,1,0,1,1,0,1214,NULL,NULL,NULL,19.00,15.00,13.00,893.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(201,'Honest Organic Still Lemonade',NULL,NULL,'published','[\"products\\/55-1.jpg\"]','SW-172-A0-A1',0,20,0,1,0,1,1,0,1214,NULL,NULL,NULL,19.00,15.00,13.00,893.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(202,'Ice Beck’s Beer 350ml x 24 Pieces',NULL,NULL,'published','[\"products\\/56.jpg\"]','SW-181-A0',0,20,0,1,0,4,1,0,1270,1016,NULL,NULL,18.00,16.00,19.00,768.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(203,'Ice Beck’s Beer 350ml x 24 Pieces',NULL,NULL,'published','[\"products\\/56-1.jpg\"]','SW-181-A0-A1',0,20,0,1,0,4,1,0,1270,1130.3,NULL,NULL,18.00,16.00,19.00,768.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(204,'Ice Beck’s Beer 350ml x 24 Pieces',NULL,NULL,'published','[\"products\\/56-2.jpg\"]','SW-181-A0-A2',0,20,0,1,0,4,1,0,1270,1041.4,NULL,NULL,18.00,16.00,19.00,768.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(205,'Iceland 6 Hot Cross Buns (Digital)',NULL,NULL,'published','[\"products\\/57.jpg\"]','SW-168-A0',0,14,0,1,0,2,1,0,1228,NULL,NULL,NULL,17.00,11.00,15.00,587.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(206,'Iceland 6 Hot Cross Buns (Digital)',NULL,NULL,'published','[\"products\\/57-1.jpg\"]','SW-168-A0-A1',0,14,0,1,0,2,1,0,1228,NULL,NULL,NULL,17.00,11.00,15.00,587.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(207,'Iceland 6 Hot Cross Buns (Digital)',NULL,NULL,'published','[\"products\\/57.jpg\"]','SW-168-A0-A2',0,14,0,1,0,2,1,0,1228,NULL,NULL,NULL,17.00,11.00,15.00,587.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(208,'Iceland Luxury 4 Panini Rolls',NULL,NULL,'published','[\"products\\/58.jpg\"]','SW-137-A0',0,18,0,1,0,4,1,0,895,NULL,NULL,NULL,15.00,20.00,19.00,571.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(209,'Iceland Luxury 4 Panini Rolls',NULL,NULL,'published','[\"products\\/58-1.jpg\"]','SW-137-A0-A1',0,18,0,1,0,4,1,0,895,NULL,NULL,NULL,15.00,20.00,19.00,571.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(210,'Iceland Luxury 4 Panini Rolls',NULL,NULL,'published','[\"products\\/58-2.jpg\"]','SW-137-A0-A2',0,18,0,1,0,4,1,0,895,NULL,NULL,NULL,15.00,20.00,19.00,571.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(211,'Iceland Soft Scoop Vanilla',NULL,NULL,'published','[\"products\\/59.jpg\"]','SW-121-A0',0,14,0,1,0,2,1,0,993,NULL,NULL,NULL,13.00,20.00,12.00,767.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(212,'Iceland Soft Scoop Vanilla',NULL,NULL,'published','[\"products\\/59-1.jpg\"]','SW-121-A0-A1',0,14,0,1,0,2,1,0,993,NULL,NULL,NULL,13.00,20.00,12.00,767.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(213,'Iceland Spaghetti Bolognese',NULL,NULL,'published','[\"products\\/60.jpg\"]','SW-145-A0',0,12,0,1,0,3,1,0,555,399.6,NULL,NULL,19.00,13.00,16.00,800.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(214,'Iceland Spaghetti Bolognese',NULL,NULL,'published','[\"products\\/60-1.jpg\"]','SW-145-A0-A1',0,12,0,1,0,3,1,0,555,482.85,NULL,NULL,19.00,13.00,16.00,800.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(215,'Kellogg’s Coco Pops Cereal (Digital)',NULL,NULL,'published','[\"products\\/61.jpg\"]','SW-174-A0',0,16,0,1,0,1,1,0,1274,NULL,NULL,NULL,11.00,14.00,10.00,728.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(216,'Kellogg’s Coco Pops Cereal (Digital)',NULL,NULL,'published','[\"products\\/61-1.jpg\"]','SW-174-A0-A1',0,16,0,1,0,1,1,0,1274,NULL,NULL,NULL,11.00,14.00,10.00,728.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(217,'Kit Kat Chunky Milk Chocolate',NULL,NULL,'published','[\"products\\/62.jpg\"]','SW-167-A0',0,15,0,1,0,5,1,0,1006,NULL,NULL,NULL,15.00,14.00,10.00,653.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(218,'Large Green Bell Pepper',NULL,NULL,'published','[\"products\\/63.jpg\"]','SW-115-A0',0,18,0,1,0,5,1,0,755,NULL,NULL,NULL,17.00,11.00,16.00,544.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(219,'Large Green Bell Pepper',NULL,NULL,'published','[\"products\\/63-1.jpg\"]','SW-115-A0-A1',0,18,0,1,0,5,1,0,755,NULL,NULL,NULL,17.00,11.00,16.00,544.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(220,'Pice 94w Beasley Journal',NULL,NULL,'published','[\"products\\/64.jpg\"]','SW-137-A0',0,14,0,1,0,4,1,0,1231,1107.9,NULL,NULL,17.00,16.00,15.00,751.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(221,'Pice 94w Beasley Journal',NULL,NULL,'published','[\"products\\/64-1.jpg\"]','SW-137-A0-A1',0,14,0,1,0,4,1,0,1231,1009.42,NULL,NULL,17.00,16.00,15.00,751.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(222,'Pice 94w Beasley Journal',NULL,NULL,'published','[\"products\\/64.jpg\"]','SW-137-A0-A2',0,14,0,1,0,4,1,0,1231,1107.9,NULL,NULL,17.00,16.00,15.00,751.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(223,'Pice 94w Beasley Journal',NULL,NULL,'published','[\"products\\/64.jpg\"]','SW-137-A0-A3',0,14,0,1,0,4,1,0,1231,898.63,NULL,NULL,17.00,16.00,15.00,751.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'physical',NULL,NULL,0,0,0),(224,'Province Piece Glass Drinking Glass (Digital)',NULL,NULL,'published','[\"products\\/65.jpg\"]','SW-126-A0',0,20,0,1,0,3,1,0,1201,NULL,NULL,NULL,10.00,16.00,10.00,626.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(225,'Province Piece Glass Drinking Glass (Digital)',NULL,NULL,'published','[\"products\\/65-1.jpg\"]','SW-126-A0-A1',0,20,0,1,0,3,1,0,1201,NULL,NULL,NULL,10.00,16.00,10.00,626.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0),(226,'Province Piece Glass Drinking Glass (Digital)',NULL,NULL,'published','[\"products\\/65-2.jpg\"]','SW-126-A0-A2',0,20,0,1,0,3,1,0,1201,NULL,NULL,NULL,10.00,16.00,10.00,626.00,NULL,0,'2024-06-18 23:00:42','2024-06-18 23:00:42','in_stock',0,'Botble\\ACL\\Models\\User',NULL,'digital',NULL,NULL,0,0,0); /*!40000 ALTER TABLE `ec_products` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_products_translations` -- DROP TABLE IF EXISTS `ec_products_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_products_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `ec_products_id` bigint unsigned NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text COLLATE utf8mb4_unicode_ci, `content` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`lang_code`,`ec_products_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_products_translations` -- LOCK TABLES `ec_products_translations` WRITE; /*!40000 ALTER TABLE `ec_products_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_products_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_review_replies` -- DROP TABLE IF EXISTS `ec_review_replies`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_review_replies` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint unsigned NOT NULL, `review_id` bigint unsigned NOT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `ec_review_replies_review_id_user_id_unique` (`review_id`,`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_review_replies` -- LOCK TABLES `ec_review_replies` WRITE; /*!40000 ALTER TABLE `ec_review_replies` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_review_replies` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_reviews` -- DROP TABLE IF EXISTS `ec_reviews`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_reviews` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `customer_id` bigint unsigned DEFAULT NULL, `customer_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `customer_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `product_id` bigint unsigned NOT NULL, `star` double(8,2) NOT NULL, `comment` text COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `images` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`id`), UNIQUE KEY `ec_reviews_product_id_customer_id_unique` (`product_id`,`customer_id`), KEY `ec_reviews_product_id_customer_id_status_created_at_index` (`product_id`,`customer_id`,`status`,`created_at`), KEY `review_relation_index` (`product_id`,`customer_id`,`status`) ) ENGINE=InnoDB AUTO_INCREMENT=1001 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_reviews` -- LOCK TABLES `ec_reviews` WRITE; /*!40000 ALTER TABLE `ec_reviews` DISABLE KEYS */; INSERT INTO `ec_reviews` VALUES (1,9,NULL,NULL,52,1.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/6.jpg\",\"products\\/45.jpg\"]'),(2,3,NULL,NULL,32,5.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/18.jpg\",\"products\\/25.jpg\",\"products\\/52.jpg\"]'),(3,1,NULL,NULL,25,3.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/19-3.jpg\",\"products\\/20-2.jpg\",\"products\\/23-3.jpg\"]'),(4,8,NULL,NULL,31,3.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/40-1.jpg\",\"products\\/43-1.jpg\",\"products\\/50.jpg\"]'),(5,2,NULL,NULL,37,5.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/23-3.jpg\"]'),(6,7,NULL,NULL,40,4.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/28-2.jpg\"]'),(7,1,NULL,NULL,13,2.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/31-1.jpg\",\"products\\/65.jpg\"]'),(8,3,NULL,NULL,2,4.00,'Clean & perfect source code','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/9-1.jpg\",\"products\\/19-1.jpg\",\"products\\/62-1.jpg\"]'),(9,9,NULL,NULL,62,3.00,'Good app, good backup service and support. Good documentation.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/61.jpg\"]'),(10,5,NULL,NULL,11,2.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/10-1.jpg\",\"products\\/20.jpg\",\"products\\/24.jpg\"]'),(11,1,NULL,NULL,37,3.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/12-1.jpg\",\"products\\/49-2.jpg\",\"products\\/52.jpg\",\"products\\/54.jpg\"]'),(12,2,NULL,NULL,51,5.00,'Good app, good backup service and support. Good documentation.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/8-1.jpg\",\"products\\/31-1.jpg\",\"products\\/40-1.jpg\"]'),(13,1,NULL,NULL,22,3.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/5-2.jpg\",\"products\\/10-1.jpg\",\"products\\/23-2.jpg\",\"products\\/43-1.jpg\"]'),(14,2,NULL,NULL,53,4.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/8.jpg\",\"products\\/33-2.jpg\",\"products\\/58-2.jpg\",\"products\\/64.jpg\"]'),(15,1,NULL,NULL,47,1.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/23-2.jpg\",\"products\\/64-1.jpg\"]'),(16,2,NULL,NULL,11,3.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/11.jpg\",\"products\\/18.jpg\",\"products\\/33.jpg\",\"products\\/56-2.jpg\"]'),(17,2,NULL,NULL,56,1.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/12-2.jpg\",\"products\\/23-1.jpg\",\"products\\/45-1.jpg\",\"products\\/50-1.jpg\"]'),(18,6,NULL,NULL,11,2.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/11.jpg\",\"products\\/19-1.jpg\",\"products\\/23-3.jpg\",\"products\\/54-1.jpg\"]'),(19,4,NULL,NULL,7,3.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/17-1.jpg\",\"products\\/49.jpg\",\"products\\/55-2.jpg\",\"products\\/60.jpg\"]'),(20,5,NULL,NULL,45,4.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/16.jpg\",\"products\\/28-1.jpg\",\"products\\/60.jpg\"]'),(21,3,NULL,NULL,13,2.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/8-3.jpg\",\"products\\/16.jpg\",\"products\\/60-1.jpg\"]'),(22,5,NULL,NULL,14,4.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/39-1.jpg\",\"products\\/56-1.jpg\"]'),(23,1,NULL,NULL,56,4.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/17-3.jpg\",\"products\\/38.jpg\",\"products\\/39-1.jpg\",\"products\\/47.jpg\"]'),(24,6,NULL,NULL,64,4.00,'Clean & perfect source code','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/5-3.jpg\",\"products\\/8-3.jpg\",\"products\\/22-1.jpg\",\"products\\/36-1.jpg\"]'),(25,2,NULL,NULL,52,3.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/2.jpg\",\"products\\/26.jpg\"]'),(27,5,NULL,NULL,57,5.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/18-1.jpg\",\"products\\/45-1.jpg\",\"products\\/50.jpg\",\"products\\/60-1.jpg\"]'),(28,4,NULL,NULL,45,4.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/38-1.jpg\",\"products\\/43.jpg\"]'),(29,4,NULL,NULL,42,5.00,'Good app, good backup service and support. Good documentation.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/9.jpg\",\"products\\/14.jpg\",\"products\\/55.jpg\",\"products\\/59.jpg\"]'),(30,5,NULL,NULL,49,2.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/2-3.jpg\",\"products\\/19-3.jpg\",\"products\\/22.jpg\",\"products\\/59-3.jpg\"]'),(31,6,NULL,NULL,39,2.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/11-1.jpg\",\"products\\/19.jpg\",\"products\\/20-1.jpg\",\"products\\/44-2.jpg\"]'),(32,4,NULL,NULL,59,2.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/8-2.jpg\",\"products\\/17.jpg\",\"products\\/20-2.jpg\",\"products\\/58-2.jpg\"]'),(33,3,NULL,NULL,52,4.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/44-2.jpg\",\"products\\/47.jpg\",\"products\\/59-1.jpg\"]'),(34,4,NULL,NULL,3,3.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/18-2.jpg\",\"products\\/43.jpg\"]'),(35,8,NULL,NULL,4,3.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/4.jpg\",\"products\\/62-1.jpg\"]'),(36,7,NULL,NULL,12,3.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/12-3.jpg\",\"products\\/47-1.jpg\",\"products\\/55-2.jpg\"]'),(37,6,NULL,NULL,7,5.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/62-1.jpg\"]'),(38,6,NULL,NULL,14,4.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/8.jpg\",\"products\\/10.jpg\"]'),(39,8,NULL,NULL,30,5.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/5-1.jpg\"]'),(41,3,NULL,NULL,53,2.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/20-2.jpg\",\"products\\/35-1.jpg\",\"products\\/46-1.jpg\",\"products\\/49.jpg\"]'),(42,7,NULL,NULL,33,4.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/9-1.jpg\",\"products\\/22.jpg\",\"products\\/33-2.jpg\"]'),(43,6,NULL,NULL,44,1.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/30-1.jpg\",\"products\\/41-2.jpg\",\"products\\/42-2.jpg\"]'),(44,2,NULL,NULL,43,3.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/8-3.jpg\",\"products\\/21-1.jpg\",\"products\\/38-1.jpg\"]'),(45,4,NULL,NULL,32,3.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/31.jpg\",\"products\\/41-2.jpg\"]'),(46,6,NULL,NULL,50,3.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/30-2.jpg\"]'),(47,9,NULL,NULL,53,2.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/8-3.jpg\",\"products\\/31.jpg\"]'),(48,8,NULL,NULL,23,1.00,'Best ecommerce CMS online store!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/5-3.jpg\",\"products\\/36.jpg\",\"products\\/53-1.jpg\"]'),(49,3,NULL,NULL,20,5.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/5-1.jpg\",\"products\\/20-2.jpg\",\"products\\/58-1.jpg\"]'),(50,3,NULL,NULL,33,3.00,'Clean & perfect source code','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/30-2.jpg\",\"products\\/39-1.jpg\",\"products\\/48.jpg\"]'),(51,5,NULL,NULL,7,1.00,'Clean & perfect source code','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/33.jpg\",\"products\\/58-2.jpg\",\"products\\/61-1.jpg\"]'),(52,7,NULL,NULL,59,3.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/10.jpg\",\"products\\/22.jpg\",\"products\\/27.jpg\",\"products\\/54.jpg\"]'),(53,2,NULL,NULL,2,2.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/11-1.jpg\"]'),(54,5,NULL,NULL,65,3.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/12-3.jpg\",\"products\\/19-2.jpg\",\"products\\/22-1.jpg\",\"products\\/22-3.jpg\"]'),(55,8,NULL,NULL,49,5.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/47.jpg\",\"products\\/64.jpg\"]'),(56,3,NULL,NULL,36,5.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/22-2.jpg\",\"products\\/65-1.jpg\"]'),(57,8,NULL,NULL,22,4.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/58-2.jpg\"]'),(58,1,NULL,NULL,11,1.00,'Clean & perfect source code','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/55-2.jpg\"]'),(59,1,NULL,NULL,63,3.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/36.jpg\",\"products\\/44-1.jpg\",\"products\\/45.jpg\",\"products\\/61.jpg\"]'),(60,1,NULL,NULL,45,1.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/38-2.jpg\"]'),(61,7,NULL,NULL,57,4.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/11-3.jpg\",\"products\\/19-1.jpg\"]'),(63,1,NULL,NULL,53,1.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/7.jpg\",\"products\\/41.jpg\",\"products\\/61-1.jpg\"]'),(64,4,NULL,NULL,56,4.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/11-1.jpg\",\"products\\/17-2.jpg\",\"products\\/28-1.jpg\",\"products\\/42-2.jpg\"]'),(65,3,NULL,NULL,43,5.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/4-1.jpg\",\"products\\/11.jpg\",\"products\\/15-1.jpg\",\"products\\/32-1.jpg\"]'),(66,5,NULL,NULL,40,4.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/38-2.jpg\"]'),(67,2,NULL,NULL,17,1.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/1.jpg\",\"products\\/42.jpg\",\"products\\/53.jpg\"]'),(68,8,NULL,NULL,38,4.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/10-1.jpg\",\"products\\/44-1.jpg\",\"products\\/63.jpg\"]'),(69,4,NULL,NULL,12,4.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/7.jpg\",\"products\\/11-1.jpg\",\"products\\/13-1.jpg\"]'),(71,4,NULL,NULL,24,3.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/23.jpg\"]'),(72,3,NULL,NULL,12,3.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/6.jpg\",\"products\\/30-2.jpg\"]'),(73,8,NULL,NULL,50,3.00,'Clean & perfect source code','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/13.jpg\"]'),(74,4,NULL,NULL,39,1.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/9.jpg\",\"products\\/38-3.jpg\",\"products\\/49.jpg\"]'),(75,4,NULL,NULL,20,2.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/46.jpg\"]'),(76,5,NULL,NULL,9,5.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/4-3.jpg\",\"products\\/29-2.jpg\"]'),(77,5,NULL,NULL,35,1.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/10-2.jpg\",\"products\\/15.jpg\",\"products\\/21.jpg\",\"products\\/34.jpg\"]'),(78,1,NULL,NULL,55,1.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/13.jpg\",\"products\\/21-1.jpg\",\"products\\/36.jpg\",\"products\\/55-2.jpg\"]'),(79,5,NULL,NULL,6,5.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/15-1.jpg\"]'),(80,9,NULL,NULL,31,5.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/22-3.jpg\",\"products\\/28.jpg\",\"products\\/50.jpg\"]'),(81,1,NULL,NULL,7,2.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/42-1.jpg\",\"products\\/65-2.jpg\"]'),(82,7,NULL,NULL,43,5.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/8-3.jpg\",\"products\\/29.jpg\",\"products\\/63.jpg\"]'),(83,1,NULL,NULL,23,4.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/34-1.jpg\",\"products\\/64.jpg\"]'),(84,8,NULL,NULL,60,2.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/29-2.jpg\",\"products\\/32-1.jpg\"]'),(85,3,NULL,NULL,64,2.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/13.jpg\"]'),(86,1,NULL,NULL,60,4.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/19-2.jpg\",\"products\\/26.jpg\"]'),(87,8,NULL,NULL,32,5.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/12.jpg\"]'),(88,9,NULL,NULL,56,2.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/33-2.jpg\",\"products\\/51.jpg\",\"products\\/61.jpg\"]'),(89,7,NULL,NULL,37,1.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/7.jpg\",\"products\\/12.jpg\",\"products\\/20-3.jpg\",\"products\\/60-1.jpg\"]'),(90,6,NULL,NULL,22,4.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/1.jpg\",\"products\\/4.jpg\",\"products\\/17-2.jpg\",\"products\\/34.jpg\"]'),(91,3,NULL,NULL,18,1.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/34-1.jpg\",\"products\\/37-1.jpg\",\"products\\/41-1.jpg\",\"products\\/56-1.jpg\"]'),(92,1,NULL,NULL,64,4.00,'Clean & perfect source code','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/12-3.jpg\",\"products\\/20-3.jpg\",\"products\\/49-1.jpg\",\"products\\/63-1.jpg\"]'),(95,8,NULL,NULL,48,4.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/4-2.jpg\"]'),(96,4,NULL,NULL,30,2.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/27-1.jpg\",\"products\\/47-1.jpg\",\"products\\/60.jpg\"]'),(97,8,NULL,NULL,54,5.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/24-2.jpg\",\"products\\/43-1.jpg\"]'),(98,2,NULL,NULL,62,1.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/6.jpg\",\"products\\/24.jpg\",\"products\\/37-2.jpg\",\"products\\/62.jpg\"]'),(99,9,NULL,NULL,13,1.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/5-3.jpg\",\"products\\/10-2.jpg\",\"products\\/32-1.jpg\"]'),(100,4,NULL,NULL,28,5.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/42-2.jpg\",\"products\\/43-2.jpg\",\"products\\/53-1.jpg\",\"products\\/53.jpg\"]'),(101,9,NULL,NULL,54,1.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/10-2.jpg\"]'),(103,5,NULL,NULL,36,4.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/21-1.jpg\"]'),(104,6,NULL,NULL,26,5.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/24.jpg\",\"products\\/32-2.jpg\",\"products\\/44-2.jpg\",\"products\\/51.jpg\"]'),(106,4,NULL,NULL,37,2.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/2-1.jpg\"]'),(107,6,NULL,NULL,19,2.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/5.jpg\",\"products\\/22-2.jpg\",\"products\\/62.jpg\"]'),(108,8,NULL,NULL,18,5.00,'Best ecommerce CMS online store!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/4-3.jpg\",\"products\\/24-1.jpg\",\"products\\/27.jpg\",\"products\\/34-1.jpg\"]'),(110,9,NULL,NULL,30,4.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/34-1.jpg\"]'),(111,4,NULL,NULL,47,3.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/33.jpg\",\"products\\/48-2.jpg\",\"products\\/49-1.jpg\",\"products\\/55-1.jpg\"]'),(112,9,NULL,NULL,29,4.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/3.jpg\",\"products\\/55-1.jpg\",\"products\\/58-2.jpg\",\"products\\/59-2.jpg\"]'),(113,7,NULL,NULL,29,1.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/32.jpg\",\"products\\/41.jpg\",\"products\\/46.jpg\"]'),(114,3,NULL,NULL,46,2.00,'Clean & perfect source code','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/12-2.jpg\",\"products\\/61-1.jpg\"]'),(115,9,NULL,NULL,61,4.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/3.jpg\",\"products\\/27-1.jpg\",\"products\\/46.jpg\",\"products\\/58-2.jpg\"]'),(116,7,NULL,NULL,65,4.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/45.jpg\",\"products\\/49.jpg\",\"products\\/58-1.jpg\"]'),(117,6,NULL,NULL,61,4.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/30-2.jpg\"]'),(118,6,NULL,NULL,20,1.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/17-1.jpg\",\"products\\/18-3.jpg\",\"products\\/52.jpg\"]'),(119,7,NULL,NULL,52,4.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/19-3.jpg\",\"products\\/21-1.jpg\",\"products\\/56-2.jpg\"]'),(120,7,NULL,NULL,10,1.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/5-2.jpg\",\"products\\/15.jpg\",\"products\\/40.jpg\"]'),(121,3,NULL,NULL,4,1.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/8-2.jpg\",\"products\\/34.jpg\",\"products\\/38-1.jpg\",\"products\\/57-1.jpg\"]'),(123,4,NULL,NULL,51,3.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/12.jpg\",\"products\\/38-2.jpg\",\"products\\/52-1.jpg\"]'),(124,5,NULL,NULL,50,1.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/4-2.jpg\",\"products\\/22-1.jpg\",\"products\\/41-2.jpg\",\"products\\/41.jpg\"]'),(125,9,NULL,NULL,24,1.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/41.jpg\"]'),(126,1,NULL,NULL,42,4.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/53-1.jpg\",\"products\\/58-2.jpg\",\"products\\/63.jpg\"]'),(127,3,NULL,NULL,45,1.00,'Good app, good backup service and support. Good documentation.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/4-1.jpg\",\"products\\/54-1.jpg\"]'),(128,5,NULL,NULL,34,1.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/15-1.jpg\",\"products\\/20-1.jpg\",\"products\\/43.jpg\",\"products\\/58.jpg\"]'),(130,5,NULL,NULL,16,3.00,'Good app, good backup service and support. Good documentation.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/10-2.jpg\",\"products\\/24.jpg\",\"products\\/35.jpg\"]'),(132,5,NULL,NULL,17,4.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/7.jpg\",\"products\\/18.jpg\",\"products\\/20-2.jpg\",\"products\\/63-1.jpg\"]'),(135,9,NULL,NULL,35,4.00,'Clean & perfect source code','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/8-1.jpg\",\"products\\/56-2.jpg\",\"products\\/57.jpg\"]'),(136,4,NULL,NULL,5,1.00,'Good app, good backup service and support. Good documentation.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/39-2.jpg\",\"products\\/59-2.jpg\"]'),(137,7,NULL,NULL,14,1.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/2.jpg\",\"products\\/36.jpg\"]'),(138,7,NULL,NULL,48,3.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/41-2.jpg\",\"products\\/41.jpg\",\"products\\/44-2.jpg\",\"products\\/54-1.jpg\"]'),(141,9,NULL,NULL,8,4.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/55.jpg\"]'),(142,7,NULL,NULL,47,4.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/5-2.jpg\",\"products\\/21-2.jpg\",\"products\\/55-2.jpg\",\"products\\/63.jpg\"]'),(143,7,NULL,NULL,15,2.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/19-1.jpg\",\"products\\/38.jpg\",\"products\\/44-1.jpg\"]'),(144,4,NULL,NULL,64,2.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/29.jpg\",\"products\\/53.jpg\",\"products\\/54.jpg\"]'),(145,3,NULL,NULL,59,1.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/12.jpg\",\"products\\/21.jpg\",\"products\\/52-1.jpg\"]'),(150,2,NULL,NULL,44,4.00,'Good app, good backup service and support. Good documentation.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/39-2.jpg\"]'),(151,1,NULL,NULL,50,1.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/25-2.jpg\",\"products\\/38-2.jpg\",\"products\\/58-1.jpg\"]'),(152,9,NULL,NULL,60,5.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/4-3.jpg\",\"products\\/17-3.jpg\",\"products\\/38.jpg\",\"products\\/41-1.jpg\"]'),(154,2,NULL,NULL,40,3.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/27-1.jpg\",\"products\\/38-2.jpg\"]'),(155,7,NULL,NULL,6,3.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/24-1.jpg\",\"products\\/61-1.jpg\"]'),(156,9,NULL,NULL,7,4.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/24-2.jpg\"]'),(157,6,NULL,NULL,27,3.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/28-1.jpg\",\"products\\/53.jpg\"]'),(158,5,NULL,NULL,42,3.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/9-2.jpg\",\"products\\/37-2.jpg\",\"products\\/38.jpg\"]'),(159,8,NULL,NULL,46,3.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/5-2.jpg\",\"products\\/21.jpg\",\"products\\/54.jpg\",\"products\\/56.jpg\"]'),(160,1,NULL,NULL,36,5.00,'Clean & perfect source code','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/8-3.jpg\",\"products\\/28.jpg\",\"products\\/29.jpg\"]'),(161,1,NULL,NULL,39,5.00,'Clean & perfect source code','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/29-1.jpg\",\"products\\/38-2.jpg\",\"products\\/44-2.jpg\",\"products\\/46-1.jpg\"]'),(162,7,NULL,NULL,20,4.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/21-1.jpg\"]'),(163,8,NULL,NULL,10,5.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/24.jpg\"]'),(165,3,NULL,NULL,11,3.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/22-3.jpg\",\"products\\/32-2.jpg\",\"products\\/56.jpg\"]'),(166,6,NULL,NULL,45,2.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/21-1.jpg\",\"products\\/21-2.jpg\"]'),(169,2,NULL,NULL,12,1.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/30.jpg\"]'),(170,4,NULL,NULL,58,3.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/3.jpg\",\"products\\/8-2.jpg\",\"products\\/14.jpg\",\"products\\/58-1.jpg\"]'),(171,4,NULL,NULL,33,2.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/38-1.jpg\",\"products\\/64.jpg\"]'),(174,8,NULL,NULL,21,1.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/20.jpg\",\"products\\/21.jpg\",\"products\\/61-1.jpg\",\"products\\/65-2.jpg\"]'),(176,8,NULL,NULL,27,3.00,'Clean & perfect source code','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/17.jpg\",\"products\\/39-2.jpg\",\"products\\/63-1.jpg\"]'),(177,9,NULL,NULL,57,2.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/18-3.jpg\",\"products\\/29-1.jpg\",\"products\\/60.jpg\"]'),(178,8,NULL,NULL,36,5.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/25-2.jpg\"]'),(179,3,NULL,NULL,42,5.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/11.jpg\",\"products\\/20.jpg\",\"products\\/21.jpg\",\"products\\/23-1.jpg\"]'),(180,6,NULL,NULL,43,4.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/25.jpg\",\"products\\/27-1.jpg\"]'),(181,5,NULL,NULL,56,3.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/48.jpg\",\"products\\/61.jpg\"]'),(182,4,NULL,NULL,41,1.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/38-3.jpg\",\"products\\/41-1.jpg\"]'),(183,7,NULL,NULL,64,3.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/22-1.jpg\",\"products\\/41-1.jpg\",\"products\\/52-2.jpg\"]'),(184,6,NULL,NULL,18,5.00,'Good app, good backup service and support. Good documentation.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/15.jpg\"]'),(185,9,NULL,NULL,12,3.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/20-2.jpg\"]'),(186,4,NULL,NULL,26,4.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/2-3.jpg\",\"products\\/14.jpg\",\"products\\/41-2.jpg\",\"products\\/59-1.jpg\"]'),(187,9,NULL,NULL,44,5.00,'Best ecommerce CMS online store!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/22-2.jpg\",\"products\\/37.jpg\"]'),(188,1,NULL,NULL,40,1.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/5.jpg\",\"products\\/18-2.jpg\",\"products\\/60.jpg\"]'),(190,2,NULL,NULL,35,1.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/22-1.jpg\",\"products\\/28-2.jpg\",\"products\\/60.jpg\"]'),(191,4,NULL,NULL,29,5.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/36-2.jpg\",\"products\\/52.jpg\",\"products\\/62-1.jpg\"]'),(192,2,NULL,NULL,26,2.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/41-2.jpg\",\"products\\/59-1.jpg\",\"products\\/60-1.jpg\"]'),(194,2,NULL,NULL,61,1.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/37-2.jpg\",\"products\\/61.jpg\"]'),(195,3,NULL,NULL,40,4.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/25.jpg\",\"products\\/40.jpg\",\"products\\/59.jpg\"]'),(196,8,NULL,NULL,57,4.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/8.jpg\"]'),(197,8,NULL,NULL,9,1.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/24.jpg\",\"products\\/36-1.jpg\",\"products\\/52.jpg\",\"products\\/53.jpg\"]'),(198,8,NULL,NULL,17,5.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/22-2.jpg\",\"products\\/53.jpg\"]'),(199,3,NULL,NULL,29,3.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/48.jpg\",\"products\\/62.jpg\"]'),(200,8,NULL,NULL,63,4.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/20-3.jpg\",\"products\\/43.jpg\"]'),(201,8,NULL,NULL,40,2.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/44-2.jpg\"]'),(202,7,NULL,NULL,7,2.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/9-2.jpg\",\"products\\/11-3.jpg\",\"products\\/58.jpg\",\"products\\/59-2.jpg\"]'),(203,4,NULL,NULL,63,2.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/11-2.jpg\",\"products\\/43-1.jpg\",\"products\\/54.jpg\",\"products\\/57-1.jpg\"]'),(204,3,NULL,NULL,28,2.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/4-2.jpg\",\"products\\/20-2.jpg\"]'),(205,8,NULL,NULL,24,5.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/19-1.jpg\",\"products\\/22-2.jpg\",\"products\\/26-1.jpg\",\"products\\/52.jpg\"]'),(206,4,NULL,NULL,34,4.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/5.jpg\",\"products\\/22-3.jpg\",\"products\\/33-2.jpg\"]'),(207,2,NULL,NULL,27,4.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/9.jpg\",\"products\\/36.jpg\"]'),(208,7,NULL,NULL,26,1.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/49-2.jpg\",\"products\\/49.jpg\"]'),(209,5,NULL,NULL,28,3.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/10-1.jpg\",\"products\\/23-2.jpg\",\"products\\/38.jpg\"]'),(210,4,NULL,NULL,50,3.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/8-3.jpg\",\"products\\/29.jpg\"]'),(211,9,NULL,NULL,21,3.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/47-1.jpg\"]'),(212,3,NULL,NULL,15,4.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/8-3.jpg\",\"products\\/16.jpg\",\"products\\/20-3.jpg\",\"products\\/35.jpg\"]'),(213,4,NULL,NULL,19,5.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/8.jpg\",\"products\\/23-2.jpg\",\"products\\/24-2.jpg\"]'),(216,4,NULL,NULL,9,2.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/19-1.jpg\",\"products\\/50.jpg\",\"products\\/63-1.jpg\"]'),(217,7,NULL,NULL,34,3.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/22-3.jpg\",\"products\\/26-1.jpg\",\"products\\/32.jpg\",\"products\\/55-1.jpg\"]'),(221,9,NULL,NULL,26,1.00,'Clean & perfect source code','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/18-2.jpg\",\"products\\/20-3.jpg\",\"products\\/23-1.jpg\",\"products\\/52.jpg\"]'),(222,2,NULL,NULL,28,4.00,'Good app, good backup service and support. Good documentation.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/57.jpg\"]'),(223,3,NULL,NULL,49,2.00,'Best ecommerce CMS online store!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/41-1.jpg\",\"products\\/51.jpg\",\"products\\/52-1.jpg\",\"products\\/53.jpg\"]'),(225,8,NULL,NULL,55,1.00,'Best ecommerce CMS online store!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/2.jpg\"]'),(226,9,NULL,NULL,3,4.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/17-1.jpg\",\"products\\/35.jpg\",\"products\\/39-1.jpg\"]'),(228,6,NULL,NULL,59,3.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/38-2.jpg\",\"products\\/45.jpg\"]'),(229,9,NULL,NULL,6,3.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/13.jpg\"]'),(231,1,NULL,NULL,10,2.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/57.jpg\"]'),(233,2,NULL,NULL,8,5.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/4-1.jpg\",\"products\\/14.jpg\",\"products\\/56-1.jpg\",\"products\\/61.jpg\"]'),(234,4,NULL,NULL,31,1.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/35.jpg\",\"products\\/38-2.jpg\",\"products\\/61.jpg\"]'),(235,7,NULL,NULL,55,2.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/23-3.jpg\",\"products\\/25.jpg\"]'),(237,6,NULL,NULL,54,5.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/21-2.jpg\",\"products\\/23-2.jpg\",\"products\\/48-2.jpg\"]'),(239,2,NULL,NULL,5,3.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/16.jpg\",\"products\\/49.jpg\"]'),(240,3,NULL,NULL,31,4.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/47-1.jpg\",\"products\\/52-1.jpg\"]'),(241,6,NULL,NULL,42,5.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/9-2.jpg\",\"products\\/36.jpg\",\"products\\/50-1.jpg\"]'),(243,9,NULL,NULL,42,5.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/65-1.jpg\"]'),(244,9,NULL,NULL,41,4.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/12-2.jpg\",\"products\\/38-2.jpg\",\"products\\/56-2.jpg\"]'),(245,1,NULL,NULL,48,4.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/1.jpg\",\"products\\/48-1.jpg\"]'),(249,2,NULL,NULL,60,2.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/8-1.jpg\",\"products\\/22-1.jpg\"]'),(250,8,NULL,NULL,11,1.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/39-1.jpg\",\"products\\/50.jpg\",\"products\\/53-1.jpg\",\"products\\/58-1.jpg\"]'),(251,2,NULL,NULL,45,5.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/11-2.jpg\",\"products\\/12-2.jpg\",\"products\\/37-2.jpg\",\"products\\/59.jpg\"]'),(252,7,NULL,NULL,21,5.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/28-1.jpg\"]'),(255,6,NULL,NULL,9,5.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/20.jpg\",\"products\\/28.jpg\"]'),(256,6,NULL,NULL,17,5.00,'Best ecommerce CMS online store!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/59-2.jpg\"]'),(259,6,NULL,NULL,12,2.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/37-1.jpg\",\"products\\/57-1.jpg\",\"products\\/60.jpg\"]'),(261,5,NULL,NULL,47,4.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/10-1.jpg\",\"products\\/31-1.jpg\",\"products\\/38.jpg\",\"products\\/42-1.jpg\"]'),(262,9,NULL,NULL,63,4.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/35.jpg\",\"products\\/65-1.jpg\"]'),(264,3,NULL,NULL,16,2.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/12-2.jpg\",\"products\\/19-2.jpg\",\"products\\/44-2.jpg\"]'),(265,7,NULL,NULL,63,4.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/15-1.jpg\",\"products\\/32-2.jpg\",\"products\\/38-1.jpg\",\"products\\/47-1.jpg\"]'),(268,4,NULL,NULL,62,5.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/56.jpg\"]'),(269,8,NULL,NULL,39,1.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/26-1.jpg\",\"products\\/57-1.jpg\"]'),(271,1,NULL,NULL,54,3.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/19-3.jpg\",\"products\\/32-2.jpg\",\"products\\/43-2.jpg\"]'),(272,1,NULL,NULL,27,2.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/9-2.jpg\",\"products\\/20-2.jpg\",\"products\\/23-2.jpg\"]'),(273,3,NULL,NULL,5,1.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/46.jpg\"]'),(275,5,NULL,NULL,23,4.00,'Good app, good backup service and support. Good documentation.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/20-1.jpg\",\"products\\/20.jpg\",\"products\\/39-2.jpg\",\"products\\/56.jpg\"]'),(276,4,NULL,NULL,55,2.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/22-3.jpg\",\"products\\/45-1.jpg\"]'),(277,6,NULL,NULL,46,2.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/4-1.jpg\",\"products\\/4-3.jpg\",\"products\\/5.jpg\",\"products\\/12-3.jpg\"]'),(278,3,NULL,NULL,19,2.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/4-2.jpg\",\"products\\/28-1.jpg\",\"products\\/41-2.jpg\",\"products\\/65-2.jpg\"]'),(280,6,NULL,NULL,32,1.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/1.jpg\",\"products\\/9-1.jpg\",\"products\\/51.jpg\"]'),(281,3,NULL,NULL,39,5.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/23-3.jpg\",\"products\\/33.jpg\",\"products\\/41.jpg\"]'),(283,8,NULL,NULL,28,4.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/6.jpg\",\"products\\/23.jpg\",\"products\\/60-2.jpg\"]'),(284,3,NULL,NULL,60,4.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/18-2.jpg\"]'),(285,5,NULL,NULL,21,1.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/5-3.jpg\",\"products\\/17.jpg\"]'),(286,5,NULL,NULL,15,4.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/11-3.jpg\",\"products\\/62.jpg\"]'),(287,4,NULL,NULL,44,1.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/20.jpg\",\"products\\/41-2.jpg\",\"products\\/42.jpg\",\"products\\/46-1.jpg\"]'),(288,4,NULL,NULL,2,1.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/19-2.jpg\",\"products\\/22-2.jpg\"]'),(295,7,NULL,NULL,42,3.00,'Best ecommerce CMS online store!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/65.jpg\"]'),(296,7,NULL,NULL,61,3.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/8-2.jpg\",\"products\\/28.jpg\",\"products\\/64-1.jpg\"]'),(298,5,NULL,NULL,27,2.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/5-1.jpg\",\"products\\/10.jpg\"]'),(301,8,NULL,NULL,8,2.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/22.jpg\",\"products\\/38.jpg\"]'),(302,9,NULL,NULL,34,2.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/52-2.jpg\",\"products\\/54.jpg\"]'),(303,6,NULL,NULL,13,2.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/59-1.jpg\"]'),(305,2,NULL,NULL,38,5.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/31-1.jpg\",\"products\\/37.jpg\",\"products\\/43-2.jpg\",\"products\\/56-1.jpg\"]'),(308,6,NULL,NULL,16,4.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/37.jpg\",\"products\\/38.jpg\",\"products\\/49.jpg\"]'),(309,4,NULL,NULL,17,2.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/3.jpg\",\"products\\/55.jpg\",\"products\\/59-3.jpg\",\"products\\/60-1.jpg\"]'),(316,2,NULL,NULL,46,1.00,'Best ecommerce CMS online store!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/5-1.jpg\",\"products\\/8-1.jpg\"]'),(317,4,NULL,NULL,43,1.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/10-1.jpg\",\"products\\/21-2.jpg\",\"products\\/42.jpg\"]'),(318,1,NULL,NULL,19,2.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/49-2.jpg\"]'),(319,1,NULL,NULL,24,5.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/10-2.jpg\",\"products\\/19-1.jpg\"]'),(322,8,NULL,NULL,3,3.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/46-1.jpg\"]'),(325,5,NULL,NULL,51,2.00,'Best ecommerce CMS online store!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/23.jpg\"]'),(326,8,NULL,NULL,52,2.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/28-1.jpg\",\"products\\/34.jpg\"]'),(327,2,NULL,NULL,4,2.00,'Clean & perfect source code','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/8-1.jpg\",\"products\\/23-2.jpg\"]'),(328,7,NULL,NULL,35,3.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/56-2.jpg\"]'),(330,2,NULL,NULL,14,4.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/23-1.jpg\",\"products\\/24-1.jpg\",\"products\\/57-1.jpg\"]'),(333,5,NULL,NULL,30,5.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/34-1.jpg\",\"products\\/37-2.jpg\",\"products\\/65.jpg\"]'),(336,7,NULL,NULL,23,4.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/9.jpg\"]'),(337,9,NULL,NULL,33,3.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/5-1.jpg\",\"products\\/26.jpg\",\"products\\/41-2.jpg\",\"products\\/54.jpg\"]'),(338,8,NULL,NULL,58,3.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/6.jpg\",\"products\\/36-2.jpg\",\"products\\/38.jpg\",\"products\\/58.jpg\"]'),(339,5,NULL,NULL,43,5.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/44-2.jpg\",\"products\\/45-1.jpg\"]'),(340,4,NULL,NULL,27,4.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/23-2.jpg\",\"products\\/52-1.jpg\",\"products\\/59-1.jpg\"]'),(341,5,NULL,NULL,8,3.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/22-1.jpg\",\"products\\/28.jpg\",\"products\\/38-1.jpg\"]'),(342,3,NULL,NULL,10,5.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/5-3.jpg\",\"products\\/37-2.jpg\"]'),(344,2,NULL,NULL,21,5.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/11.jpg\",\"products\\/20.jpg\",\"products\\/44-2.jpg\",\"products\\/45.jpg\"]'),(348,6,NULL,NULL,65,2.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/19-3.jpg\"]'),(349,7,NULL,NULL,28,3.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/29-2.jpg\",\"products\\/47.jpg\",\"products\\/56.jpg\",\"products\\/64-1.jpg\"]'),(352,1,NULL,NULL,9,5.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/60-2.jpg\"]'),(353,4,NULL,NULL,36,4.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/5.jpg\",\"products\\/11-2.jpg\",\"products\\/15.jpg\",\"products\\/28.jpg\"]'),(355,2,NULL,NULL,23,2.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/14.jpg\",\"products\\/23-3.jpg\",\"products\\/55.jpg\"]'),(356,7,NULL,NULL,17,4.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/17.jpg\",\"products\\/40.jpg\"]'),(357,2,NULL,NULL,10,5.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/28-1.jpg\",\"products\\/43-1.jpg\",\"products\\/48-1.jpg\"]'),(358,1,NULL,NULL,33,1.00,'Clean & perfect source code','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/42.jpg\"]'),(361,2,NULL,NULL,49,3.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/44.jpg\"]'),(364,2,NULL,NULL,59,3.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/37-1.jpg\",\"products\\/48-2.jpg\"]'),(369,5,NULL,NULL,13,3.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/6.jpg\",\"products\\/10-2.jpg\",\"products\\/20-1.jpg\"]'),(370,2,NULL,NULL,42,5.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/26.jpg\"]'),(371,1,NULL,NULL,65,1.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/35-1.jpg\",\"products\\/48-2.jpg\",\"products\\/53-1.jpg\",\"products\\/65-2.jpg\"]'),(373,4,NULL,NULL,46,2.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/21-1.jpg\"]'),(375,1,NULL,NULL,59,5.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/2-3.jpg\",\"products\\/19-1.jpg\",\"products\\/27-1.jpg\",\"products\\/45-1.jpg\"]'),(376,5,NULL,NULL,44,2.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/18-1.jpg\",\"products\\/23-3.jpg\",\"products\\/24-2.jpg\",\"products\\/62.jpg\"]'),(378,3,NULL,NULL,22,5.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/21.jpg\",\"products\\/22-1.jpg\",\"products\\/31.jpg\",\"products\\/56-1.jpg\"]'),(380,2,NULL,NULL,57,2.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/19-2.jpg\",\"products\\/22-3.jpg\",\"products\\/25-2.jpg\",\"products\\/29-1.jpg\"]'),(384,1,NULL,NULL,16,4.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/26.jpg\",\"products\\/55.jpg\",\"products\\/56-2.jpg\",\"products\\/62.jpg\"]'),(386,7,NULL,NULL,39,2.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/38-1.jpg\",\"products\\/43.jpg\",\"products\\/52-2.jpg\"]'),(387,3,NULL,NULL,9,3.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/13.jpg\"]'),(388,3,NULL,NULL,57,4.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/18.jpg\",\"products\\/61-1.jpg\"]'),(389,9,NULL,NULL,17,5.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/2-1.jpg\",\"products\\/11-1.jpg\"]'),(391,6,NULL,NULL,3,2.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/12.jpg\",\"products\\/55-2.jpg\"]'),(392,4,NULL,NULL,15,3.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/20-2.jpg\",\"products\\/23-3.jpg\",\"products\\/41-2.jpg\",\"products\\/47-1.jpg\"]'),(393,9,NULL,NULL,20,2.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/8-1.jpg\",\"products\\/53-1.jpg\"]'),(396,1,NULL,NULL,58,2.00,'Clean & perfect source code','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/44-2.jpg\"]'),(397,3,NULL,NULL,51,4.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/31.jpg\"]'),(398,2,NULL,NULL,6,3.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/24-2.jpg\",\"products\\/30-2.jpg\",\"products\\/53-1.jpg\",\"products\\/63.jpg\"]'),(399,6,NULL,NULL,49,1.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/20-2.jpg\",\"products\\/58-2.jpg\"]'),(400,6,NULL,NULL,34,5.00,'Clean & perfect source code','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/36.jpg\",\"products\\/43-1.jpg\",\"products\\/64.jpg\"]'),(403,7,NULL,NULL,24,1.00,'Good app, good backup service and support. Good documentation.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/44.jpg\"]'),(406,9,NULL,NULL,15,5.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/5-1.jpg\",\"products\\/5-2.jpg\"]'),(408,6,NULL,NULL,23,3.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/22-3.jpg\",\"products\\/41.jpg\"]'),(409,3,NULL,NULL,17,3.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/21.jpg\",\"products\\/44-2.jpg\"]'),(417,9,NULL,NULL,32,5.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/10.jpg\",\"products\\/44-2.jpg\",\"products\\/52-1.jpg\"]'),(420,2,NULL,NULL,36,5.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/28-1.jpg\",\"products\\/29-1.jpg\"]'),(422,8,NULL,NULL,2,5.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/19-3.jpg\",\"products\\/25.jpg\",\"products\\/54-1.jpg\"]'),(425,2,NULL,NULL,58,4.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/19-1.jpg\",\"products\\/36-1.jpg\"]'),(427,1,NULL,NULL,1,3.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/38-3.jpg\",\"products\\/43.jpg\"]'),(432,8,NULL,NULL,44,1.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/9-2.jpg\",\"products\\/32-2.jpg\",\"products\\/61.jpg\"]'),(433,3,NULL,NULL,47,5.00,'Clean & perfect source code','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/50-1.jpg\",\"products\\/64-1.jpg\"]'),(436,2,NULL,NULL,22,5.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/2-1.jpg\",\"products\\/11.jpg\",\"products\\/20-1.jpg\",\"products\\/27-1.jpg\"]'),(438,8,NULL,NULL,33,4.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/15-1.jpg\"]'),(440,1,NULL,NULL,61,5.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/49-2.jpg\",\"products\\/60-1.jpg\"]'),(442,6,NULL,NULL,28,5.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/12-2.jpg\",\"products\\/42-2.jpg\",\"products\\/49.jpg\"]'),(449,1,NULL,NULL,43,2.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/36-1.jpg\",\"products\\/53-1.jpg\"]'),(450,6,NULL,NULL,21,2.00,'Good app, good backup service and support. Good documentation.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/17.jpg\",\"products\\/21.jpg\",\"products\\/27.jpg\",\"products\\/62-1.jpg\"]'),(456,6,NULL,NULL,60,4.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/18-1.jpg\",\"products\\/32.jpg\",\"products\\/53.jpg\"]'),(457,2,NULL,NULL,15,3.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/18-3.jpg\",\"products\\/23-1.jpg\",\"products\\/43.jpg\",\"products\\/49-2.jpg\"]'),(458,9,NULL,NULL,48,3.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/19-2.jpg\",\"products\\/22.jpg\",\"products\\/36-1.jpg\"]'),(459,3,NULL,NULL,62,2.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/18-2.jpg\",\"products\\/35.jpg\"]'),(460,3,NULL,NULL,65,4.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/37.jpg\"]'),(462,6,NULL,NULL,31,1.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/5.jpg\",\"products\\/30-1.jpg\"]'),(463,5,NULL,NULL,4,2.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/38-1.jpg\",\"products\\/58-2.jpg\",\"products\\/61-1.jpg\"]'),(464,7,NULL,NULL,62,1.00,'Best ecommerce CMS online store!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/1.jpg\",\"products\\/15.jpg\",\"products\\/28.jpg\"]'),(466,6,NULL,NULL,41,3.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/14.jpg\",\"products\\/61-1.jpg\"]'),(467,4,NULL,NULL,52,4.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/4-2.jpg\",\"products\\/23-2.jpg\",\"products\\/41-2.jpg\",\"products\\/44-2.jpg\"]'),(469,2,NULL,NULL,16,2.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/8.jpg\",\"products\\/22.jpg\",\"products\\/53.jpg\"]'),(477,3,NULL,NULL,26,5.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/9-1.jpg\",\"products\\/21-1.jpg\",\"products\\/43.jpg\"]'),(478,5,NULL,NULL,60,3.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/33-2.jpg\",\"products\\/58.jpg\"]'),(482,7,NULL,NULL,19,1.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/16.jpg\",\"products\\/20-3.jpg\"]'),(483,7,NULL,NULL,50,2.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/23.jpg\",\"products\\/24-1.jpg\"]'),(484,9,NULL,NULL,59,1.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/46-1.jpg\",\"products\\/54.jpg\"]'),(485,9,NULL,NULL,28,1.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/34-1.jpg\",\"products\\/59.jpg\"]'),(486,1,NULL,NULL,41,4.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/23-1.jpg\",\"products\\/25-2.jpg\",\"products\\/30.jpg\",\"products\\/58-1.jpg\"]'),(487,7,NULL,NULL,9,2.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/38-1.jpg\",\"products\\/54-1.jpg\"]'),(488,7,NULL,NULL,58,2.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/44-1.jpg\",\"products\\/47-1.jpg\",\"products\\/56.jpg\"]'),(492,6,NULL,NULL,58,5.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/22.jpg\",\"products\\/24-1.jpg\",\"products\\/30-1.jpg\"]'),(495,9,NULL,NULL,58,1.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/28-2.jpg\",\"products\\/55-1.jpg\"]'),(497,6,NULL,NULL,15,4.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/10-1.jpg\",\"products\\/41-1.jpg\",\"products\\/47-1.jpg\"]'),(504,6,NULL,NULL,35,3.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/58-1.jpg\",\"products\\/62-1.jpg\",\"products\\/65-1.jpg\"]'),(505,2,NULL,NULL,31,3.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/2-3.jpg\",\"products\\/25-1.jpg\",\"products\\/42-1.jpg\",\"products\\/61-1.jpg\"]'),(507,5,NULL,NULL,12,3.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/7.jpg\",\"products\\/8-2.jpg\",\"products\\/28-1.jpg\",\"products\\/50-1.jpg\"]'),(508,3,NULL,NULL,35,5.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/18-2.jpg\",\"products\\/26.jpg\",\"products\\/59-3.jpg\"]'),(511,9,NULL,NULL,18,5.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/28-2.jpg\"]'),(512,4,NULL,NULL,61,4.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/19-3.jpg\",\"products\\/62-1.jpg\"]'),(513,6,NULL,NULL,2,2.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/23-1.jpg\",\"products\\/23-3.jpg\",\"products\\/60.jpg\"]'),(515,4,NULL,NULL,25,5.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/10-1.jpg\",\"products\\/33-2.jpg\",\"products\\/38-3.jpg\",\"products\\/58-2.jpg\"]'),(516,7,NULL,NULL,25,2.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/11-3.jpg\",\"products\\/13-1.jpg\",\"products\\/18-3.jpg\",\"products\\/59-1.jpg\"]'),(519,7,NULL,NULL,30,1.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/2-2.jpg\",\"products\\/64.jpg\"]'),(520,9,NULL,NULL,25,5.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/20.jpg\",\"products\\/27.jpg\",\"products\\/39-1.jpg\"]'),(521,2,NULL,NULL,3,4.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/1.jpg\",\"products\\/19-1.jpg\",\"products\\/32-1.jpg\",\"products\\/46-1.jpg\"]'),(523,8,NULL,NULL,16,2.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/6.jpg\",\"products\\/19-1.jpg\",\"products\\/19-2.jpg\",\"products\\/20-3.jpg\"]'),(525,9,NULL,NULL,27,1.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/28.jpg\"]'),(527,5,NULL,NULL,22,4.00,'Good app, good backup service and support. Good documentation.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/8-3.jpg\",\"products\\/11-1.jpg\",\"products\\/57-1.jpg\",\"products\\/62-1.jpg\"]'),(528,1,NULL,NULL,26,2.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/12-1.jpg\",\"products\\/22-1.jpg\",\"products\\/50-1.jpg\",\"products\\/58-1.jpg\"]'),(529,5,NULL,NULL,18,2.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/4.jpg\",\"products\\/6.jpg\",\"products\\/59-3.jpg\",\"products\\/65-2.jpg\"]'),(530,3,NULL,NULL,25,4.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/53.jpg\",\"products\\/62-1.jpg\"]'),(531,7,NULL,NULL,16,5.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/31.jpg\"]'),(539,6,NULL,NULL,36,1.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/57-1.jpg\"]'),(541,2,NULL,NULL,39,2.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/43.jpg\"]'),(542,3,NULL,NULL,48,4.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/35.jpg\",\"products\\/37-2.jpg\",\"products\\/39-1.jpg\",\"products\\/50.jpg\"]'),(543,5,NULL,NULL,54,5.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/59-3.jpg\"]'),(544,5,NULL,NULL,25,3.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/15-1.jpg\"]'),(546,1,NULL,NULL,49,1.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/5-1.jpg\",\"products\\/23-1.jpg\",\"products\\/42.jpg\"]'),(547,4,NULL,NULL,65,3.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/22.jpg\"]'),(549,4,NULL,NULL,1,2.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/15.jpg\"]'),(551,1,NULL,NULL,20,3.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/5-1.jpg\",\"products\\/17-3.jpg\",\"products\\/64-1.jpg\"]'),(553,5,NULL,NULL,61,5.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/2-3.jpg\"]'),(554,6,NULL,NULL,29,5.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/27-1.jpg\",\"products\\/38-3.jpg\",\"products\\/45-1.jpg\"]'),(555,1,NULL,NULL,6,2.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/19-1.jpg\",\"products\\/24-2.jpg\",\"products\\/33-2.jpg\"]'),(560,9,NULL,NULL,11,5.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/22-1.jpg\",\"products\\/29-1.jpg\",\"products\\/37.jpg\",\"products\\/43-2.jpg\"]'),(561,4,NULL,NULL,13,5.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/17-2.jpg\"]'),(564,9,NULL,NULL,36,3.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/14.jpg\",\"products\\/44.jpg\"]'),(567,7,NULL,NULL,27,2.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/41-1.jpg\"]'),(571,1,NULL,NULL,35,2.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/7.jpg\"]'),(572,6,NULL,NULL,55,1.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/27-1.jpg\"]'),(574,5,NULL,NULL,64,2.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/25-2.jpg\"]'),(576,8,NULL,NULL,1,2.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/4-2.jpg\",\"products\\/20-2.jpg\",\"products\\/58-1.jpg\"]'),(579,2,NULL,NULL,65,1.00,'Best ecommerce CMS online store!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/17.jpg\",\"products\\/40-1.jpg\"]'),(583,9,NULL,NULL,37,4.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/12-1.jpg\",\"products\\/29-1.jpg\",\"products\\/55-1.jpg\"]'),(584,1,NULL,NULL,62,3.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/30-2.jpg\",\"products\\/36-2.jpg\",\"products\\/54-1.jpg\"]'),(585,9,NULL,NULL,47,5.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/9-2.jpg\",\"products\\/37.jpg\",\"products\\/44-1.jpg\"]'),(586,4,NULL,NULL,54,1.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/21-2.jpg\",\"products\\/32.jpg\",\"products\\/44-1.jpg\"]'),(587,6,NULL,NULL,33,3.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/33.jpg\",\"products\\/35-1.jpg\"]'),(591,3,NULL,NULL,6,3.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/12-1.jpg\"]'),(595,9,NULL,NULL,40,5.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/25-2.jpg\",\"products\\/29-2.jpg\",\"products\\/47.jpg\",\"products\\/55.jpg\"]'),(596,3,NULL,NULL,34,3.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/2-2.jpg\"]'),(598,3,NULL,NULL,50,1.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/25-2.jpg\"]'),(599,2,NULL,NULL,50,3.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/52-2.jpg\"]'),(603,2,NULL,NULL,32,4.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/6.jpg\",\"products\\/23-1.jpg\"]'),(607,7,NULL,NULL,4,5.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/5.jpg\",\"products\\/7.jpg\",\"products\\/56-2.jpg\",\"products\\/59-3.jpg\"]'),(613,8,NULL,NULL,62,5.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/13-1.jpg\",\"products\\/22-3.jpg\",\"products\\/56.jpg\"]'),(614,6,NULL,NULL,48,2.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/25.jpg\"]'),(615,3,NULL,NULL,3,5.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/25-1.jpg\",\"products\\/33-1.jpg\",\"products\\/61-1.jpg\"]'),(619,9,NULL,NULL,64,3.00,'Clean & perfect source code','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/11-3.jpg\",\"products\\/32-1.jpg\",\"products\\/43-2.jpg\"]'),(620,6,NULL,NULL,1,5.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/16.jpg\",\"products\\/22-2.jpg\",\"products\\/50.jpg\",\"products\\/59.jpg\"]'),(621,5,NULL,NULL,53,1.00,'Clean & perfect source code','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/65.jpg\"]'),(622,3,NULL,NULL,54,5.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/9-2.jpg\",\"products\\/18-1.jpg\",\"products\\/32-2.jpg\"]'),(624,5,NULL,NULL,26,4.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/26-1.jpg\",\"products\\/43-2.jpg\"]'),(627,4,NULL,NULL,48,2.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/12-2.jpg\",\"products\\/27-1.jpg\",\"products\\/31-1.jpg\"]'),(628,1,NULL,NULL,14,5.00,'Good app, good backup service and support. Good documentation.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/6.jpg\",\"products\\/11.jpg\",\"products\\/15.jpg\",\"products\\/54.jpg\"]'),(629,3,NULL,NULL,30,3.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/4-3.jpg\",\"products\\/48.jpg\"]'),(631,2,NULL,NULL,25,5.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/39-1.jpg\"]'),(633,8,NULL,NULL,41,1.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/28-2.jpg\",\"products\\/39-1.jpg\"]'),(636,4,NULL,NULL,16,5.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/9.jpg\",\"products\\/10-2.jpg\",\"products\\/25-1.jpg\",\"products\\/45-1.jpg\"]'),(638,5,NULL,NULL,20,2.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/2-2.jpg\",\"products\\/8-2.jpg\",\"products\\/49-2.jpg\",\"products\\/54.jpg\"]'),(639,9,NULL,NULL,50,3.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/23.jpg\",\"products\\/62-1.jpg\"]'),(642,6,NULL,NULL,8,2.00,'Clean & perfect source code','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/1.jpg\",\"products\\/19.jpg\",\"products\\/53-1.jpg\"]'),(650,7,NULL,NULL,13,4.00,'Clean & perfect source code','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/13.jpg\",\"products\\/18.jpg\"]'),(651,1,NULL,NULL,8,2.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/8.jpg\",\"products\\/22-3.jpg\",\"products\\/33-2.jpg\",\"products\\/48-1.jpg\"]'),(653,1,NULL,NULL,57,2.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/2-3.jpg\",\"products\\/39.jpg\",\"products\\/44-2.jpg\"]'),(663,2,NULL,NULL,48,4.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/60-1.jpg\"]'),(669,2,NULL,NULL,20,3.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/12-2.jpg\",\"products\\/13-1.jpg\",\"products\\/42-1.jpg\",\"products\\/61.jpg\"]'),(670,5,NULL,NULL,52,5.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/38-2.jpg\",\"products\\/58-1.jpg\",\"products\\/58.jpg\",\"products\\/65.jpg\"]'),(673,6,NULL,NULL,56,3.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/18-1.jpg\",\"products\\/29-2.jpg\"]'),(683,5,NULL,NULL,59,3.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/28-2.jpg\",\"products\\/29.jpg\",\"products\\/31.jpg\"]'),(685,4,NULL,NULL,4,4.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/25-2.jpg\",\"products\\/45-1.jpg\",\"products\\/51.jpg\",\"products\\/58-2.jpg\"]'),(686,2,NULL,NULL,19,5.00,'Clean & perfect source code','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/11-1.jpg\",\"products\\/43-2.jpg\",\"products\\/55.jpg\"]'),(688,8,NULL,NULL,35,2.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/46-1.jpg\"]'),(689,8,NULL,NULL,19,5.00,'Clean & perfect source code','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/4.jpg\",\"products\\/22.jpg\",\"products\\/51.jpg\",\"products\\/59-3.jpg\"]'),(692,2,NULL,NULL,34,4.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/33.jpg\",\"products\\/50-1.jpg\",\"products\\/54-1.jpg\",\"products\\/65.jpg\"]'),(695,5,NULL,NULL,32,4.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/23.jpg\",\"products\\/38-2.jpg\",\"products\\/49-1.jpg\"]'),(698,7,NULL,NULL,32,4.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/2-3.jpg\",\"products\\/5-3.jpg\",\"products\\/64.jpg\"]'),(701,5,NULL,NULL,37,5.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/2.jpg\",\"products\\/39-2.jpg\"]'),(703,6,NULL,NULL,57,3.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/60-1.jpg\"]'),(711,5,NULL,NULL,33,1.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/5-3.jpg\",\"products\\/12.jpg\",\"products\\/55-2.jpg\"]'),(712,1,NULL,NULL,38,3.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/42-1.jpg\"]'),(715,7,NULL,NULL,53,3.00,'Great system, great support, good job Botble. I\'m looking forward to more great functional plugins.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/13.jpg\"]'),(716,3,NULL,NULL,37,3.00,'Great E-commerce system. And much more : Wonderful Customer Support.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/48-2.jpg\"]'),(728,9,NULL,NULL,10,3.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/33-2.jpg\",\"products\\/44-1.jpg\",\"products\\/64.jpg\"]'),(730,9,NULL,NULL,43,2.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/6.jpg\",\"products\\/52-2.jpg\"]'),(735,1,NULL,NULL,46,5.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/4-1.jpg\",\"products\\/4-3.jpg\",\"products\\/22-1.jpg\"]'),(736,1,NULL,NULL,44,5.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/13-1.jpg\",\"products\\/19-3.jpg\",\"products\\/24-2.jpg\",\"products\\/57-1.jpg\"]'),(741,6,NULL,NULL,30,2.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/16.jpg\",\"products\\/25-2.jpg\",\"products\\/43-2.jpg\",\"products\\/64.jpg\"]'),(746,5,NULL,NULL,24,4.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/18-2.jpg\",\"products\\/33-1.jpg\",\"products\\/59-1.jpg\"]'),(753,7,NULL,NULL,36,2.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/35-1.jpg\"]'),(759,8,NULL,NULL,7,4.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/30.jpg\"]'),(762,3,NULL,NULL,38,5.00,'The script is the best of its class, fast, easy to implement and work with , and the most important thing is the great support team , Recommend with no doubt.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/17-1.jpg\",\"products\\/30-2.jpg\",\"products\\/47.jpg\",\"products\\/54-1.jpg\"]'),(766,1,NULL,NULL,28,4.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/19.jpg\",\"products\\/43.jpg\"]'),(768,1,NULL,NULL,18,5.00,'Those guys now what they are doing, the release such a good product that it\'s a pleasure to work with ! Even when I was stuck on the project, I created a ticket and the next day it was replied by the team. GOOD JOB guys. I love working with them :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/28.jpg\",\"products\\/30-1.jpg\",\"products\\/52-2.jpg\",\"products\\/57-1.jpg\"]'),(770,6,NULL,NULL,6,5.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/19-3.jpg\"]'),(781,7,NULL,NULL,41,5.00,'Best ecommerce CMS online store!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/26.jpg\",\"products\\/28.jpg\"]'),(782,6,NULL,NULL,38,3.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/2-3.jpg\",\"products\\/5.jpg\"]'),(783,2,NULL,NULL,1,5.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/15-1.jpg\",\"products\\/41-2.jpg\"]'),(789,6,NULL,NULL,47,1.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/8.jpg\"]'),(790,1,NULL,NULL,21,4.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/20.jpg\",\"products\\/25-2.jpg\",\"products\\/34.jpg\",\"products\\/42-1.jpg\"]'),(793,5,NULL,NULL,39,3.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/38.jpg\",\"products\\/58.jpg\",\"products\\/59-1.jpg\"]'),(794,2,NULL,NULL,41,5.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/19-2.jpg\"]'),(795,5,NULL,NULL,38,3.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/33-2.jpg\",\"products\\/34-1.jpg\",\"products\\/59-2.jpg\"]'),(796,6,NULL,NULL,53,2.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/8-3.jpg\",\"products\\/31-1.jpg\",\"products\\/44.jpg\"]'),(797,7,NULL,NULL,11,4.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/7.jpg\",\"products\\/17-2.jpg\",\"products\\/34-1.jpg\"]'),(801,8,NULL,NULL,12,5.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/19-3.jpg\",\"products\\/29-2.jpg\"]'),(804,9,NULL,NULL,38,2.00,'It\'s not my first experience here on Codecanyon and I can honestly tell you all that Botble puts a LOT of effort into the support. They answer so fast, they helped me tons of times. REALLY by far THE BEST EXPERIENCE on Codecanyon. Those guys at Botble are so good that they deserve 5 stars. I recommend them, I trust them and I can\'t wait to see what they will sell in a near future. Thank you Botble :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/19.jpg\",\"products\\/34.jpg\",\"products\\/37-1.jpg\",\"products\\/53-1.jpg\"]'),(810,4,NULL,NULL,38,1.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/49-1.jpg\",\"products\\/57.jpg\"]'),(814,8,NULL,NULL,20,1.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/38-2.jpg\"]'),(817,5,NULL,NULL,55,2.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/9-2.jpg\",\"products\\/30.jpg\",\"products\\/36.jpg\",\"products\\/60-2.jpg\"]'),(822,8,NULL,NULL,13,3.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/22-2.jpg\",\"products\\/58-2.jpg\"]'),(824,8,NULL,NULL,61,5.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/23-1.jpg\",\"products\\/43-2.jpg\",\"products\\/49.jpg\"]'),(828,5,NULL,NULL,48,5.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/56-1.jpg\"]'),(830,8,NULL,NULL,43,4.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/8-3.jpg\",\"products\\/12-1.jpg\",\"products\\/32-1.jpg\",\"products\\/34.jpg\"]'),(834,2,NULL,NULL,18,3.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/4-2.jpg\",\"products\\/11.jpg\",\"products\\/40-1.jpg\",\"products\\/44-2.jpg\"]'),(835,8,NULL,NULL,29,1.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/57-1.jpg\"]'),(837,2,NULL,NULL,64,4.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/29-2.jpg\"]'),(839,8,NULL,NULL,51,4.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/61.jpg\"]'),(843,3,NULL,NULL,23,2.00,'Very enthusiastic support! Excellent code is written. It\'s a true pleasure working with.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/1.jpg\",\"products\\/52-1.jpg\"]'),(848,1,NULL,NULL,29,4.00,'Good app, good backup service and support. Good documentation.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/4-2.jpg\",\"products\\/18.jpg\",\"products\\/46-1.jpg\"]'),(854,2,NULL,NULL,9,1.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/42-1.jpg\"]'),(864,4,NULL,NULL,23,5.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/4.jpg\",\"products\\/27.jpg\"]'),(865,8,NULL,NULL,15,1.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/13.jpg\",\"products\\/35.jpg\"]'),(874,5,NULL,NULL,29,1.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/38-2.jpg\",\"products\\/42-2.jpg\"]'),(883,1,NULL,NULL,12,1.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/26.jpg\",\"products\\/62-1.jpg\"]'),(888,1,NULL,NULL,51,5.00,'As a developer I reviewed this script. This is really awesome ecommerce script. I have convinced when I noticed that it\'s built on fully WordPress concept.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/29-1.jpg\",\"products\\/36.jpg\",\"products\\/44.jpg\",\"products\\/61-1.jpg\"]'),(892,4,NULL,NULL,18,3.00,'These guys are amazing! Responses immediately, amazing support and help... I immediately feel at ease after Purchasing..','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/12-3.jpg\",\"products\\/18-3.jpg\"]'),(900,8,NULL,NULL,65,1.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/48.jpg\",\"products\\/51.jpg\",\"products\\/52.jpg\",\"products\\/55.jpg\"]'),(902,5,NULL,NULL,58,3.00,'Ok good product. I have some issues in customizations. But its not correct to blame the developer. The product is good. Good luck for your business.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/9.jpg\",\"products\\/37-2.jpg\",\"products\\/52-1.jpg\"]'),(905,7,NULL,NULL,60,1.00,'The best store template! Excellent coding! Very good support! Thank you so much for all the help, I really appreciated.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/32.jpg\",\"products\\/33-2.jpg\",\"products\\/55.jpg\"]'),(914,8,NULL,NULL,56,3.00,'Customer Support are grade (A*), however the code is a way too over engineered for it\'s purpose.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/21-2.jpg\",\"products\\/37-2.jpg\"]'),(919,5,NULL,NULL,31,3.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/53.jpg\",\"products\\/60-1.jpg\"]'),(922,6,NULL,NULL,51,3.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/15.jpg\",\"products\\/25-1.jpg\",\"products\\/33-2.jpg\",\"products\\/46-1.jpg\"]'),(926,8,NULL,NULL,6,4.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/20-1.jpg\",\"products\\/21.jpg\",\"products\\/25.jpg\",\"products\\/47.jpg\"]'),(927,2,NULL,NULL,33,3.00,'For me the best eCommerce script on Envato at this moment: modern, clean code, a lot of great features. The customer support is great too: I always get an answer within hours!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/35-1.jpg\",\"products\\/41-2.jpg\",\"products\\/44-1.jpg\",\"products\\/56.jpg\"]'),(931,6,NULL,NULL,62,4.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/14.jpg\",\"products\\/60-1.jpg\",\"products\\/64-1.jpg\"]'),(932,9,NULL,NULL,65,2.00,'Good app, good backup service and support. Good documentation.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/4-3.jpg\",\"products\\/36-1.jpg\",\"products\\/41.jpg\",\"products\\/59-2.jpg\"]'),(934,8,NULL,NULL,47,1.00,'Second or third time that I buy a Botble product, happy with the products and support. You guys do a good job :)','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/2-1.jpg\",\"products\\/2-2.jpg\",\"products\\/9.jpg\",\"products\\/58-1.jpg\"]'),(942,7,NULL,NULL,31,4.00,'This web app is really good in design, code quality & features. Besides, the customer support provided by the Botble team was really fast & helpful. You guys are awesome!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/23-3.jpg\",\"products\\/49.jpg\",\"products\\/55-2.jpg\"]'),(944,5,NULL,NULL,46,4.00,'Good app, good backup service and support. Good documentation.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/38.jpg\"]'),(951,7,NULL,NULL,18,1.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/10.jpg\",\"products\\/29-2.jpg\"]'),(957,9,NULL,NULL,45,5.00,'Solution is too robust for our purpose so we didn\'t use it at the end. But I appreciate customer support during initial configuration.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/10.jpg\"]'),(961,7,NULL,NULL,51,3.00,'Perfect +++++++++ i love it really also i get to fast ticket answers... Thanks Lot BOTBLE Teams','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/4.jpg\"]'),(964,2,NULL,NULL,29,3.00,'Amazing code, amazing support. Overall, im really confident in Botble and im happy I made the right choice! Thank you so much guys for coding this masterpiece','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/20-2.jpg\",\"products\\/59-3.jpg\"]'),(967,4,NULL,NULL,8,5.00,'Cool template. Excellent code quality. The support responds very quickly, which is very rare on themeforest and codecanyon.net, I buy a lot of templates, and everyone will have a response from technical support for two or three days. Thanks to tech support. I recommend to buy.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/2.jpg\",\"products\\/42-2.jpg\"]'),(973,7,NULL,NULL,44,5.00,'Clean & perfect source code','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/58-2.jpg\"]'),(974,1,NULL,NULL,5,5.00,'The best ecommerce CMS! Excellent coding! best support service! Thank you so much..... I really like your hard work.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/24-2.jpg\",\"products\\/32-1.jpg\",\"products\\/34.jpg\",\"products\\/49-2.jpg\"]'),(975,4,NULL,NULL,10,3.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/52-2.jpg\"]'),(981,9,NULL,NULL,19,2.00,'We have received brilliant service support and will be expanding the features with the developer. Nice product!','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/6.jpg\",\"products\\/17-2.jpg\"]'),(982,3,NULL,NULL,21,4.00,'The code is good, in general, if you like it, can you give it 5 stars?','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/14.jpg\",\"products\\/37.jpg\",\"products\\/44-2.jpg\",\"products\\/62.jpg\"]'),(983,3,NULL,NULL,41,1.00,'This script is well coded and is super fast. The support is pretty quick. Very patient and helpful team. I strongly recommend it and they deserve more than 5 stars.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/9.jpg\"]'),(988,7,NULL,NULL,22,2.00,'I Love this Script. I also found how to add other fees. Now I just wait the BIG update for the Marketplace with the Bulk Import. Just do not forget to make it to be Multi-language for us the Botble Fans.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/11.jpg\",\"products\\/41.jpg\",\"products\\/58-1.jpg\"]'),(997,8,NULL,NULL,64,2.00,'Good app, good backup service and support. Good documentation.','published','2024-06-18 23:00:45','2024-06-18 23:00:45','[\"products\\/4-1.jpg\",\"products\\/29.jpg\",\"products\\/34-1.jpg\",\"products\\/39-1.jpg\"]'); /*!40000 ALTER TABLE `ec_reviews` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_shipment_histories` -- DROP TABLE IF EXISTS `ec_shipment_histories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_shipment_histories` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `action` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` bigint unsigned DEFAULT NULL, `shipment_id` bigint unsigned NOT NULL, `order_id` bigint unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `user_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User', PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_shipment_histories` -- LOCK TABLES `ec_shipment_histories` WRITE; /*!40000 ALTER TABLE `ec_shipment_histories` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_shipment_histories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_shipments` -- DROP TABLE IF EXISTS `ec_shipments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_shipments` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `order_id` bigint unsigned NOT NULL, `user_id` bigint unsigned DEFAULT NULL, `weight` double(8,2) DEFAULT '0.00', `shipment_id` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `rate_id` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `note` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `cod_amount` decimal(15,2) DEFAULT '0.00', `cod_status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `cross_checking_status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `price` decimal(15,2) DEFAULT '0.00', `store_id` bigint unsigned DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `tracking_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `shipping_company_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `tracking_link` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `estimate_date_shipped` datetime DEFAULT NULL, `date_shipped` datetime DEFAULT NULL, `label_url` text COLLATE utf8mb4_unicode_ci, `metadata` mediumtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_shipments` -- LOCK TABLES `ec_shipments` WRITE; /*!40000 ALTER TABLE `ec_shipments` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_shipments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_shipping` -- DROP TABLE IF EXISTS `ec_shipping`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_shipping` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country` varchar(120) COLLATE utf8mb4_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=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_shipping` -- LOCK TABLES `ec_shipping` WRITE; /*!40000 ALTER TABLE `ec_shipping` DISABLE KEYS */; INSERT INTO `ec_shipping` VALUES (1,'All',NULL,'2024-06-18 23:00:42','2024-06-18 23:00:42'); /*!40000 ALTER TABLE `ec_shipping` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_shipping_rule_items` -- DROP TABLE IF EXISTS `ec_shipping_rule_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_shipping_rule_items` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `shipping_rule_id` bigint unsigned NOT NULL, `country` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `adjustment_price` decimal(15,2) DEFAULT '0.00', `is_enabled` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL 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 `ec_shipping_rule_items` -- LOCK TABLES `ec_shipping_rule_items` WRITE; /*!40000 ALTER TABLE `ec_shipping_rule_items` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_shipping_rule_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_shipping_rules` -- DROP TABLE IF EXISTS `ec_shipping_rules`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_shipping_rules` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `shipping_id` bigint unsigned NOT NULL, `type` varchar(24) COLLATE utf8mb4_unicode_ci DEFAULT 'based_on_price', `from` decimal(15,2) DEFAULT '0.00', `to` decimal(15,2) DEFAULT '0.00', `price` decimal(15,2) DEFAULT '0.00', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`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 `ec_shipping_rules` -- LOCK TABLES `ec_shipping_rules` WRITE; /*!40000 ALTER TABLE `ec_shipping_rules` DISABLE KEYS */; INSERT INTO `ec_shipping_rules` VALUES (1,'Free delivery',1,'based_on_price',0.00,NULL,0.00,'2024-06-18 23:00:42','2024-06-18 23:00:42'); /*!40000 ALTER TABLE `ec_shipping_rules` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_store_locators` -- DROP TABLE IF EXISTS `ec_store_locators`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_store_locators` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `address` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `country` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_primary` tinyint(1) DEFAULT '0', `is_shipping_location` tinyint(1) DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `zip_code` varchar(20) COLLATE utf8mb4_unicode_ci 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 `ec_store_locators` -- LOCK TABLES `ec_store_locators` WRITE; /*!40000 ALTER TABLE `ec_store_locators` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_store_locators` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_tax_products` -- DROP TABLE IF EXISTS `ec_tax_products`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_tax_products` ( `tax_id` bigint unsigned NOT NULL, `product_id` bigint unsigned NOT NULL, PRIMARY KEY (`product_id`,`tax_id`), KEY `ec_tax_products_tax_id_index` (`tax_id`), KEY `ec_tax_products_product_id_index` (`product_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_tax_products` -- LOCK TABLES `ec_tax_products` WRITE; /*!40000 ALTER TABLE `ec_tax_products` DISABLE KEYS */; INSERT INTO `ec_tax_products` VALUES (1,1),(1,2),(1,3),(1,4),(1,5),(1,6),(1,7),(1,8),(1,9),(1,10),(1,11),(1,12),(1,13),(1,14),(1,15),(1,16),(1,17),(1,18),(1,19),(1,20),(1,21),(1,22),(1,23),(1,24),(1,25),(1,26),(1,27),(1,28),(1,29),(1,30),(1,31),(1,32),(1,33),(1,34),(1,35),(1,36),(1,37),(1,38),(1,39),(1,40),(1,41),(1,42),(1,43),(1,44),(1,45),(1,46),(1,47),(1,48),(1,49),(1,50),(1,51),(1,52),(1,53),(1,54),(1,55),(1,56),(1,57),(1,58),(1,59),(1,60),(1,61),(1,62),(1,63),(1,64),(1,65); /*!40000 ALTER TABLE `ec_tax_products` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_tax_rules` -- DROP TABLE IF EXISTS `ec_tax_rules`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_tax_rules` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `tax_id` bigint unsigned NOT NULL, `country` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `state` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `city` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `zip_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `priority` int DEFAULT NULL, `is_enabled` tinyint(1) NOT NULL DEFAULT '1', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL 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 `ec_tax_rules` -- LOCK TABLES `ec_tax_rules` WRITE; /*!40000 ALTER TABLE `ec_tax_rules` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_tax_rules` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_taxes` -- DROP TABLE IF EXISTS `ec_taxes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_taxes` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `percentage` double(8,6) DEFAULT NULL, `priority` int DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL 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 `ec_taxes` -- LOCK TABLES `ec_taxes` WRITE; /*!40000 ALTER TABLE `ec_taxes` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_taxes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `ec_wish_lists` -- DROP TABLE IF EXISTS `ec_wish_lists`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `ec_wish_lists` ( `customer_id` bigint unsigned NOT NULL, `product_id` bigint unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`customer_id`,`product_id`), KEY `wishlist_relation_index` (`product_id`,`customer_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `ec_wish_lists` -- LOCK TABLES `ec_wish_lists` WRITE; /*!40000 ALTER TABLE `ec_wish_lists` DISABLE KEYS */; /*!40000 ALTER TABLE `ec_wish_lists` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `failed_jobs` -- DROP TABLE IF EXISTS `failed_jobs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `failed_jobs` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `uuid` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `connection` text COLLATE utf8mb4_unicode_ci NOT NULL, `queue` text COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `failed_jobs` -- LOCK TABLES `failed_jobs` WRITE; /*!40000 ALTER TABLE `failed_jobs` DISABLE KEYS */; /*!40000 ALTER TABLE `failed_jobs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `faq_categories` -- DROP TABLE IF EXISTS `faq_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `faq_categories` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `order` tinyint NOT NULL DEFAULT '0', `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `faq_categories` -- LOCK TABLES `faq_categories` WRITE; /*!40000 ALTER TABLE `faq_categories` DISABLE KEYS */; INSERT INTO `faq_categories` VALUES (1,'Sales & Pricing',0,'published','2024-06-18 23:00:05','2024-06-18 23:00:05',NULL),(2,'Project Management',1,'published','2024-06-18 23:00:05','2024-06-18 23:00:05',NULL),(3,'Client Satisfaction',2,'published','2024-06-18 23:00:05','2024-06-18 23:00:05',NULL),(4,'Our Team',3,'published','2024-06-18 23:00:05','2024-06-18 23:00:05',NULL),(5,'Security',4,'published','2024-06-18 23:00:05','2024-06-18 23:00:05',NULL),(6,'Client Support',5,'published','2024-06-18 23:00:05','2024-06-18 23:00:05',NULL); /*!40000 ALTER TABLE `faq_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `faq_categories_translations` -- DROP TABLE IF EXISTS `faq_categories_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `faq_categories_translations` ( `lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `faq_categories_id` bigint unsigned NOT NULL, `name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`faq_categories_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `faq_categories_translations` -- LOCK TABLES `faq_categories_translations` WRITE; /*!40000 ALTER TABLE `faq_categories_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `faq_categories_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `faqs` -- DROP TABLE IF EXISTS `faqs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `faqs` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `question` text COLLATE utf8mb4_unicode_ci NOT NULL, `answer` text COLLATE utf8mb4_unicode_ci NOT NULL, `category_id` bigint unsigned NOT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `faqs` -- LOCK TABLES `faqs` WRITE; /*!40000 ALTER TABLE `faqs` DISABLE KEYS */; INSERT INTO `faqs` VALUES (1,'Can I see a demo before purchasing your business services?','Absolutely! We understand that seeing our services in action can be helpful. In most cases, we can provide a free demo or consultation to showcase our capabilities and ensure they align with your specific needs.',6,'published','2024-06-18 23:00:05','2024-06-18 23:00:05'),(2,'What types of payment plans do you offer for your business services?','We offer flexible payment plans to cater to different business budgets. We may offer upfront payments, monthly installments, or project-based pricing depending on the service. Feel free to discuss your preferred payment option with our sales team to find the best solution for you.',2,'published','2024-06-18 23:00:05','2024-06-18 23:00:05'),(3,'What is the turnaround time for your business services?','Turnaround times can vary depending on the complexity of the service and your specific needs. We will provide a clear timeline during the initial consultation or proposal stage. We also prioritize open communication and keep you updated throughout the process.',6,'published','2024-06-18 23:00:05','2024-06-18 23:00:05'),(4,'Do you offer any guarantees or warranties on your business services?','We stand behind the quality of our work and offer satisfaction guarantees on many of our services. The specific terms will be outlined in our agreement. If you have any concerns, don\'t hesitate to ask for clarification.',2,'published','2024-06-18 23:00:05','2024-06-18 23:00:05'),(5,'What qualifications or certifications do your team members have?','Our team is comprised of experienced and qualified professionals. We invest in ongoing training to ensure we stay up-to-date on the latest industry trends and best practices. Feel free to inquire about specific credentials or expertise relevant to your needs.',3,'published','2024-06-18 23:00:05','2024-06-18 23:00:05'),(6,'How do you ensure the security of my data when using your business services?','Data security is a top priority for us. We employ robust security measures to protect your information, including secure servers, encryption protocols, and access controls. We can provide more details about our security practices upon request.',1,'published','2024-06-18 23:00:05','2024-06-18 23:00:05'),(7,'Can I customize your business services to fit my specific needs?','Yes, customization is often possible. We understand that every business is unique. We take the time to understand your requirements and tailor our services to deliver the best possible outcome for your specific situation.',4,'published','2024-06-18 23:00:05','2024-06-18 23:00:05'),(8,'How can I get a quote for your business services?','Getting a quote is easy! Simply contact us through our website, email, or phone. We will discuss your needs and provide a personalized quote based on the chosen service and its scope.',6,'published','2024-06-18 23:00:05','2024-06-18 23:00:05'),(9,'What is the difference between your various business service packages?','We offer a variety of service packages to cater to different business needs and budgets. Each package will typically include a specific set of features or deliverables. We would be happy to explain the differences and recommend the best option for you during a consultation.',2,'published','2024-06-18 23:00:05','2024-06-18 23:00:05'),(10,'Do you offer any ongoing support after I purchase your business services?','Yes, we offer ongoing support to ensure you get the most out of our services. This may include training materials, access to a help desk, or even additional consultations depending on the service.',2,'published','2024-06-18 23:00:05','2024-06-18 23:00:05'); /*!40000 ALTER TABLE `faqs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `faqs_translations` -- DROP TABLE IF EXISTS `faqs_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `faqs_translations` ( `lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `faqs_id` bigint unsigned NOT NULL, `question` text COLLATE utf8mb4_unicode_ci, `answer` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`lang_code`,`faqs_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `faqs_translations` -- LOCK TABLES `faqs_translations` WRITE; /*!40000 ALTER TABLE `faqs_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `faqs_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `fob_comments` -- DROP TABLE IF EXISTS `fob_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `fob_comments` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `reply_to` bigint unsigned DEFAULT NULL, `author_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `author_id` bigint unsigned DEFAULT NULL, `reference_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `reference_id` bigint unsigned DEFAULT NULL, `reference_url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `website` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'pending', `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci NOT NULL, `user_agent` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `fob_comments_author_type_author_id_index` (`author_type`,`author_id`), KEY `fob_comments_reference_type_reference_id_index` (`reference_type`,`reference_id`), KEY `fob_comments_reply_to_index` (`reply_to`), KEY `fob_comments_reference_url_index` (`reference_url`), KEY `fob_comments_status_index` (`status`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `fob_comments` -- LOCK TABLES `fob_comments` WRITE; /*!40000 ALTER TABLE `fob_comments` DISABLE KEYS */; /*!40000 ALTER TABLE `fob_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `galleries` -- DROP TABLE IF EXISTS `galleries`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `galleries` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `is_featured` tinyint unsigned NOT NULL DEFAULT '0', `order` tinyint unsigned NOT NULL DEFAULT '0', `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` bigint unsigned DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `galleries_user_id_index` (`user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `galleries` -- LOCK TABLES `galleries` WRITE; /*!40000 ALTER TABLE `galleries` DISABLE KEYS */; INSERT INTO `galleries` VALUES (1,'Perfect','Impedit delectus autem voluptatum ut quidem id consequatur. Sunt quod vero quo quidem velit est quidem. Sunt et non harum excepturi qui at velit.',0,0,'galleries/1.jpg',1,'published','2024-06-18 22:59:57','2024-06-18 22:59:57'),(2,'New Day','Deserunt veniam quia molestias qui distinctio vitae. Molestiae dolor magnam ex aliquam ut ratione labore. Velit odio voluptas repudiandae autem.',0,0,'galleries/2.jpg',1,'published','2024-06-18 22:59:57','2024-06-18 22:59:57'),(3,'Happy Day','Rerum alias quisquam itaque modi ut qui. Consectetur quidem aperiam accusamus qui voluptatum non. Vero est tempore et vitae et molestiae.',0,0,'galleries/3.jpg',1,'published','2024-06-18 22:59:57','2024-06-18 22:59:57'),(4,'Nature','Quia voluptas eaque quibusdam nihil. Ut atque est minima ipsam autem. Inventore repudiandae ut molestiae magni.',0,0,'galleries/4.jpg',1,'published','2024-06-18 22:59:57','2024-06-18 22:59:57'),(5,'Morning','Necessitatibus voluptatibus ut occaecati voluptatem consectetur. Ut quo molestiae ipsum voluptas sint repellat.',0,0,'galleries/5.jpg',1,'published','2024-06-18 22:59:57','2024-06-18 22:59:57'),(6,'Sunset','Omnis voluptates itaque repudiandae. Nobis qui ab et accusamus sunt molestias. Perspiciatis et dolor est.',0,0,'galleries/6.jpg',1,'published','2024-06-18 22:59:57','2024-06-18 22:59:57'),(7,'Ocean Views','Quos ipsum ipsam esse quia. Consequatur optio molestias ea provident sed illo. Velit deleniti dignissimos vero esse molestias natus velit nam.',0,0,'galleries/7.jpg',1,'published','2024-06-18 22:59:57','2024-06-18 22:59:57'),(8,'Adventure Time','Qui pariatur at reiciendis aliquam. Aliquam sit et non ut inventore laudantium sunt. Dolorem autem error saepe quia voluptatem.',0,0,'galleries/8.jpg',1,'published','2024-06-18 22:59:57','2024-06-18 22:59:57'); /*!40000 ALTER TABLE `galleries` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `galleries_translations` -- DROP TABLE IF EXISTS `galleries_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `galleries_translations` ( `lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `galleries_id` bigint unsigned NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`lang_code`,`galleries_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `galleries_translations` -- LOCK TABLES `galleries_translations` WRITE; /*!40000 ALTER TABLE `galleries_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `galleries_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `gallery_meta` -- DROP TABLE IF EXISTS `gallery_meta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `gallery_meta` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `images` text COLLATE utf8mb4_unicode_ci, `reference_id` bigint unsigned NOT NULL, `reference_type` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `gallery_meta_reference_id_index` (`reference_id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `gallery_meta` -- LOCK TABLES `gallery_meta` WRITE; /*!40000 ALTER TABLE `gallery_meta` DISABLE KEYS */; INSERT INTO `gallery_meta` VALUES (1,'[{\"img\":\"galleries\\/1.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"\"}]',1,'Botble\\Gallery\\Models\\Gallery','2024-06-18 22:59:57','2024-06-18 22:59:57'),(2,'[{\"img\":\"galleries\\/1.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"\"}]',2,'Botble\\Gallery\\Models\\Gallery','2024-06-18 22:59:57','2024-06-18 22:59:57'),(3,'[{\"img\":\"galleries\\/1.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"\"}]',3,'Botble\\Gallery\\Models\\Gallery','2024-06-18 22:59:57','2024-06-18 22:59:57'),(4,'[{\"img\":\"galleries\\/1.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"\"}]',4,'Botble\\Gallery\\Models\\Gallery','2024-06-18 22:59:57','2024-06-18 22:59:57'),(5,'[{\"img\":\"galleries\\/1.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"\"}]',5,'Botble\\Gallery\\Models\\Gallery','2024-06-18 22:59:57','2024-06-18 22:59:57'),(6,'[{\"img\":\"galleries\\/1.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"\"}]',6,'Botble\\Gallery\\Models\\Gallery','2024-06-18 22:59:57','2024-06-18 22:59:57'),(7,'[{\"img\":\"galleries\\/1.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"\"}]',7,'Botble\\Gallery\\Models\\Gallery','2024-06-18 22:59:57','2024-06-18 22:59:57'),(8,'[{\"img\":\"galleries\\/1.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/2.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/3.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/4.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/5.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/6.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/7.jpg\",\"description\":\"\"},{\"img\":\"galleries\\/8.jpg\",\"description\":\"\"}]',8,'Botble\\Gallery\\Models\\Gallery','2024-06-18 22:59:57','2024-06-18 22:59:57'); /*!40000 ALTER TABLE `gallery_meta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `gallery_meta_translations` -- DROP TABLE IF EXISTS `gallery_meta_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `gallery_meta_translations` ( `lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `gallery_meta_id` bigint unsigned NOT NULL, `images` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`lang_code`,`gallery_meta_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `gallery_meta_translations` -- LOCK TABLES `gallery_meta_translations` WRITE; /*!40000 ALTER TABLE `gallery_meta_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `gallery_meta_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `jobs` -- DROP TABLE IF EXISTS `jobs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `jobs` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `queue` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, `attempts` tinyint unsigned NOT NULL, `reserved_at` int unsigned DEFAULT NULL, `available_at` int unsigned NOT NULL, `created_at` int unsigned NOT NULL, PRIMARY KEY (`id`), KEY `jobs_queue_index` (`queue`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `jobs` -- LOCK TABLES `jobs` WRITE; /*!40000 ALTER TABLE `jobs` DISABLE KEYS */; /*!40000 ALTER TABLE `jobs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `language_meta` -- DROP TABLE IF EXISTS `language_meta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `language_meta` ( `lang_meta_id` bigint unsigned NOT NULL AUTO_INCREMENT, `lang_meta_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `lang_meta_origin` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL, `reference_id` bigint unsigned NOT NULL, `reference_type` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, PRIMARY KEY (`lang_meta_id`), KEY `language_meta_reference_id_index` (`reference_id`), KEY `meta_code_index` (`lang_meta_code`), KEY `meta_origin_index` (`lang_meta_origin`), KEY `meta_reference_type_index` (`reference_type`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `language_meta` -- LOCK TABLES `language_meta` WRITE; /*!40000 ALTER TABLE `language_meta` DISABLE KEYS */; INSERT INTO `language_meta` VALUES (1,'en_US','beff5a5775cbfa3ce01604bf7f4d14c0',1,'Botble\\Menu\\Models\\MenuLocation'),(2,'en_US','ac1df6f2ec796c612d1f485870af30b1',1,'Botble\\Menu\\Models\\Menu'),(3,'en_US','8d7c5cce89c69e75b1f9a3dbdb8abba3',1,'Botble\\SimpleSlider\\Models\\SimpleSlider'); /*!40000 ALTER TABLE `language_meta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `languages` -- DROP TABLE IF EXISTS `languages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `languages` ( `lang_id` bigint unsigned NOT NULL AUTO_INCREMENT, `lang_name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `lang_locale` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `lang_flag` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `lang_is_default` tinyint unsigned NOT NULL DEFAULT '0', `lang_order` int NOT NULL DEFAULT '0', `lang_is_rtl` tinyint unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`lang_id`), KEY `lang_locale_index` (`lang_locale`), KEY `lang_code_index` (`lang_code`), KEY `lang_is_default_index` (`lang_is_default`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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` VALUES (1,'English','en','en_US','us',1,0,0); /*!40000 ALTER TABLE `languages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `media_files` -- DROP TABLE IF EXISTS `media_files`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `media_files` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint unsigned NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `alt` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `folder_id` bigint unsigned NOT NULL DEFAULT '0', `mime_type` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `size` int NOT NULL, `url` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `options` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, `visibility` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'public', PRIMARY KEY (`id`), KEY `media_files_user_id_index` (`user_id`), KEY `media_files_index` (`folder_id`,`user_id`,`created_at`) ) ENGINE=InnoDB AUTO_INCREMENT=336 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `media_files` -- LOCK TABLES `media_files` WRITE; /*!40000 ALTER TABLE `media_files` DISABLE KEYS */; INSERT INTO `media_files` VALUES (1,0,'about-us-information-1','about-us-information-1',1,'image/jpeg',12878,'general/about-us-information-1.jpg','[]','2024-06-18 22:59:46','2024-06-18 22:59:46',NULL,'public'),(2,0,'about-us-information-10','about-us-information-10',1,'image/jpeg',6813,'general/about-us-information-10.jpg','[]','2024-06-18 22:59:46','2024-06-18 22:59:46',NULL,'public'),(3,0,'about-us-information-11-1','about-us-information-11-1',1,'image/jpeg',4980,'general/about-us-information-11-1.jpg','[]','2024-06-18 22:59:46','2024-06-18 22:59:46',NULL,'public'),(4,0,'about-us-information-11-2','about-us-information-11-2',1,'image/png',1940,'general/about-us-information-11-2.png','[]','2024-06-18 22:59:46','2024-06-18 22:59:46',NULL,'public'),(5,0,'about-us-information-11','about-us-information-11',1,'image/jpeg',7174,'general/about-us-information-11.jpg','[]','2024-06-18 22:59:47','2024-06-18 22:59:47',NULL,'public'),(6,0,'about-us-information-13','about-us-information-13',1,'image/jpeg',13236,'general/about-us-information-13.jpg','[]','2024-06-18 22:59:47','2024-06-18 22:59:47',NULL,'public'),(7,0,'about-us-information-14','about-us-information-14',1,'image/png',30399,'general/about-us-information-14.png','[]','2024-06-18 22:59:47','2024-06-18 22:59:47',NULL,'public'),(8,0,'about-us-information-15','about-us-information-15',1,'image/png',7778,'general/about-us-information-15.png','[]','2024-06-18 22:59:47','2024-06-18 22:59:47',NULL,'public'),(9,0,'about-us-information-16','about-us-information-16',1,'image/png',7320,'general/about-us-information-16.png','[]','2024-06-18 22:59:47','2024-06-18 22:59:47',NULL,'public'),(10,0,'about-us-information-2-1','about-us-information-2-1',1,'image/jpeg',8580,'general/about-us-information-2-1.jpg','[]','2024-06-18 22:59:47','2024-06-18 22:59:47',NULL,'public'),(11,0,'about-us-information-2-2','about-us-information-2-2',1,'image/jpeg',2974,'general/about-us-information-2-2.jpg','[]','2024-06-18 22:59:47','2024-06-18 22:59:47',NULL,'public'),(12,0,'about-us-information-3-1','about-us-information-3-1',1,'image/jpeg',10406,'general/about-us-information-3-1.jpg','[]','2024-06-18 22:59:47','2024-06-18 22:59:47',NULL,'public'),(13,0,'about-us-information-3-2','about-us-information-3-2',1,'image/jpeg',1745,'general/about-us-information-3-2.jpg','[]','2024-06-18 22:59:47','2024-06-18 22:59:47',NULL,'public'),(14,0,'about-us-information-4-1','about-us-information-4-1',1,'image/jpeg',9362,'general/about-us-information-4-1.jpg','[]','2024-06-18 22:59:47','2024-06-18 22:59:47',NULL,'public'),(15,0,'about-us-information-4-2','about-us-information-4-2',1,'image/jpeg',2161,'general/about-us-information-4-2.jpg','[]','2024-06-18 22:59:47','2024-06-18 22:59:47',NULL,'public'),(16,0,'about-us-information-4-3','about-us-information-4-3',1,'image/png',9470,'general/about-us-information-4-3.png','[]','2024-06-18 22:59:47','2024-06-18 22:59:47',NULL,'public'),(17,0,'about-us-information-5-1','about-us-information-5-1',1,'image/png',2845,'general/about-us-information-5-1.png','[]','2024-06-18 22:59:47','2024-06-18 22:59:47',NULL,'public'),(18,0,'about-us-information-5','about-us-information-5',1,'image/jpeg',10266,'general/about-us-information-5.jpg','[]','2024-06-18 22:59:47','2024-06-18 22:59:47',NULL,'public'),(19,0,'about-us-information-6-1','about-us-information-6-1',1,'image/png',9939,'general/about-us-information-6-1.png','[]','2024-06-18 22:59:48','2024-06-18 22:59:48',NULL,'public'),(20,0,'about-us-information-6-2','about-us-information-6-2',1,'image/png',3037,'general/about-us-information-6-2.png','[]','2024-06-18 22:59:48','2024-06-18 22:59:48',NULL,'public'),(21,0,'about-us-information-6-3','about-us-information-6-3',1,'image/png',2223,'general/about-us-information-6-3.png','[]','2024-06-18 22:59:48','2024-06-18 22:59:48',NULL,'public'),(22,0,'about-us-information-6-4','about-us-information-6-4',1,'image/png',12341,'general/about-us-information-6-4.png','[]','2024-06-18 22:59:48','2024-06-18 22:59:48',NULL,'public'),(23,0,'about-us-information-6','about-us-information-6',1,'image/jpeg',4329,'general/about-us-information-6.jpg','[]','2024-06-18 22:59:48','2024-06-18 22:59:48',NULL,'public'),(24,0,'about-us-information-7','about-us-information-7',1,'image/png',13510,'general/about-us-information-7.png','[]','2024-06-18 22:59:48','2024-06-18 22:59:48',NULL,'public'),(25,0,'about-us-information-8-1','about-us-information-8-1',1,'image/jpeg',8429,'general/about-us-information-8-1.jpg','[]','2024-06-18 22:59:48','2024-06-18 22:59:48',NULL,'public'),(26,0,'about-us-information-8-2','about-us-information-8-2',1,'image/jpeg',3553,'general/about-us-information-8-2.jpg','[]','2024-06-18 22:59:48','2024-06-18 22:59:48',NULL,'public'),(27,0,'about-us-information-9-1','about-us-information-9-1',1,'image/png',8037,'general/about-us-information-9-1.png','[]','2024-06-18 22:59:48','2024-06-18 22:59:48',NULL,'public'),(28,0,'about-us-information-9','about-us-information-9',1,'image/png',8152,'general/about-us-information-9.png','[]','2024-06-18 22:59:48','2024-06-18 22:59:48',NULL,'public'),(29,0,'author-avatar','author-avatar',1,'image/png',3528,'general/author-avatar.png','[]','2024-06-18 22:59:48','2024-06-18 22:59:48',NULL,'public'),(30,0,'author-signature','author-signature',1,'image/png',428,'general/author-signature.png','[]','2024-06-18 22:59:48','2024-06-18 22:59:48',NULL,'public'),(31,0,'consulting-block','consulting-block',1,'image/jpeg',5821,'general/consulting-block.jpg','[]','2024-06-18 22:59:48','2024-06-18 22:59:48',NULL,'public'),(32,0,'content-featured','content-featured',1,'image/jpeg',5678,'general/content-featured.jpg','[]','2024-06-18 22:59:48','2024-06-18 22:59:48',NULL,'public'),(33,0,'faq','faq',1,'image/png',24258,'general/faq.png','[]','2024-06-18 22:59:48','2024-06-18 22:59:48',NULL,'public'),(34,0,'hero-banner-4','hero-banner-4',1,'image/png',14400,'general/hero-banner-4.png','[]','2024-06-18 22:59:49','2024-06-18 22:59:49',NULL,'public'),(35,0,'hero-banner-5-1','hero-banner-5-1',1,'image/png',1967,'general/hero-banner-5-1.png','[]','2024-06-18 22:59:49','2024-06-18 22:59:49',NULL,'public'),(36,0,'hero-banner-5','hero-banner-5',1,'image/png',10642,'general/hero-banner-5.png','[]','2024-06-18 22:59:49','2024-06-18 22:59:49',NULL,'public'),(37,0,'hero-banner-slider-team','hero-banner-slider-team',1,'image/png',1760,'general/hero-banner-slider-team.png','[]','2024-06-18 22:59:49','2024-06-18 22:59:49',NULL,'public'),(38,0,'testimonials-1','testimonials-1',1,'image/png',6274,'general/testimonials-1.png','[]','2024-06-18 22:59:49','2024-06-18 22:59:49',NULL,'public'),(39,0,'testimonials-4-1','testimonials-4-1',1,'image/png',8618,'general/testimonials-4-1.png','[]','2024-06-18 22:59:49','2024-06-18 22:59:49',NULL,'public'),(40,0,'testimonials-4','testimonials-4',1,'image/png',8618,'general/testimonials-4.png','[]','2024-06-18 22:59:49','2024-06-18 22:59:49',NULL,'public'),(41,0,'favicon','favicon',2,'image/png',756,'icons/favicon.png','[]','2024-06-18 22:59:49','2024-06-18 22:59:49',NULL,'public'),(42,0,'logo-white','logo-white',2,'image/png',1748,'icons/logo-white.png','[]','2024-06-18 22:59:49','2024-06-18 22:59:49',NULL,'public'),(43,0,'logo','logo',2,'image/png',2537,'icons/logo.png','[]','2024-06-18 22:59:49','2024-06-18 22:59:49',NULL,'public'),(44,0,'popularity','popularity',2,'image/png',1531,'icons/popularity.png','[]','2024-06-18 22:59:49','2024-06-18 22:59:49',NULL,'public'),(45,0,'preloader-image','preloader-image',2,'image/gif',602487,'icons/preloader-image.gif','[]','2024-06-18 22:59:50','2024-06-18 22:59:50',NULL,'public'),(46,0,'star','star',2,'image/png',2711,'icons/star.png','[]','2024-06-18 22:59:52','2024-06-18 22:59:52',NULL,'public'),(47,0,'time','time',2,'image/png',1402,'icons/time.png','[]','2024-06-18 22:59:52','2024-06-18 22:59:52',NULL,'public'),(48,0,'trophy','trophy',2,'image/png',2209,'icons/trophy.png','[]','2024-06-18 22:59:52','2024-06-18 22:59:52',NULL,'public'),(49,0,'about-us-information-bg','about-us-information-bg',3,'image/jpeg',26687,'backgrounds/about-us-information-bg.jpg','[]','2024-06-18 22:59:53','2024-06-18 22:59:53',NULL,'public'),(50,0,'blog-posts-bg','blog-posts-bg',3,'image/jpeg',28680,'backgrounds/blog-posts-bg.jpg','[]','2024-06-18 22:59:53','2024-06-18 22:59:53',NULL,'public'),(51,0,'breadcrumb-bg','breadcrumb-bg',3,'image/jpeg',8920,'backgrounds/breadcrumb-bg.jpg','[]','2024-06-18 22:59:53','2024-06-18 22:59:53',NULL,'public'),(52,0,'contact-block-bg-1','contact-block-bg-1',3,'image/jpeg',19498,'backgrounds/contact-block-bg-1.jpg','[]','2024-06-18 22:59:53','2024-06-18 22:59:53',NULL,'public'),(53,0,'contact-block-bg-3','contact-block-bg-3',3,'image/png',216066,'backgrounds/contact-block-bg-3.png','[]','2024-06-18 22:59:53','2024-06-18 22:59:53',NULL,'public'),(54,0,'contact-block-bg','contact-block-bg',3,'image/jpeg',19498,'backgrounds/contact-block-bg.jpg','[]','2024-06-18 22:59:53','2024-06-18 22:59:53',NULL,'public'),(55,0,'footer-bg','footer-bg',3,'image/png',23940,'backgrounds/footer-bg.png','[]','2024-06-18 22:59:53','2024-06-18 22:59:53',NULL,'public'),(56,0,'hero-banner-1','hero-banner-1',3,'image/jpeg',20022,'backgrounds/hero-banner-1.jpg','[]','2024-06-18 22:59:53','2024-06-18 22:59:53',NULL,'public'),(57,0,'hero-banner-bg-4','hero-banner-bg-4',3,'image/jpeg',37935,'backgrounds/hero-banner-bg-4.jpg','[]','2024-06-18 22:59:54','2024-06-18 22:59:54',NULL,'public'),(58,0,'hero-banner-bg-5','hero-banner-bg-5',3,'image/jpeg',25168,'backgrounds/hero-banner-bg-5.jpg','[]','2024-06-18 22:59:54','2024-06-18 22:59:54',NULL,'public'),(59,0,'hero-banner','hero-banner',3,'image/jpeg',20022,'backgrounds/hero-banner.jpg','[]','2024-06-18 22:59:54','2024-06-18 22:59:54',NULL,'public'),(60,0,'newsletter-bg','newsletter-bg',3,'image/png',8876,'backgrounds/newsletter-bg.png','[]','2024-06-18 22:59:54','2024-06-18 22:59:54',NULL,'public'),(61,0,'services-bg-3','services-bg-3',3,'image/jpeg',35882,'backgrounds/services-bg-3.jpg','[]','2024-06-18 22:59:54','2024-06-18 22:59:54',NULL,'public'),(62,0,'services-bg','services-bg',3,'image/jpeg',31420,'backgrounds/services-bg.jpg','[]','2024-06-18 22:59:54','2024-06-18 22:59:54',NULL,'public'),(63,0,'site-statistics-bg','site-statistics-bg',3,'image/png',31111,'backgrounds/site-statistics-bg.png','[]','2024-06-18 22:59:54','2024-06-18 22:59:54',NULL,'public'),(65,0,'document','document',5,'application/pdf',9593,'downloads/document.pdf','[]','2024-06-18 22:59:55','2024-06-18 22:59:55',NULL,'public'),(66,0,'1','1',6,'image/jpeg',33268,'galleries/1.jpg','[]','2024-06-18 22:59:55','2024-06-18 22:59:55',NULL,'public'),(67,0,'2','2',6,'image/jpeg',33268,'galleries/2.jpg','[]','2024-06-18 22:59:55','2024-06-18 22:59:55',NULL,'public'),(68,0,'3','3',6,'image/jpeg',33268,'galleries/3.jpg','[]','2024-06-18 22:59:55','2024-06-18 22:59:55',NULL,'public'),(69,0,'4','4',6,'image/jpeg',33268,'galleries/4.jpg','[]','2024-06-18 22:59:56','2024-06-18 22:59:56',NULL,'public'),(70,0,'5','5',6,'image/jpeg',33268,'galleries/5.jpg','[]','2024-06-18 22:59:56','2024-06-18 22:59:56',NULL,'public'),(71,0,'6','6',6,'image/jpeg',33268,'galleries/6.jpg','[]','2024-06-18 22:59:56','2024-06-18 22:59:56',NULL,'public'),(72,0,'7','7',6,'image/jpeg',33268,'galleries/7.jpg','[]','2024-06-18 22:59:56','2024-06-18 22:59:56',NULL,'public'),(73,0,'8','8',6,'image/jpeg',33268,'galleries/8.jpg','[]','2024-06-18 22:59:56','2024-06-18 22:59:56',NULL,'public'),(74,0,'1','1',7,'image/jpeg',9803,'teams/1.jpg','[]','2024-06-18 22:59:57','2024-06-18 22:59:57',NULL,'public'),(75,0,'2-1','2-1',7,'image/jpeg',9803,'teams/2-1.jpg','[]','2024-06-18 22:59:57','2024-06-18 22:59:57',NULL,'public'),(76,0,'2-2','2-2',7,'image/jpeg',9803,'teams/2-2.jpg','[]','2024-06-18 22:59:57','2024-06-18 22:59:57',NULL,'public'),(77,0,'2-3','2-3',7,'image/jpeg',9803,'teams/2-3.jpg','[]','2024-06-18 22:59:57','2024-06-18 22:59:57',NULL,'public'),(78,0,'2-4','2-4',7,'image/jpeg',9803,'teams/2-4.jpg','[]','2024-06-18 22:59:57','2024-06-18 22:59:57',NULL,'public'),(79,0,'2-5','2-5',7,'image/jpeg',9803,'teams/2-5.jpg','[]','2024-06-18 22:59:57','2024-06-18 22:59:57',NULL,'public'),(80,0,'2-6','2-6',7,'image/jpeg',9803,'teams/2-6.jpg','[]','2024-06-18 22:59:57','2024-06-18 22:59:57',NULL,'public'),(81,0,'2-7','2-7',7,'image/jpeg',9803,'teams/2-7.jpg','[]','2024-06-18 22:59:57','2024-06-18 22:59:57',NULL,'public'),(82,0,'2-8','2-8',7,'image/jpeg',9803,'teams/2-8.jpg','[]','2024-06-18 22:59:57','2024-06-18 22:59:57',NULL,'public'),(83,0,'2','2',7,'image/jpeg',9803,'teams/2.jpg','[]','2024-06-18 22:59:57','2024-06-18 22:59:57',NULL,'public'),(84,0,'3','3',7,'image/jpeg',9803,'teams/3.jpg','[]','2024-06-18 22:59:57','2024-06-18 22:59:57',NULL,'public'),(85,0,'4','4',7,'image/jpeg',9803,'teams/4.jpg','[]','2024-06-18 22:59:57','2024-06-18 22:59:57',NULL,'public'),(86,0,'5-1','5-1',7,'image/png',9803,'teams/5-1.png','[]','2024-06-18 22:59:58','2024-06-18 22:59:58',NULL,'public'),(87,0,'5-2','5-2',7,'image/png',9803,'teams/5-2.png','[]','2024-06-18 22:59:58','2024-06-18 22:59:58',NULL,'public'),(88,0,'5-3','5-3',7,'image/png',9803,'teams/5-3.png','[]','2024-06-18 22:59:58','2024-06-18 22:59:58',NULL,'public'),(89,0,'5-4','5-4',7,'image/png',9803,'teams/5-4.png','[]','2024-06-18 22:59:58','2024-06-18 22:59:58',NULL,'public'),(90,0,'5-5','5-5',7,'image/png',9803,'teams/5-5.png','[]','2024-06-18 22:59:58','2024-06-18 22:59:58',NULL,'public'),(91,0,'5-6','5-6',7,'image/png',9803,'teams/5-6.png','[]','2024-06-18 22:59:58','2024-06-18 22:59:58',NULL,'public'),(92,0,'5-7','5-7',7,'image/png',9803,'teams/5-7.png','[]','2024-06-18 22:59:58','2024-06-18 22:59:58',NULL,'public'),(93,0,'5-8','5-8',7,'image/png',9803,'teams/5-8.png','[]','2024-06-18 22:59:58','2024-06-18 22:59:58',NULL,'public'),(94,0,'5','5',7,'image/jpeg',9803,'teams/5.jpg','[]','2024-06-18 22:59:58','2024-06-18 22:59:58',NULL,'public'),(95,0,'6','6',7,'image/jpeg',9803,'teams/6.jpg','[]','2024-06-18 22:59:58','2024-06-18 22:59:58',NULL,'public'),(96,0,'7','7',7,'image/jpeg',9803,'teams/7.jpg','[]','2024-06-18 22:59:58','2024-06-18 22:59:58',NULL,'public'),(97,0,'8','8',7,'image/jpeg',9803,'teams/8.jpg','[]','2024-06-18 22:59:58','2024-06-18 22:59:58',NULL,'public'),(98,0,'1','1',8,'image/jpeg',33268,'news/1.jpg','[]','2024-06-18 22:59:59','2024-06-18 22:59:59',NULL,'public'),(99,0,'10','10',8,'image/jpeg',33268,'news/10.jpg','[]','2024-06-18 22:59:59','2024-06-18 22:59:59',NULL,'public'),(100,0,'11','11',8,'image/jpeg',33268,'news/11.jpg','[]','2024-06-18 22:59:59','2024-06-18 22:59:59',NULL,'public'),(101,0,'12','12',8,'image/jpeg',33268,'news/12.jpg','[]','2024-06-18 22:59:59','2024-06-18 22:59:59',NULL,'public'),(102,0,'13','13',8,'image/jpeg',33268,'news/13.jpg','[]','2024-06-18 22:59:59','2024-06-18 22:59:59',NULL,'public'),(103,0,'14','14',8,'image/jpeg',33268,'news/14.jpg','[]','2024-06-18 22:59:59','2024-06-18 22:59:59',NULL,'public'),(104,0,'15','15',8,'image/jpeg',33268,'news/15.jpg','[]','2024-06-18 23:00:00','2024-06-18 23:00:00',NULL,'public'),(105,0,'16','16',8,'image/jpeg',33268,'news/16.jpg','[]','2024-06-18 23:00:00','2024-06-18 23:00:00',NULL,'public'),(106,0,'17','17',8,'image/jpeg',33268,'news/17.jpg','[]','2024-06-18 23:00:00','2024-06-18 23:00:00',NULL,'public'),(107,0,'18','18',8,'image/jpeg',33268,'news/18.jpg','[]','2024-06-18 23:00:00','2024-06-18 23:00:00',NULL,'public'),(108,0,'19','19',8,'image/jpeg',33268,'news/19.jpg','[]','2024-06-18 23:00:00','2024-06-18 23:00:00',NULL,'public'),(109,0,'2','2',8,'image/jpeg',33268,'news/2.jpg','[]','2024-06-18 23:00:01','2024-06-18 23:00:01',NULL,'public'),(110,0,'20','20',8,'image/jpeg',33268,'news/20.jpg','[]','2024-06-18 23:00:01','2024-06-18 23:00:01',NULL,'public'),(111,0,'3','3',8,'image/jpeg',33268,'news/3.jpg','[]','2024-06-18 23:00:01','2024-06-18 23:00:01',NULL,'public'),(112,0,'4','4',8,'image/jpeg',33268,'news/4.jpg','[]','2024-06-18 23:00:01','2024-06-18 23:00:01',NULL,'public'),(113,0,'5','5',8,'image/jpeg',33268,'news/5.jpg','[]','2024-06-18 23:00:01','2024-06-18 23:00:01',NULL,'public'),(114,0,'6','6',8,'image/jpeg',33268,'news/6.jpg','[]','2024-06-18 23:00:01','2024-06-18 23:00:01',NULL,'public'),(115,0,'7','7',8,'image/jpeg',33268,'news/7.jpg','[]','2024-06-18 23:00:02','2024-06-18 23:00:02',NULL,'public'),(116,0,'8','8',8,'image/jpeg',33268,'news/8.jpg','[]','2024-06-18 23:00:02','2024-06-18 23:00:02',NULL,'public'),(117,0,'9','9',8,'image/jpeg',33268,'news/9.jpg','[]','2024-06-18 23:00:02','2024-06-18 23:00:02',NULL,'public'),(118,0,'1','1',9,'image/jpeg',33268,'projects/1.jpg','[]','2024-06-18 23:00:03','2024-06-18 23:00:03',NULL,'public'),(119,0,'10','10',9,'image/jpeg',33268,'projects/10.jpg','[]','2024-06-18 23:00:03','2024-06-18 23:00:03',NULL,'public'),(120,0,'2','2',9,'image/jpeg',33268,'projects/2.jpg','[]','2024-06-18 23:00:03','2024-06-18 23:00:03',NULL,'public'),(121,0,'3','3',9,'image/jpeg',33268,'projects/3.jpg','[]','2024-06-18 23:00:03','2024-06-18 23:00:03',NULL,'public'),(122,0,'4','4',9,'image/jpeg',33268,'projects/4.jpg','[]','2024-06-18 23:00:03','2024-06-18 23:00:03',NULL,'public'),(123,0,'5','5',9,'image/jpeg',33268,'projects/5.jpg','[]','2024-06-18 23:00:03','2024-06-18 23:00:03',NULL,'public'),(124,0,'6','6',9,'image/jpeg',33268,'projects/6.jpg','[]','2024-06-18 23:00:04','2024-06-18 23:00:04',NULL,'public'),(125,0,'7','7',9,'image/jpeg',33268,'projects/7.jpg','[]','2024-06-18 23:00:04','2024-06-18 23:00:04',NULL,'public'),(126,0,'8','8',9,'image/jpeg',33268,'projects/8.jpg','[]','2024-06-18 23:00:04','2024-06-18 23:00:04',NULL,'public'),(127,0,'9','9',9,'image/jpeg',33268,'projects/9.jpg','[]','2024-06-18 23:00:04','2024-06-18 23:00:04',NULL,'public'),(128,0,'1','1',10,'image/jpeg',148419,'sliders/1.jpg','[]','2024-06-18 23:00:05','2024-06-18 23:00:05',NULL,'public'),(129,0,'2','2',10,'image/jpeg',112138,'sliders/2.jpg','[]','2024-06-18 23:00:05','2024-06-18 23:00:05',NULL,'public'),(130,0,'3','3',10,'image/jpeg',232756,'sliders/3.jpg','[]','2024-06-18 23:00:05','2024-06-18 23:00:05',NULL,'public'),(131,0,'1','1',11,'image/png',4294,'testimonials/1.png','[]','2024-06-18 23:00:05','2024-06-18 23:00:05',NULL,'public'),(132,0,'2','2',11,'image/png',4294,'testimonials/2.png','[]','2024-06-18 23:00:05','2024-06-18 23:00:05',NULL,'public'),(133,0,'3','3',11,'image/png',4294,'testimonials/3.png','[]','2024-06-18 23:00:05','2024-06-18 23:00:05',NULL,'public'),(134,0,'4','4',11,'image/png',4294,'testimonials/4.png','[]','2024-06-18 23:00:05','2024-06-18 23:00:05',NULL,'public'),(135,0,'banner','banner',12,'image/jpeg',33268,'careers/banner.jpg','[]','2024-06-18 23:00:05','2024-06-18 23:00:05',NULL,'public'),(136,0,'1','1',13,'image/png',496,'product-categories/1.png','[]','2024-06-18 23:00:06','2024-06-18 23:00:06',NULL,'public'),(137,0,'10','10',13,'image/png',496,'product-categories/10.png','[]','2024-06-18 23:00:06','2024-06-18 23:00:06',NULL,'public'),(138,0,'11','11',13,'image/png',496,'product-categories/11.png','[]','2024-06-18 23:00:06','2024-06-18 23:00:06',NULL,'public'),(139,0,'12','12',13,'image/png',496,'product-categories/12.png','[]','2024-06-18 23:00:06','2024-06-18 23:00:06',NULL,'public'),(140,0,'13','13',13,'image/png',496,'product-categories/13.png','[]','2024-06-18 23:00:06','2024-06-18 23:00:06',NULL,'public'),(141,0,'2','2',13,'image/png',496,'product-categories/2.png','[]','2024-06-18 23:00:06','2024-06-18 23:00:06',NULL,'public'),(142,0,'3','3',13,'image/png',496,'product-categories/3.png','[]','2024-06-18 23:00:06','2024-06-18 23:00:06',NULL,'public'),(143,0,'4','4',13,'image/png',496,'product-categories/4.png','[]','2024-06-18 23:00:06','2024-06-18 23:00:06',NULL,'public'),(144,0,'5','5',13,'image/png',496,'product-categories/5.png','[]','2024-06-18 23:00:06','2024-06-18 23:00:06',NULL,'public'),(145,0,'6','6',13,'image/png',496,'product-categories/6.png','[]','2024-06-18 23:00:06','2024-06-18 23:00:06',NULL,'public'),(146,0,'7','7',13,'image/png',496,'product-categories/7.png','[]','2024-06-18 23:00:06','2024-06-18 23:00:06',NULL,'public'),(147,0,'8','8',13,'image/png',496,'product-categories/8.png','[]','2024-06-18 23:00:06','2024-06-18 23:00:06',NULL,'public'),(148,0,'9','9',13,'image/png',496,'product-categories/9.png','[]','2024-06-18 23:00:06','2024-06-18 23:00:06',NULL,'public'),(149,0,'1','1',14,'image/png',834,'brands/1.png','[]','2024-06-18 23:00:06','2024-06-18 23:00:06',NULL,'public'),(150,0,'1','1',15,'image/jpeg',33268,'products/1.jpg','[]','2024-06-18 23:00:07','2024-06-18 23:00:07',NULL,'public'),(151,0,'10-1','10-1',15,'image/jpeg',33268,'products/10-1.jpg','[]','2024-06-18 23:00:07','2024-06-18 23:00:07',NULL,'public'),(152,0,'10-2','10-2',15,'image/jpeg',33268,'products/10-2.jpg','[]','2024-06-18 23:00:07','2024-06-18 23:00:07',NULL,'public'),(153,0,'10','10',15,'image/jpeg',33268,'products/10.jpg','[]','2024-06-18 23:00:07','2024-06-18 23:00:07',NULL,'public'),(154,0,'11-1','11-1',15,'image/jpeg',33268,'products/11-1.jpg','[]','2024-06-18 23:00:07','2024-06-18 23:00:07',NULL,'public'),(155,0,'11-2','11-2',15,'image/jpeg',33268,'products/11-2.jpg','[]','2024-06-18 23:00:07','2024-06-18 23:00:07',NULL,'public'),(156,0,'11-3','11-3',15,'image/jpeg',33268,'products/11-3.jpg','[]','2024-06-18 23:00:08','2024-06-18 23:00:08',NULL,'public'),(157,0,'11','11',15,'image/jpeg',33268,'products/11.jpg','[]','2024-06-18 23:00:08','2024-06-18 23:00:08',NULL,'public'),(158,0,'12-1','12-1',15,'image/jpeg',33268,'products/12-1.jpg','[]','2024-06-18 23:00:08','2024-06-18 23:00:08',NULL,'public'),(159,0,'12-2','12-2',15,'image/jpeg',33268,'products/12-2.jpg','[]','2024-06-18 23:00:08','2024-06-18 23:00:08',NULL,'public'),(160,0,'12-3','12-3',15,'image/jpeg',33268,'products/12-3.jpg','[]','2024-06-18 23:00:08','2024-06-18 23:00:08',NULL,'public'),(161,0,'12','12',15,'image/jpeg',33268,'products/12.jpg','[]','2024-06-18 23:00:09','2024-06-18 23:00:09',NULL,'public'),(162,0,'13-1','13-1',15,'image/jpeg',33268,'products/13-1.jpg','[]','2024-06-18 23:00:09','2024-06-18 23:00:09',NULL,'public'),(163,0,'13','13',15,'image/jpeg',33268,'products/13.jpg','[]','2024-06-18 23:00:09','2024-06-18 23:00:09',NULL,'public'),(164,0,'14','14',15,'image/jpeg',33268,'products/14.jpg','[]','2024-06-18 23:00:09','2024-06-18 23:00:09',NULL,'public'),(165,0,'15-1','15-1',15,'image/jpeg',33268,'products/15-1.jpg','[]','2024-06-18 23:00:09','2024-06-18 23:00:09',NULL,'public'),(166,0,'15','15',15,'image/jpeg',33268,'products/15.jpg','[]','2024-06-18 23:00:09','2024-06-18 23:00:09',NULL,'public'),(167,0,'16','16',15,'image/jpeg',33268,'products/16.jpg','[]','2024-06-18 23:00:10','2024-06-18 23:00:10',NULL,'public'),(168,0,'17-1','17-1',15,'image/jpeg',33268,'products/17-1.jpg','[]','2024-06-18 23:00:10','2024-06-18 23:00:10',NULL,'public'),(169,0,'17-2','17-2',15,'image/jpeg',33268,'products/17-2.jpg','[]','2024-06-18 23:00:10','2024-06-18 23:00:10',NULL,'public'),(170,0,'17-3','17-3',15,'image/jpeg',33268,'products/17-3.jpg','[]','2024-06-18 23:00:10','2024-06-18 23:00:10',NULL,'public'),(171,0,'17','17',15,'image/jpeg',33268,'products/17.jpg','[]','2024-06-18 23:00:10','2024-06-18 23:00:10',NULL,'public'),(172,0,'18-1','18-1',15,'image/jpeg',33268,'products/18-1.jpg','[]','2024-06-18 23:00:11','2024-06-18 23:00:11',NULL,'public'),(173,0,'18-2','18-2',15,'image/jpeg',33268,'products/18-2.jpg','[]','2024-06-18 23:00:11','2024-06-18 23:00:11',NULL,'public'),(174,0,'18-3','18-3',15,'image/jpeg',33268,'products/18-3.jpg','[]','2024-06-18 23:00:11','2024-06-18 23:00:11',NULL,'public'),(175,0,'18','18',15,'image/jpeg',33268,'products/18.jpg','[]','2024-06-18 23:00:11','2024-06-18 23:00:11',NULL,'public'),(176,0,'19-1','19-1',15,'image/jpeg',33268,'products/19-1.jpg','[]','2024-06-18 23:00:11','2024-06-18 23:00:11',NULL,'public'),(177,0,'19-2','19-2',15,'image/jpeg',33268,'products/19-2.jpg','[]','2024-06-18 23:00:12','2024-06-18 23:00:12',NULL,'public'),(178,0,'19-3','19-3',15,'image/jpeg',33268,'products/19-3.jpg','[]','2024-06-18 23:00:12','2024-06-18 23:00:12',NULL,'public'),(179,0,'19','19',15,'image/jpeg',33268,'products/19.jpg','[]','2024-06-18 23:00:12','2024-06-18 23:00:12',NULL,'public'),(180,0,'2-1','2-1',15,'image/jpeg',33268,'products/2-1.jpg','[]','2024-06-18 23:00:12','2024-06-18 23:00:12',NULL,'public'),(181,0,'2-2','2-2',15,'image/jpeg',33268,'products/2-2.jpg','[]','2024-06-18 23:00:12','2024-06-18 23:00:12',NULL,'public'),(182,0,'2-3','2-3',15,'image/jpeg',33268,'products/2-3.jpg','[]','2024-06-18 23:00:12','2024-06-18 23:00:12',NULL,'public'),(183,0,'2','2',15,'image/jpeg',33268,'products/2.jpg','[]','2024-06-18 23:00:13','2024-06-18 23:00:13',NULL,'public'),(184,0,'20-1','20-1',15,'image/jpeg',33268,'products/20-1.jpg','[]','2024-06-18 23:00:13','2024-06-18 23:00:13',NULL,'public'),(185,0,'20-2','20-2',15,'image/jpeg',33268,'products/20-2.jpg','[]','2024-06-18 23:00:13','2024-06-18 23:00:13',NULL,'public'),(186,0,'20-3','20-3',15,'image/jpeg',33268,'products/20-3.jpg','[]','2024-06-18 23:00:13','2024-06-18 23:00:13',NULL,'public'),(187,0,'20','20',15,'image/jpeg',33268,'products/20.jpg','[]','2024-06-18 23:00:13','2024-06-18 23:00:13',NULL,'public'),(188,0,'21-1','21-1',15,'image/jpeg',33268,'products/21-1.jpg','[]','2024-06-18 23:00:14','2024-06-18 23:00:14',NULL,'public'),(189,0,'21-2','21-2',15,'image/jpeg',33268,'products/21-2.jpg','[]','2024-06-18 23:00:14','2024-06-18 23:00:14',NULL,'public'),(190,0,'21','21',15,'image/jpeg',33268,'products/21.jpg','[]','2024-06-18 23:00:14','2024-06-18 23:00:14',NULL,'public'),(191,0,'22-1','22-1',15,'image/jpeg',33268,'products/22-1.jpg','[]','2024-06-18 23:00:14','2024-06-18 23:00:14',NULL,'public'),(192,0,'22-2','22-2',15,'image/jpeg',33268,'products/22-2.jpg','[]','2024-06-18 23:00:14','2024-06-18 23:00:14',NULL,'public'),(193,0,'22-3','22-3',15,'image/jpeg',33268,'products/22-3.jpg','[]','2024-06-18 23:00:14','2024-06-18 23:00:14',NULL,'public'),(194,0,'22','22',15,'image/jpeg',33268,'products/22.jpg','[]','2024-06-18 23:00:15','2024-06-18 23:00:15',NULL,'public'),(195,0,'23-1','23-1',15,'image/jpeg',33268,'products/23-1.jpg','[]','2024-06-18 23:00:15','2024-06-18 23:00:15',NULL,'public'),(196,0,'23-2','23-2',15,'image/jpeg',33268,'products/23-2.jpg','[]','2024-06-18 23:00:15','2024-06-18 23:00:15',NULL,'public'),(197,0,'23-3','23-3',15,'image/jpeg',33268,'products/23-3.jpg','[]','2024-06-18 23:00:15','2024-06-18 23:00:15',NULL,'public'),(198,0,'23','23',15,'image/jpeg',33268,'products/23.jpg','[]','2024-06-18 23:00:15','2024-06-18 23:00:15',NULL,'public'),(199,0,'24-1','24-1',15,'image/jpeg',33268,'products/24-1.jpg','[]','2024-06-18 23:00:16','2024-06-18 23:00:16',NULL,'public'),(200,0,'24-2','24-2',15,'image/jpeg',33268,'products/24-2.jpg','[]','2024-06-18 23:00:16','2024-06-18 23:00:16',NULL,'public'),(201,0,'24','24',15,'image/jpeg',33268,'products/24.jpg','[]','2024-06-18 23:00:16','2024-06-18 23:00:16',NULL,'public'),(202,0,'25-1','25-1',15,'image/jpeg',33268,'products/25-1.jpg','[]','2024-06-18 23:00:16','2024-06-18 23:00:16',NULL,'public'),(203,0,'25-2','25-2',15,'image/jpeg',33268,'products/25-2.jpg','[]','2024-06-18 23:00:16','2024-06-18 23:00:16',NULL,'public'),(204,0,'25','25',15,'image/jpeg',33268,'products/25.jpg','[]','2024-06-18 23:00:16','2024-06-18 23:00:16',NULL,'public'),(205,0,'26-1','26-1',15,'image/jpeg',33268,'products/26-1.jpg','[]','2024-06-18 23:00:17','2024-06-18 23:00:17',NULL,'public'),(206,0,'26','26',15,'image/jpeg',33268,'products/26.jpg','[]','2024-06-18 23:00:17','2024-06-18 23:00:17',NULL,'public'),(207,0,'27-1','27-1',15,'image/jpeg',33268,'products/27-1.jpg','[]','2024-06-18 23:00:17','2024-06-18 23:00:17',NULL,'public'),(208,0,'27','27',15,'image/jpeg',33268,'products/27.jpg','[]','2024-06-18 23:00:17','2024-06-18 23:00:17',NULL,'public'),(209,0,'28-1','28-1',15,'image/jpeg',33268,'products/28-1.jpg','[]','2024-06-18 23:00:17','2024-06-18 23:00:17',NULL,'public'),(210,0,'28-2','28-2',15,'image/jpeg',33268,'products/28-2.jpg','[]','2024-06-18 23:00:18','2024-06-18 23:00:18',NULL,'public'),(211,0,'28','28',15,'image/jpeg',33268,'products/28.jpg','[]','2024-06-18 23:00:18','2024-06-18 23:00:18',NULL,'public'),(212,0,'29-1','29-1',15,'image/jpeg',33268,'products/29-1.jpg','[]','2024-06-18 23:00:18','2024-06-18 23:00:18',NULL,'public'),(213,0,'29-2','29-2',15,'image/jpeg',33268,'products/29-2.jpg','[]','2024-06-18 23:00:18','2024-06-18 23:00:18',NULL,'public'),(214,0,'29','29',15,'image/jpeg',33268,'products/29.jpg','[]','2024-06-18 23:00:18','2024-06-18 23:00:18',NULL,'public'),(215,0,'3','3',15,'image/jpeg',33268,'products/3.jpg','[]','2024-06-18 23:00:19','2024-06-18 23:00:19',NULL,'public'),(216,0,'30-1','30-1',15,'image/jpeg',33268,'products/30-1.jpg','[]','2024-06-18 23:00:19','2024-06-18 23:00:19',NULL,'public'),(217,0,'30-2','30-2',15,'image/jpeg',33268,'products/30-2.jpg','[]','2024-06-18 23:00:19','2024-06-18 23:00:19',NULL,'public'),(218,0,'30','30',15,'image/jpeg',33268,'products/30.jpg','[]','2024-06-18 23:00:19','2024-06-18 23:00:19',NULL,'public'),(219,0,'31-1','31-1',15,'image/jpeg',33268,'products/31-1.jpg','[]','2024-06-18 23:00:19','2024-06-18 23:00:19',NULL,'public'),(220,0,'31','31',15,'image/jpeg',33268,'products/31.jpg','[]','2024-06-18 23:00:20','2024-06-18 23:00:20',NULL,'public'),(221,0,'32-1','32-1',15,'image/jpeg',33268,'products/32-1.jpg','[]','2024-06-18 23:00:20','2024-06-18 23:00:20',NULL,'public'),(222,0,'32-2','32-2',15,'image/jpeg',33268,'products/32-2.jpg','[]','2024-06-18 23:00:20','2024-06-18 23:00:20',NULL,'public'),(223,0,'32','32',15,'image/jpeg',33268,'products/32.jpg','[]','2024-06-18 23:00:20','2024-06-18 23:00:20',NULL,'public'),(224,0,'33-1','33-1',15,'image/jpeg',33268,'products/33-1.jpg','[]','2024-06-18 23:00:20','2024-06-18 23:00:20',NULL,'public'),(225,0,'33-2','33-2',15,'image/jpeg',33268,'products/33-2.jpg','[]','2024-06-18 23:00:21','2024-06-18 23:00:21',NULL,'public'),(226,0,'33','33',15,'image/jpeg',33268,'products/33.jpg','[]','2024-06-18 23:00:21','2024-06-18 23:00:21',NULL,'public'),(227,0,'34-1','34-1',15,'image/jpeg',33268,'products/34-1.jpg','[]','2024-06-18 23:00:21','2024-06-18 23:00:21',NULL,'public'),(228,0,'34','34',15,'image/jpeg',33268,'products/34.jpg','[]','2024-06-18 23:00:21','2024-06-18 23:00:21',NULL,'public'),(229,0,'35-1','35-1',15,'image/jpeg',33268,'products/35-1.jpg','[]','2024-06-18 23:00:21','2024-06-18 23:00:21',NULL,'public'),(230,0,'35','35',15,'image/jpeg',33268,'products/35.jpg','[]','2024-06-18 23:00:21','2024-06-18 23:00:21',NULL,'public'),(231,0,'36-1','36-1',15,'image/jpeg',33268,'products/36-1.jpg','[]','2024-06-18 23:00:22','2024-06-18 23:00:22',NULL,'public'),(232,0,'36-2','36-2',15,'image/jpeg',33268,'products/36-2.jpg','[]','2024-06-18 23:00:22','2024-06-18 23:00:22',NULL,'public'),(233,0,'36','36',15,'image/jpeg',33268,'products/36.jpg','[]','2024-06-18 23:00:22','2024-06-18 23:00:22',NULL,'public'),(234,0,'37-1','37-1',15,'image/jpeg',33268,'products/37-1.jpg','[]','2024-06-18 23:00:22','2024-06-18 23:00:22',NULL,'public'),(235,0,'37-2','37-2',15,'image/jpeg',33268,'products/37-2.jpg','[]','2024-06-18 23:00:22','2024-06-18 23:00:22',NULL,'public'),(236,0,'37','37',15,'image/jpeg',33268,'products/37.jpg','[]','2024-06-18 23:00:23','2024-06-18 23:00:23',NULL,'public'),(237,0,'38-1','38-1',15,'image/jpeg',33268,'products/38-1.jpg','[]','2024-06-18 23:00:23','2024-06-18 23:00:23',NULL,'public'),(238,0,'38-2','38-2',15,'image/jpeg',33268,'products/38-2.jpg','[]','2024-06-18 23:00:23','2024-06-18 23:00:23',NULL,'public'),(239,0,'38-3','38-3',15,'image/jpeg',33268,'products/38-3.jpg','[]','2024-06-18 23:00:23','2024-06-18 23:00:23',NULL,'public'),(240,0,'38','38',15,'image/jpeg',33268,'products/38.jpg','[]','2024-06-18 23:00:23','2024-06-18 23:00:23',NULL,'public'),(241,0,'39-1','39-1',15,'image/jpeg',33268,'products/39-1.jpg','[]','2024-06-18 23:00:24','2024-06-18 23:00:24',NULL,'public'),(242,0,'39-2','39-2',15,'image/jpeg',33268,'products/39-2.jpg','[]','2024-06-18 23:00:24','2024-06-18 23:00:24',NULL,'public'),(243,0,'39','39',15,'image/jpeg',33268,'products/39.jpg','[]','2024-06-18 23:00:24','2024-06-18 23:00:24',NULL,'public'),(244,0,'4-1','4-1',15,'image/jpeg',33268,'products/4-1.jpg','[]','2024-06-18 23:00:24','2024-06-18 23:00:24',NULL,'public'),(245,0,'4-2','4-2',15,'image/jpeg',33268,'products/4-2.jpg','[]','2024-06-18 23:00:24','2024-06-18 23:00:24',NULL,'public'),(246,0,'4-3','4-3',15,'image/jpeg',33268,'products/4-3.jpg','[]','2024-06-18 23:00:25','2024-06-18 23:00:25',NULL,'public'),(247,0,'4','4',15,'image/jpeg',33268,'products/4.jpg','[]','2024-06-18 23:00:25','2024-06-18 23:00:25',NULL,'public'),(248,0,'40-1','40-1',15,'image/jpeg',33268,'products/40-1.jpg','[]','2024-06-18 23:00:25','2024-06-18 23:00:25',NULL,'public'),(249,0,'40','40',15,'image/jpeg',33268,'products/40.jpg','[]','2024-06-18 23:00:25','2024-06-18 23:00:25',NULL,'public'),(250,0,'41-1','41-1',15,'image/jpeg',33268,'products/41-1.jpg','[]','2024-06-18 23:00:25','2024-06-18 23:00:25',NULL,'public'),(251,0,'41-2','41-2',15,'image/jpeg',33268,'products/41-2.jpg','[]','2024-06-18 23:00:26','2024-06-18 23:00:26',NULL,'public'),(252,0,'41','41',15,'image/jpeg',33268,'products/41.jpg','[]','2024-06-18 23:00:26','2024-06-18 23:00:26',NULL,'public'),(253,0,'42-1','42-1',15,'image/jpeg',33268,'products/42-1.jpg','[]','2024-06-18 23:00:26','2024-06-18 23:00:26',NULL,'public'),(254,0,'42-2','42-2',15,'image/jpeg',33268,'products/42-2.jpg','[]','2024-06-18 23:00:26','2024-06-18 23:00:26',NULL,'public'),(255,0,'42','42',15,'image/jpeg',33268,'products/42.jpg','[]','2024-06-18 23:00:26','2024-06-18 23:00:26',NULL,'public'),(256,0,'43-1','43-1',15,'image/jpeg',33268,'products/43-1.jpg','[]','2024-06-18 23:00:27','2024-06-18 23:00:27',NULL,'public'),(257,0,'43-2','43-2',15,'image/jpeg',33268,'products/43-2.jpg','[]','2024-06-18 23:00:27','2024-06-18 23:00:27',NULL,'public'),(258,0,'43','43',15,'image/jpeg',33268,'products/43.jpg','[]','2024-06-18 23:00:27','2024-06-18 23:00:27',NULL,'public'),(259,0,'44-1','44-1',15,'image/jpeg',33268,'products/44-1.jpg','[]','2024-06-18 23:00:27','2024-06-18 23:00:27',NULL,'public'),(260,0,'44-2','44-2',15,'image/jpeg',33268,'products/44-2.jpg','[]','2024-06-18 23:00:27','2024-06-18 23:00:27',NULL,'public'),(261,0,'44','44',15,'image/jpeg',33268,'products/44.jpg','[]','2024-06-18 23:00:27','2024-06-18 23:00:27',NULL,'public'),(262,0,'45-1','45-1',15,'image/jpeg',33268,'products/45-1.jpg','[]','2024-06-18 23:00:28','2024-06-18 23:00:28',NULL,'public'),(263,0,'45','45',15,'image/jpeg',33268,'products/45.jpg','[]','2024-06-18 23:00:28','2024-06-18 23:00:28',NULL,'public'),(264,0,'46-1','46-1',15,'image/jpeg',33268,'products/46-1.jpg','[]','2024-06-18 23:00:28','2024-06-18 23:00:28',NULL,'public'),(265,0,'46','46',15,'image/jpeg',33268,'products/46.jpg','[]','2024-06-18 23:00:28','2024-06-18 23:00:28',NULL,'public'),(266,0,'47-1','47-1',15,'image/jpeg',33268,'products/47-1.jpg','[]','2024-06-18 23:00:28','2024-06-18 23:00:28',NULL,'public'),(267,0,'47','47',15,'image/jpeg',33268,'products/47.jpg','[]','2024-06-18 23:00:29','2024-06-18 23:00:29',NULL,'public'),(268,0,'48-1','48-1',15,'image/jpeg',33268,'products/48-1.jpg','[]','2024-06-18 23:00:29','2024-06-18 23:00:29',NULL,'public'),(269,0,'48-2','48-2',15,'image/jpeg',33268,'products/48-2.jpg','[]','2024-06-18 23:00:29','2024-06-18 23:00:29',NULL,'public'),(270,0,'48','48',15,'image/jpeg',33268,'products/48.jpg','[]','2024-06-18 23:00:29','2024-06-18 23:00:29',NULL,'public'),(271,0,'49-1','49-1',15,'image/jpeg',33268,'products/49-1.jpg','[]','2024-06-18 23:00:29','2024-06-18 23:00:29',NULL,'public'),(272,0,'49-2','49-2',15,'image/jpeg',33268,'products/49-2.jpg','[]','2024-06-18 23:00:29','2024-06-18 23:00:29',NULL,'public'),(273,0,'49','49',15,'image/jpeg',33268,'products/49.jpg','[]','2024-06-18 23:00:30','2024-06-18 23:00:30',NULL,'public'),(274,0,'5-1','5-1',15,'image/jpeg',33268,'products/5-1.jpg','[]','2024-06-18 23:00:30','2024-06-18 23:00:30',NULL,'public'),(275,0,'5-2','5-2',15,'image/jpeg',33268,'products/5-2.jpg','[]','2024-06-18 23:00:30','2024-06-18 23:00:30',NULL,'public'),(276,0,'5-3','5-3',15,'image/jpeg',33268,'products/5-3.jpg','[]','2024-06-18 23:00:30','2024-06-18 23:00:30',NULL,'public'),(277,0,'5','5',15,'image/jpeg',33268,'products/5.jpg','[]','2024-06-18 23:00:30','2024-06-18 23:00:30',NULL,'public'),(278,0,'50-1','50-1',15,'image/jpeg',33268,'products/50-1.jpg','[]','2024-06-18 23:00:31','2024-06-18 23:00:31',NULL,'public'),(279,0,'50','50',15,'image/jpeg',33268,'products/50.jpg','[]','2024-06-18 23:00:31','2024-06-18 23:00:31',NULL,'public'),(280,0,'51','51',15,'image/jpeg',33268,'products/51.jpg','[]','2024-06-18 23:00:31','2024-06-18 23:00:31',NULL,'public'),(281,0,'52-1','52-1',15,'image/jpeg',33268,'products/52-1.jpg','[]','2024-06-18 23:00:31','2024-06-18 23:00:31',NULL,'public'),(282,0,'52-2','52-2',15,'image/jpeg',33268,'products/52-2.jpg','[]','2024-06-18 23:00:31','2024-06-18 23:00:31',NULL,'public'),(283,0,'52','52',15,'image/jpeg',33268,'products/52.jpg','[]','2024-06-18 23:00:32','2024-06-18 23:00:32',NULL,'public'),(284,0,'53-1','53-1',15,'image/jpeg',33268,'products/53-1.jpg','[]','2024-06-18 23:00:32','2024-06-18 23:00:32',NULL,'public'),(285,0,'53','53',15,'image/jpeg',33268,'products/53.jpg','[]','2024-06-18 23:00:32','2024-06-18 23:00:32',NULL,'public'),(286,0,'54-1','54-1',15,'image/jpeg',33268,'products/54-1.jpg','[]','2024-06-18 23:00:32','2024-06-18 23:00:32',NULL,'public'),(287,0,'54','54',15,'image/jpeg',33268,'products/54.jpg','[]','2024-06-18 23:00:32','2024-06-18 23:00:32',NULL,'public'),(288,0,'55-1','55-1',15,'image/jpeg',33268,'products/55-1.jpg','[]','2024-06-18 23:00:33','2024-06-18 23:00:33',NULL,'public'),(289,0,'55-2','55-2',15,'image/jpeg',33268,'products/55-2.jpg','[]','2024-06-18 23:00:33','2024-06-18 23:00:33',NULL,'public'),(290,0,'55','55',15,'image/jpeg',33268,'products/55.jpg','[]','2024-06-18 23:00:33','2024-06-18 23:00:33',NULL,'public'),(291,0,'56-1','56-1',15,'image/jpeg',33268,'products/56-1.jpg','[]','2024-06-18 23:00:33','2024-06-18 23:00:33',NULL,'public'),(292,0,'56-2','56-2',15,'image/jpeg',33268,'products/56-2.jpg','[]','2024-06-18 23:00:33','2024-06-18 23:00:33',NULL,'public'),(293,0,'56','56',15,'image/jpeg',33268,'products/56.jpg','[]','2024-06-18 23:00:34','2024-06-18 23:00:34',NULL,'public'),(294,0,'57-1','57-1',15,'image/jpeg',33268,'products/57-1.jpg','[]','2024-06-18 23:00:34','2024-06-18 23:00:34',NULL,'public'),(295,0,'57','57',15,'image/jpeg',33268,'products/57.jpg','[]','2024-06-18 23:00:34','2024-06-18 23:00:34',NULL,'public'),(296,0,'58-1','58-1',15,'image/jpeg',33268,'products/58-1.jpg','[]','2024-06-18 23:00:34','2024-06-18 23:00:34',NULL,'public'),(297,0,'58-2','58-2',15,'image/jpeg',33268,'products/58-2.jpg','[]','2024-06-18 23:00:34','2024-06-18 23:00:34',NULL,'public'),(298,0,'58','58',15,'image/jpeg',33268,'products/58.jpg','[]','2024-06-18 23:00:35','2024-06-18 23:00:35',NULL,'public'),(299,0,'59-1','59-1',15,'image/jpeg',33268,'products/59-1.jpg','[]','2024-06-18 23:00:35','2024-06-18 23:00:35',NULL,'public'),(300,0,'59-2','59-2',15,'image/jpeg',33268,'products/59-2.jpg','[]','2024-06-18 23:00:35','2024-06-18 23:00:35',NULL,'public'),(301,0,'59-3','59-3',15,'image/jpeg',33268,'products/59-3.jpg','[]','2024-06-18 23:00:35','2024-06-18 23:00:35',NULL,'public'),(302,0,'59','59',15,'image/jpeg',33268,'products/59.jpg','[]','2024-06-18 23:00:35','2024-06-18 23:00:35',NULL,'public'),(303,0,'6','6',15,'image/jpeg',33268,'products/6.jpg','[]','2024-06-18 23:00:36','2024-06-18 23:00:36',NULL,'public'),(304,0,'60-1','60-1',15,'image/jpeg',33268,'products/60-1.jpg','[]','2024-06-18 23:00:36','2024-06-18 23:00:36',NULL,'public'),(305,0,'60-2','60-2',15,'image/jpeg',33268,'products/60-2.jpg','[]','2024-06-18 23:00:36','2024-06-18 23:00:36',NULL,'public'),(306,0,'60','60',15,'image/jpeg',33268,'products/60.jpg','[]','2024-06-18 23:00:36','2024-06-18 23:00:36',NULL,'public'),(307,0,'61-1','61-1',15,'image/jpeg',33268,'products/61-1.jpg','[]','2024-06-18 23:00:36','2024-06-18 23:00:36',NULL,'public'),(308,0,'61','61',15,'image/jpeg',33268,'products/61.jpg','[]','2024-06-18 23:00:36','2024-06-18 23:00:36',NULL,'public'),(309,0,'62-1','62-1',15,'image/jpeg',33268,'products/62-1.jpg','[]','2024-06-18 23:00:37','2024-06-18 23:00:37',NULL,'public'),(310,0,'62','62',15,'image/jpeg',33268,'products/62.jpg','[]','2024-06-18 23:00:37','2024-06-18 23:00:37',NULL,'public'),(311,0,'63-1','63-1',15,'image/jpeg',33268,'products/63-1.jpg','[]','2024-06-18 23:00:37','2024-06-18 23:00:37',NULL,'public'),(312,0,'63','63',15,'image/jpeg',33268,'products/63.jpg','[]','2024-06-18 23:00:37','2024-06-18 23:00:37',NULL,'public'),(313,0,'64-1','64-1',15,'image/jpeg',33268,'products/64-1.jpg','[]','2024-06-18 23:00:37','2024-06-18 23:00:37',NULL,'public'),(314,0,'64','64',15,'image/jpeg',33268,'products/64.jpg','[]','2024-06-18 23:00:38','2024-06-18 23:00:38',NULL,'public'),(315,0,'65-1','65-1',15,'image/jpeg',33268,'products/65-1.jpg','[]','2024-06-18 23:00:38','2024-06-18 23:00:38',NULL,'public'),(316,0,'65-2','65-2',15,'image/jpeg',33268,'products/65-2.jpg','[]','2024-06-18 23:00:38','2024-06-18 23:00:38',NULL,'public'),(317,0,'65','65',15,'image/jpeg',33268,'products/65.jpg','[]','2024-06-18 23:00:38','2024-06-18 23:00:38',NULL,'public'),(318,0,'7','7',15,'image/jpeg',33268,'products/7.jpg','[]','2024-06-18 23:00:38','2024-06-18 23:00:38',NULL,'public'),(319,0,'8-1','8-1',15,'image/jpeg',33268,'products/8-1.jpg','[]','2024-06-18 23:00:39','2024-06-18 23:00:39',NULL,'public'),(320,0,'8-2','8-2',15,'image/jpeg',33268,'products/8-2.jpg','[]','2024-06-18 23:00:39','2024-06-18 23:00:39',NULL,'public'),(321,0,'8-3','8-3',15,'image/jpeg',33268,'products/8-3.jpg','[]','2024-06-18 23:00:39','2024-06-18 23:00:39',NULL,'public'),(322,0,'8','8',15,'image/jpeg',33268,'products/8.jpg','[]','2024-06-18 23:00:39','2024-06-18 23:00:39',NULL,'public'),(323,0,'9-1','9-1',15,'image/jpeg',33268,'products/9-1.jpg','[]','2024-06-18 23:00:39','2024-06-18 23:00:39',NULL,'public'),(324,0,'9-2','9-2',15,'image/jpeg',33268,'products/9-2.jpg','[]','2024-06-18 23:00:40','2024-06-18 23:00:40',NULL,'public'),(325,0,'9','9',15,'image/jpeg',33268,'products/9.jpg','[]','2024-06-18 23:00:40','2024-06-18 23:00:40',NULL,'public'),(326,0,'1','1',16,'image/jpeg',9803,'customers/1.jpg','[]','2024-06-18 23:00:42','2024-06-18 23:00:42',NULL,'public'),(327,0,'10','10',16,'image/jpeg',9803,'customers/10.jpg','[]','2024-06-18 23:00:42','2024-06-18 23:00:42',NULL,'public'),(328,0,'2','2',16,'image/jpeg',9803,'customers/2.jpg','[]','2024-06-18 23:00:42','2024-06-18 23:00:42',NULL,'public'),(329,0,'3','3',16,'image/jpeg',9803,'customers/3.jpg','[]','2024-06-18 23:00:42','2024-06-18 23:00:42',NULL,'public'),(330,0,'4','4',16,'image/jpeg',9803,'customers/4.jpg','[]','2024-06-18 23:00:42','2024-06-18 23:00:42',NULL,'public'),(331,0,'5','5',16,'image/jpeg',9803,'customers/5.jpg','[]','2024-06-18 23:00:42','2024-06-18 23:00:42',NULL,'public'),(332,0,'6','6',16,'image/jpeg',9803,'customers/6.jpg','[]','2024-06-18 23:00:43','2024-06-18 23:00:43',NULL,'public'),(333,0,'7','7',16,'image/jpeg',9803,'customers/7.jpg','[]','2024-06-18 23:00:43','2024-06-18 23:00:43',NULL,'public'),(334,0,'8','8',16,'image/jpeg',9803,'customers/8.jpg','[]','2024-06-18 23:00:43','2024-06-18 23:00:43',NULL,'public'),(335,0,'9','9',16,'image/jpeg',9803,'customers/9.jpg','[]','2024-06-18 23:00:43','2024-06-18 23:00:43',NULL,'public'); /*!40000 ALTER TABLE `media_files` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `media_folders` -- DROP TABLE IF EXISTS `media_folders`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `media_folders` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint unsigned NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `color` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `parent_id` bigint unsigned NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `deleted_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `media_folders_user_id_index` (`user_id`), KEY `media_folders_index` (`parent_id`,`user_id`,`created_at`) ) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `media_folders` -- LOCK TABLES `media_folders` WRITE; /*!40000 ALTER TABLE `media_folders` DISABLE KEYS */; INSERT INTO `media_folders` VALUES (1,0,'general',NULL,'general',0,'2024-06-18 22:59:46','2024-06-18 22:59:46',NULL),(2,0,'icons',NULL,'icons',0,'2024-06-18 22:59:49','2024-06-18 22:59:49',NULL),(3,0,'backgrounds',NULL,'backgrounds',0,'2024-06-18 22:59:52','2024-06-18 22:59:52',NULL),(5,0,'downloads',NULL,'downloads',0,'2024-06-18 22:59:55','2024-06-18 22:59:55',NULL),(6,0,'galleries',NULL,'galleries',0,'2024-06-18 22:59:55','2024-06-18 22:59:55',NULL),(7,0,'teams',NULL,'teams',0,'2024-06-18 22:59:57','2024-06-18 22:59:57',NULL),(8,0,'news',NULL,'news',0,'2024-06-18 22:59:58','2024-06-18 22:59:58',NULL),(9,0,'projects',NULL,'projects',0,'2024-06-18 23:00:02','2024-06-18 23:00:02',NULL),(10,0,'sliders',NULL,'sliders',0,'2024-06-18 23:00:05','2024-06-18 23:00:05',NULL),(11,0,'testimonials',NULL,'testimonials',0,'2024-06-18 23:00:05','2024-06-18 23:00:05',NULL),(12,0,'careers',NULL,'careers',0,'2024-06-18 23:00:05','2024-06-18 23:00:05',NULL),(13,0,'product-categories',NULL,'product-categories',0,'2024-06-18 23:00:06','2024-06-18 23:00:06',NULL),(14,0,'brands',NULL,'brands',0,'2024-06-18 23:00:06','2024-06-18 23:00:06',NULL),(15,0,'products',NULL,'products',0,'2024-06-18 23:00:06','2024-06-18 23:00:06',NULL),(16,0,'customers',NULL,'customers',0,'2024-06-18 23:00:42','2024-06-18 23:00:42',NULL); /*!40000 ALTER TABLE `media_folders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `media_settings` -- DROP TABLE IF EXISTS `media_settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `media_settings` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `key` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `value` text COLLATE utf8mb4_unicode_ci, `media_id` bigint unsigned DEFAULT NULL, `user_id` bigint unsigned DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL 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 `media_settings` -- LOCK TABLES `media_settings` WRITE; /*!40000 ALTER TABLE `media_settings` DISABLE KEYS */; /*!40000 ALTER TABLE `media_settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `menu_locations` -- DROP TABLE IF EXISTS `menu_locations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `menu_locations` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `menu_id` bigint unsigned NOT NULL, `location` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `menu_locations_menu_id_created_at_index` (`menu_id`,`created_at`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `menu_locations` -- LOCK TABLES `menu_locations` WRITE; /*!40000 ALTER TABLE `menu_locations` DISABLE KEYS */; INSERT INTO `menu_locations` VALUES (1,1,'main-menu','2024-06-18 22:59:55','2024-06-18 22:59:55'); /*!40000 ALTER TABLE `menu_locations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `menu_nodes` -- DROP TABLE IF EXISTS `menu_nodes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `menu_nodes` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `menu_id` bigint unsigned NOT NULL, `parent_id` bigint unsigned NOT NULL DEFAULT '0', `reference_id` bigint unsigned DEFAULT NULL, `reference_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `icon_font` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `position` tinyint unsigned NOT NULL DEFAULT '0', `title` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `css_class` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `target` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '_self', `has_child` tinyint unsigned NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `menu_nodes_menu_id_index` (`menu_id`), KEY `menu_nodes_parent_id_index` (`parent_id`), KEY `reference_id` (`reference_id`), KEY `reference_type` (`reference_type`) ) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `menu_nodes` -- LOCK TABLES `menu_nodes` WRITE; /*!40000 ALTER TABLE `menu_nodes` DISABLE KEYS */; INSERT INTO `menu_nodes` VALUES (1,1,0,NULL,NULL,'/',NULL,0,'Home',NULL,'_self',1,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(2,1,1,NULL,NULL,'https://apexa.archielite.com',NULL,0,'Business',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(3,1,1,NULL,NULL,'https://apexa-finance.archielite.com',NULL,0,'Finance',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(4,1,1,NULL,NULL,'https://apexa-consulting.archielite.com',NULL,0,'Consulting',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(5,1,1,NULL,NULL,'https://apexa-insurance.archielite.com',NULL,0,'Insurance',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(6,1,1,NULL,NULL,'https://apexa-digital-agency.archielite.com',NULL,0,'Digital Agency',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(7,1,1,NULL,NULL,'https://apexa-finance-solutions.archielite.com',NULL,0,'Finance Solutions',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(8,1,1,NULL,NULL,'https://apexa-accounting-services.archielite.com',NULL,0,'Accounting Services',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(9,1,1,NULL,NULL,'https://apexa-it-solutions.archielite.com',NULL,0,'IT Solutions',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(10,1,0,NULL,NULL,'/',NULL,0,'About Us',NULL,'_self',1,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(11,1,10,4,'Botble\\Page\\Models\\Page','/business-about',NULL,0,'Business About',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(12,1,10,5,'Botble\\Page\\Models\\Page','/finance-about',NULL,0,'Finance About',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(13,1,10,6,'Botble\\Page\\Models\\Page','/consulting-about',NULL,0,'Consulting About',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(14,1,10,7,'Botble\\Page\\Models\\Page','/insurance-about',NULL,0,'Insurance About',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(15,1,10,8,'Botble\\Page\\Models\\Page','/digital-agency-about',NULL,0,'Digital agency About',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(16,1,0,NULL,NULL,'/',NULL,0,'Services',NULL,'_self',1,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(17,1,16,9,'Botble\\Page\\Models\\Page','/services',NULL,0,'Business Service',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(18,1,16,10,'Botble\\Page\\Models\\Page','/finance-service',NULL,0,'Finance Service',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(19,1,16,11,'Botble\\Page\\Models\\Page','/consulting-service',NULL,0,'Consulting Service',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(20,1,16,13,'Botble\\Page\\Models\\Page','/insurance-service',NULL,0,'Insurance Service',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(21,1,16,12,'Botble\\Page\\Models\\Page','/digital-agency-service',NULL,0,'Digital Agency Service',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(22,1,16,NULL,NULL,'/services/data-analyst',NULL,0,'Service Details One',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(23,1,0,NULL,NULL,'/',NULL,0,'Pages',NULL,'_self',1,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(24,1,23,NULL,NULL,'/careers',NULL,0,'Careers',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(25,1,23,NULL,NULL,'/careers/lead-backend-developer',NULL,0,'Career Details',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(26,1,23,14,'Botble\\Page\\Models\\Page','/team-one',NULL,0,'Team One',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(27,1,23,15,'Botble\\Page\\Models\\Page','/team-two',NULL,0,'Team Two',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(28,1,23,16,'Botble\\Page\\Models\\Page','/team-three',NULL,0,'Team Three',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(29,1,23,17,'Botble\\Page\\Models\\Page','/team-four',NULL,0,'Team Four',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(30,1,23,NULL,NULL,'/teams/devon-lane',NULL,0,'Team Details',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(31,1,23,NULL,NULL,'/projects/strategic-planning',NULL,0,'Project Details',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(32,1,23,NULL,NULL,'/products',NULL,0,'Product List',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(33,1,23,NULL,NULL,'/products/kelloggs-coco-pops-cereal-digital',NULL,0,'Product Details',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(34,1,23,NULL,NULL,'/404',NULL,0,'404 Error Page',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(35,1,23,NULL,NULL,'/login',NULL,0,'Login Page',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(36,1,23,NULL,NULL,'/resister',NULL,0,'Register Page',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(37,1,23,NULL,NULL,'/password/reset',NULL,0,'Forgot password Page',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(38,1,0,NULL,NULL,'/',NULL,0,'Blogs',NULL,'_self',1,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(39,1,38,3,'Botble\\Page\\Models\\Page','/blog',NULL,0,'Our Blog',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(40,1,38,NULL,NULL,'/the-art-of-negotiation-winning-deals-and-building-relationships',NULL,0,'Blog Details',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'),(41,1,0,2,'Botble\\Page\\Models\\Page','/contact-us',NULL,0,'Contact Us',NULL,'_self',0,'2024-06-18 22:59:55','2024-06-18 22:59:55'); /*!40000 ALTER TABLE `menu_nodes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `menus` -- DROP TABLE IF EXISTS `menus`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `menus` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `menus_slug_unique` (`slug`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `menus` -- LOCK TABLES `menus` WRITE; /*!40000 ALTER TABLE `menus` DISABLE KEYS */; INSERT INTO `menus` VALUES (1,'Main menu','main-menu','published','2024-06-18 22:59:55','2024-06-18 22:59:55'); /*!40000 ALTER TABLE `menus` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `meta_boxes` -- DROP TABLE IF EXISTS `meta_boxes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `meta_boxes` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `meta_key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `meta_value` text COLLATE utf8mb4_unicode_ci, `reference_id` bigint unsigned NOT NULL, `reference_type` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `meta_boxes_reference_id_index` (`reference_id`) ) ENGINE=InnoDB AUTO_INCREMENT=128 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `meta_boxes` -- LOCK TABLES `meta_boxes` WRITE; /*!40000 ALTER TABLE `meta_boxes` DISABLE KEYS */; INSERT INTO `meta_boxes` VALUES (1,'action_label','[\"Get The Plan Now\"]',1,'Botble\\Portfolio\\Models\\Package','2024-06-18 23:00:04','2024-06-18 23:00:04'),(2,'action_url','[\"\\/contact-us\"]',1,'Botble\\Portfolio\\Models\\Package','2024-06-18 23:00:04','2024-06-18 23:00:04'),(3,'action_label','[\"Get The Plan Now\"]',2,'Botble\\Portfolio\\Models\\Package','2024-06-18 23:00:04','2024-06-18 23:00:04'),(4,'action_url','[\"\\/contact-us\"]',2,'Botble\\Portfolio\\Models\\Package','2024-06-18 23:00:04','2024-06-18 23:00:04'),(5,'action_label','[\"Get The Plan Now\"]',3,'Botble\\Portfolio\\Models\\Package','2024-06-18 23:00:04','2024-06-18 23:00:04'),(6,'action_url','[\"\\/contact-us\"]',3,'Botble\\Portfolio\\Models\\Package','2024-06-18 23:00:04','2024-06-18 23:00:04'),(7,'category','[\"Business Services\"]',1,'Botble\\Portfolio\\Models\\Project','2024-06-18 23:00:04','2024-06-18 23:00:04'),(8,'category','[\"Business Strategy\"]',2,'Botble\\Portfolio\\Models\\Project','2024-06-18 23:00:04','2024-06-18 23:00:04'),(9,'category','[\"Business Services\"]',3,'Botble\\Portfolio\\Models\\Project','2024-06-18 23:00:04','2024-06-18 23:00:04'),(10,'category','[\"Inventory Tracking\"]',4,'Botble\\Portfolio\\Models\\Project','2024-06-18 23:00:04','2024-06-18 23:00:04'),(11,'category','[\"Inventory Tracking\"]',5,'Botble\\Portfolio\\Models\\Project','2024-06-18 23:00:04','2024-06-18 23:00:04'),(12,'category','[\"Business Services\"]',6,'Botble\\Portfolio\\Models\\Project','2024-06-18 23:00:04','2024-06-18 23:00:04'),(13,'category','[\"Business Strategy\"]',7,'Botble\\Portfolio\\Models\\Project','2024-06-18 23:00:04','2024-06-18 23:00:04'),(14,'category','[\"Business Strategy\"]',8,'Botble\\Portfolio\\Models\\Project','2024-06-18 23:00:04','2024-06-18 23:00:04'),(15,'category','[\"Business Services\"]',9,'Botble\\Portfolio\\Models\\Project','2024-06-18 23:00:04','2024-06-18 23:00:04'),(16,'icon','[\"ti ti-briefcase\"]',1,'Botble\\Portfolio\\Models\\ServiceCategory','2024-06-18 23:00:04','2024-06-18 23:00:04'),(17,'icon','[\"ti ti-square-percentage\"]',2,'Botble\\Portfolio\\Models\\ServiceCategory','2024-06-18 23:00:04','2024-06-18 23:00:04'),(18,'icon','[\"ti ti-layers-subtract\"]',3,'Botble\\Portfolio\\Models\\ServiceCategory','2024-06-18 23:00:04','2024-06-18 23:00:04'),(19,'icon','[\"ti ti-timeline\"]',4,'Botble\\Portfolio\\Models\\ServiceCategory','2024-06-18 23:00:04','2024-06-18 23:00:04'),(20,'icon','[\"ti ti-briefcase\"]',1,'Botble\\Portfolio\\Models\\Service','2024-06-18 23:00:04','2024-06-18 23:00:04'),(21,'icon','[\"ti ti-calendar-week\"]',2,'Botble\\Portfolio\\Models\\Service','2024-06-18 23:00:04','2024-06-18 23:00:04'),(22,'icon','[\"ti ti-coin\"]',3,'Botble\\Portfolio\\Models\\Service','2024-06-18 23:00:04','2024-06-18 23:00:04'),(23,'icon','[\"ti ti-layers-subtract\"]',4,'Botble\\Portfolio\\Models\\Service','2024-06-18 23:00:05','2024-06-18 23:00:05'),(24,'icon','[\"ti ti-brand-databricks\"]',5,'Botble\\Portfolio\\Models\\Service','2024-06-18 23:00:05','2024-06-18 23:00:05'),(25,'icon','[\"ti ti-report-analytics\"]',6,'Botble\\Portfolio\\Models\\Service','2024-06-18 23:00:05','2024-06-18 23:00:05'),(26,'icon','[\"ti ti-moneybag\"]',7,'Botble\\Portfolio\\Models\\Service','2024-06-18 23:00:05','2024-06-18 23:00:05'),(27,'icon','[\"ti ti-layers-subtract\"]',8,'Botble\\Portfolio\\Models\\Service','2024-06-18 23:00:05','2024-06-18 23:00:05'),(28,'icon','[\"ti ti-moneybag\"]',9,'Botble\\Portfolio\\Models\\Service','2024-06-18 23:00:05','2024-06-18 23:00:05'),(29,'icon','[\"ti ti-heart-handshake\"]',10,'Botble\\Portfolio\\Models\\Service','2024-06-18 23:00:05','2024-06-18 23:00:05'),(30,'icon','[\"ti ti-code-circle\"]',11,'Botble\\Portfolio\\Models\\Service','2024-06-18 23:00:05','2024-06-18 23:00:05'),(31,'icon','[\"ti ti-presentation\"]',12,'Botble\\Portfolio\\Models\\Service','2024-06-18 23:00:05','2024-06-18 23:00:05'),(32,'icon','[\"ti ti-brand-funimation\"]',13,'Botble\\Portfolio\\Models\\Service','2024-06-18 23:00:05','2024-06-18 23:00:05'),(33,'subtitle','[\"We Are Expert In This Field\"]',1,'Botble\\SimpleSlider\\Models\\SimpleSliderItem','2024-06-18 23:00:05','2024-06-18 23:00:05'),(34,'button_label','[\"Free Consulting\"]',1,'Botble\\SimpleSlider\\Models\\SimpleSliderItem','2024-06-18 23:00:05','2024-06-18 23:00:05'),(35,'data_count','[15]',1,'Botble\\SimpleSlider\\Models\\SimpleSliderItem','2024-06-18 23:00:05','2024-06-18 23:00:05'),(36,'data_count_description','[\"Years of applying <br> digital transformation\"]',1,'Botble\\SimpleSlider\\Models\\SimpleSliderItem','2024-06-18 23:00:05','2024-06-18 23:00:05'),(37,'subtitle','[\"Actionable Analytics & Reporting\"]',2,'Botble\\SimpleSlider\\Models\\SimpleSliderItem','2024-06-18 23:00:05','2024-06-18 23:00:05'),(38,'button_label','[\"Learn More\"]',2,'Botble\\SimpleSlider\\Models\\SimpleSliderItem','2024-06-18 23:00:05','2024-06-18 23:00:05'),(39,'data_count','[25]',2,'Botble\\SimpleSlider\\Models\\SimpleSliderItem','2024-06-18 23:00:05','2024-06-18 23:00:05'),(40,'data_count_description','[\"Years Experiences <br> in this field\"]',2,'Botble\\SimpleSlider\\Models\\SimpleSliderItem','2024-06-18 23:00:05','2024-06-18 23:00:05'),(41,'rating_star','[5]',1,'Botble\\Testimonial\\Models\\Testimonial','2024-06-18 23:00:05','2024-06-18 23:00:05'),(42,'rating_star','[5]',2,'Botble\\Testimonial\\Models\\Testimonial','2024-06-18 23:00:05','2024-06-18 23:00:05'),(43,'rating_star','[5]',3,'Botble\\Testimonial\\Models\\Testimonial','2024-06-18 23:00:05','2024-06-18 23:00:05'),(44,'rating_star','[5]',4,'Botble\\Testimonial\\Models\\Testimonial','2024-06-18 23:00:05','2024-06-18 23:00:05'),(45,'image','[\"careers\\/banner.jpg\"]',1,'ArchiElite\\Career\\Models\\Career','2024-06-18 23:00:06','2024-06-18 23:00:06'),(46,'icon','[\"ti ti-chart-bar\"]',1,'ArchiElite\\Career\\Models\\Career','2024-06-18 23:00:06','2024-06-18 23:00:06'),(47,'apply_url','[\"\\/contact-us\"]',1,'ArchiElite\\Career\\Models\\Career','2024-06-18 23:00:06','2024-06-18 23:00:06'),(48,'image','[\"careers\\/banner.jpg\"]',2,'ArchiElite\\Career\\Models\\Career','2024-06-18 23:00:06','2024-06-18 23:00:06'),(49,'icon','[\"ti ti-replace\"]',2,'ArchiElite\\Career\\Models\\Career','2024-06-18 23:00:06','2024-06-18 23:00:06'),(50,'apply_url','[\"\\/contact-us\"]',2,'ArchiElite\\Career\\Models\\Career','2024-06-18 23:00:06','2024-06-18 23:00:06'),(51,'image','[\"careers\\/banner.jpg\"]',3,'ArchiElite\\Career\\Models\\Career','2024-06-18 23:00:06','2024-06-18 23:00:06'),(52,'icon','[\"ti ti-components\"]',3,'ArchiElite\\Career\\Models\\Career','2024-06-18 23:00:06','2024-06-18 23:00:06'),(53,'apply_url','[\"\\/contact-us\"]',3,'ArchiElite\\Career\\Models\\Career','2024-06-18 23:00:06','2024-06-18 23:00:06'),(54,'image','[\"careers\\/banner.jpg\"]',4,'ArchiElite\\Career\\Models\\Career','2024-06-18 23:00:06','2024-06-18 23:00:06'),(55,'icon','[\"ti ti-brand-deezer\"]',4,'ArchiElite\\Career\\Models\\Career','2024-06-18 23:00:06','2024-06-18 23:00:06'),(56,'apply_url','[\"\\/contact-us\"]',4,'ArchiElite\\Career\\Models\\Career','2024-06-18 23:00:06','2024-06-18 23:00:06'),(57,'image','[\"careers\\/banner.jpg\"]',5,'ArchiElite\\Career\\Models\\Career','2024-06-18 23:00:06','2024-06-18 23:00:06'),(58,'icon','[\"ti ti-video\"]',5,'ArchiElite\\Career\\Models\\Career','2024-06-18 23:00:06','2024-06-18 23:00:06'),(59,'apply_url','[\"\\/contact-us\"]',5,'ArchiElite\\Career\\Models\\Career','2024-06-18 23:00:06','2024-06-18 23:00:06'),(60,'image','[\"careers\\/banner.jpg\"]',6,'ArchiElite\\Career\\Models\\Career','2024-06-18 23:00:06','2024-06-18 23:00:06'),(61,'icon','[\"ti ti-device-desktop-code\"]',6,'ArchiElite\\Career\\Models\\Career','2024-06-18 23:00:06','2024-06-18 23:00:06'),(62,'apply_url','[\"\\/contact-us\"]',6,'ArchiElite\\Career\\Models\\Career','2024-06-18 23:00:06','2024-06-18 23:00:06'),(63,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',1,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(64,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',2,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(65,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',3,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(66,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',4,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(67,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',5,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(68,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',6,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(69,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',7,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(70,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',8,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(71,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',9,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(72,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',10,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(73,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',11,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(74,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',12,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(75,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',13,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(76,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',14,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(77,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',15,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(78,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',16,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(79,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',17,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(80,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',18,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(81,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',19,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(82,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',20,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(83,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',21,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(84,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',22,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(85,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',23,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(86,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',24,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(87,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',25,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(88,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',26,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(89,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',27,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(90,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',28,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(91,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',29,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(92,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',30,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(93,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',31,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(94,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',32,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(95,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',33,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(96,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',34,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(97,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',35,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(98,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',36,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(99,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',37,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(100,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',38,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(101,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',39,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(102,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',40,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(103,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',41,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(104,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',42,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(105,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',43,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(106,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',44,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(107,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',45,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(108,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',46,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(109,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',47,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(110,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',48,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(111,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',49,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(112,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',50,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(113,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',51,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(114,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',52,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(115,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',53,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(116,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',54,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(117,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',55,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(118,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',56,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(119,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',57,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(120,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',58,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(121,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',59,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(122,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',60,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(123,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',61,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(124,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',62,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(125,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',63,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(126,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',64,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:40','2024-06-18 23:00:40'),(127,'faq_schema_config','[[[{\"key\":\"question\",\"value\":\"What Shipping Methods Are Available?\"},{\"key\":\"answer\",\"value\":\"Ex Portland Pitchfork irure mustache. Eutra fap before they sold out literally. Aliquip ugh bicycle rights actually mlkshk, seitan squid craft beer tempor.\"}],[{\"key\":\"question\",\"value\":\"Do You Ship Internationally?\"},{\"key\":\"answer\",\"value\":\"Hoodie tote bag mixtape tofu. Typewriter jean shorts wolf quinoa, messenger bag organic freegan cray.\"}],[{\"key\":\"question\",\"value\":\"How Long Will It Take To Get My Package?\"},{\"key\":\"answer\",\"value\":\"Swag slow-carb quinoa VHS typewriter pork belly brunch, paleo single-origin coffee Wes Anderson. Flexitarian Pitchfork forage, literally paleo fap pour-over. Wes Anderson Pinterest YOLO fanny pack meggings, deep v XOXO chambray sustainable slow-carb raw denim church-key fap chillwave Etsy. +1 typewriter kitsch, American Apparel tofu Banksy Vice.\"}],[{\"key\":\"question\",\"value\":\"What Payment Methods Are Accepted?\"},{\"key\":\"answer\",\"value\":\"Fashion axe DIY jean shorts, swag kale chips meh polaroid kogi butcher Wes Anderson chambray next level semiotics gentrify yr. Voluptate photo booth fugiat Vice. Austin sed Williamsburg, ea labore raw denim voluptate cred proident mixtape excepteur mustache. Twee chia photo booth readymade food truck, hoodie roof party swag keytar PBR DIY.\"}],[{\"key\":\"question\",\"value\":\"Is Buying On-Line Safe?\"},{\"key\":\"answer\",\"value\":\"Art party authentic freegan semiotics jean shorts chia cred. Neutra Austin roof party Brooklyn, synth Thundercats swag 8-bit photo booth. Plaid letterpress leggings craft beer meh ethical Pinterest.\"}]]]',65,'Botble\\Ecommerce\\Models\\Product','2024-06-18 23:00:41','2024-06-18 23:00:41'); /*!40000 ALTER TABLE `meta_boxes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `migrations` -- DROP TABLE IF EXISTS `migrations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `migrations` ( `id` int unsigned NOT NULL AUTO_INCREMENT, `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `batch` int NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=193 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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` VALUES (1,'2013_04_09_032329_create_base_tables',1),(2,'2013_04_09_062329_create_revisions_table',1),(3,'2014_10_12_000000_create_users_table',1),(4,'2014_10_12_100000_create_password_reset_tokens_table',1),(5,'2015_06_18_033822_create_blog_table',1),(6,'2015_06_29_025744_create_audit_history',1),(7,'2016_06_10_230148_create_acl_tables',1),(8,'2016_06_14_230857_create_menus_table',1),(9,'2016_06_17_091537_create_contacts_table',1),(10,'2016_06_28_221418_create_pages_table',1),(11,'2016_10_03_032336_create_languages_table',1),(12,'2016_10_05_074239_create_setting_table',1),(13,'2016_10_07_193005_create_translations_table',1),(14,'2016_10_13_150201_create_galleries_table',1),(15,'2016_11_28_032840_create_dashboard_widget_tables',1),(16,'2016_12_16_084601_create_widgets_table',1),(17,'2017_05_09_070343_create_media_tables',1),(18,'2017_05_18_080441_create_payment_tables',1),(19,'2017_07_11_140018_create_simple_slider_table',1),(20,'2017_10_24_154832_create_newsletter_table',1),(21,'2017_11_03_070450_create_slug_table',1),(22,'2018_07_09_214610_create_testimonial_table',1),(23,'2018_07_09_221238_create_faq_table',1),(24,'2019_01_05_053554_create_jobs_table',1),(25,'2019_06_24_211801_create_career_table',1),(26,'2019_08_19_000000_create_failed_jobs_table',1),(27,'2019_11_18_061011_create_country_table',1),(28,'2019_12_14_000001_create_personal_access_tokens_table',1),(29,'2020_03_05_041139_create_ecommerce_tables',1),(30,'2021_01_01_044147_ecommerce_create_flash_sale_table',1),(31,'2021_01_17_082713_add_column_is_featured_to_product_collections_table',1),(32,'2021_01_18_024333_add_zip_code_into_table_customer_addresses',1),(33,'2021_02_16_092633_remove_default_value_for_author_type',1),(34,'2021_02_18_073505_update_table_ec_reviews',1),(35,'2021_03_10_024419_add_column_confirmed_at_to_table_ec_customers',1),(36,'2021_03_10_025153_change_column_tax_amount',1),(37,'2021_03_20_033103_add_column_availability_to_table_ec_products',1),(38,'2021_03_27_144913_add_customer_type_into_table_payments',1),(39,'2021_04_28_074008_ecommerce_create_product_label_table',1),(40,'2021_05_24_034720_make_column_currency_nullable',1),(41,'2021_05_31_173037_ecommerce_create_ec_products_translations',1),(42,'2021_08_09_161302_add_metadata_column_to_payments_table',1),(43,'2021_08_17_105016_remove_column_currency_id_in_some_tables',1),(44,'2021_08_30_142128_add_images_column_to_ec_reviews_table',1),(45,'2021_10_04_030050_add_column_created_by_to_table_ec_products',1),(46,'2021_10_05_122616_add_status_column_to_ec_customers_table',1),(47,'2021_10_19_020859_update_metadata_field',1),(48,'2021_10_25_021023_fix-priority-load-for-language-advanced',1),(49,'2021_11_03_025806_nullable_phone_number_in_ec_customer_addresses',1),(50,'2021_11_23_071403_correct_languages_for_product_variations',1),(51,'2021_11_28_031808_add_product_tags_translations',1),(52,'2021_12_01_031123_add_featured_image_to_ec_products',1),(53,'2021_12_03_030600_create_blog_translations',1),(54,'2021_12_03_075608_create_page_translations',1),(55,'2021_12_03_082134_create_faq_translations',1),(56,'2021_12_03_082953_create_gallery_translations',1),(57,'2021_12_03_083642_create_testimonials_translations',1),(58,'2021_12_03_084118_create_location_translations',1),(59,'2021_12_03_094518_migrate_old_location_data',1),(60,'2021_12_04_095357_create_careers_translations_table',1),(61,'2021_12_10_034440_switch_plugin_location_to_use_language_advanced',1),(62,'2022_01_01_033107_update_table_ec_shipments',1),(63,'2022_01_16_085908_improve_plugin_location',1),(64,'2022_02_16_042457_improve_product_attribute_sets',1),(65,'2022_03_22_075758_correct_product_name',1),(66,'2022_04_19_113334_add_index_to_ec_products',1),(67,'2022_04_19_113923_add_index_to_table_posts',1),(68,'2022_04_20_100851_add_index_to_media_table',1),(69,'2022_04_20_101046_add_index_to_menu_table',1),(70,'2022_04_28_144405_remove_unused_table',1),(71,'2022_04_30_034048_create_gallery_meta_translations_table',1),(72,'2022_05_05_115015_create_ec_customer_recently_viewed_products_table',1),(73,'2022_05_18_143720_add_index_to_table_ec_product_categories',1),(74,'2022_06_16_095633_add_index_to_some_tables',1),(75,'2022_06_28_151901_activate_paypal_stripe_plugin',1),(76,'2022_06_30_035148_create_order_referrals_table',1),(77,'2022_07_07_153354_update_charge_id_in_table_payments',1),(78,'2022_07_10_034813_move_lang_folder_to_root',1),(79,'2022_07_24_153815_add_completed_at_to_ec_orders_table',1),(80,'2022_08_04_051940_add_missing_column_expires_at',1),(81,'2022_08_04_052122_delete_location_backup_tables',1),(82,'2022_08_14_032836_create_ec_order_returns_table',1),(83,'2022_08_14_033554_create_ec_order_return_items_table',1),(84,'2022_08_15_040324_add_billing_address',1),(85,'2022_08_30_091114_support_digital_products_table',1),(86,'2022_09_01_000001_create_admin_notifications_tables',1),(87,'2022_09_13_095744_create_options_table',1),(88,'2022_09_13_104347_create_option_value_table',1),(89,'2022_10_05_163518_alter_table_ec_order_product',1),(90,'2022_10_12_041517_create_invoices_table',1),(91,'2022_10_12_142226_update_orders_table',1),(92,'2022_10_13_024916_update_table_order_returns',1),(93,'2022_10_14_024629_drop_column_is_featured',1),(94,'2022_10_21_030830_update_columns_in_ec_shipments_table',1),(95,'2022_10_28_021046_update_columns_in_ec_shipments_table',1),(96,'2022_11_02_092723_team_create_team_table',1),(97,'2022_11_16_034522_update_type_column_in_ec_shipping_rules_table',1),(98,'2022_11_18_063357_add_missing_timestamp_in_table_settings',1),(99,'2022_11_19_041643_add_ec_tax_product_table',1),(100,'2022_12_02_093615_update_slug_index_columns',1),(101,'2022_12_12_063830_update_tax_defadult_in_ec_tax_products_table',1),(102,'2022_12_17_041532_fix_address_in_order_invoice',1),(103,'2022_12_26_070329_create_ec_product_views_table',1),(104,'2023_01_04_033051_fix_product_categories',1),(105,'2023_01_09_050400_add_ec_global_options_translations_table',1),(106,'2023_01_10_093754_add_missing_option_value_id',1),(107,'2023_01_17_082713_add_column_barcode_and_cost_per_item_to_product_table',1),(108,'2023_01_26_021854_add_ec_customer_used_coupons_table',1),(109,'2023_01_30_024431_add_alt_to_media_table',1),(110,'2023_02_08_015900_update_options_column_in_ec_order_product_table',1),(111,'2023_02_16_042611_drop_table_password_resets',1),(112,'2023_02_27_095752_remove_duplicate_reviews',1),(113,'2023_03_20_115757_add_user_type_column_to_ec_shipment_histories_table',1),(114,'2023_04_21_082427_create_ec_product_categorizables_table',1),(115,'2023_04_23_005903_add_column_permissions_to_admin_notifications',1),(116,'2023_04_23_061847_increase_state_translations_abbreviation_column',1),(117,'2023_05_03_011331_add_missing_column_price_into_invoice_items_table',1),(118,'2023_05_10_075124_drop_column_id_in_role_users_table',1),(119,'2023_05_17_025812_fix_invoice_issue',1),(120,'2023_05_26_073140_move_option_make_phone_field_optional_at_checkout_page_to_mandatory_fields',1),(121,'2023_05_27_144611_fix_exchange_rate_setting',1),(122,'2023_06_22_084331_add_generate_license_code_to_ec_products_table',1),(123,'2023_06_30_042512_create_ec_order_tax_information_table',1),(124,'2023_07_06_011444_create_slug_translations_table',1),(125,'2023_07_14_022724_remove_column_id_from_ec_product_collection_products',1),(126,'2023_07_25_072632_create_portfolio_tables',1),(127,'2023_07_26_041451_add_more_columns_to_location_table',1),(128,'2023_07_27_041451_add_more_columns_to_location_translation_table',1),(129,'2023_08_03_041207_remove_unused_plugins',1),(130,'2023_08_06_070140_fix_shortcode_name',1),(131,'2023_08_09_012940_remove_column_status_in_ec_product_attributes',1),(132,'2023_08_09_035520_activate_business_services_plugin',1),(133,'2023_08_10_030324_migrate_old_shortcodes',1),(134,'2023_08_11_060908_create_announcements_table',1),(135,'2023_08_11_094574_update_team_table',1),(136,'2023_08_15_064505_create_ec_tax_rules_table',1),(137,'2023_08_15_073307_drop_unique_in_states_cities_translations',1),(138,'2023_08_21_021819_make_column_address_in_ec_customer_addresses_nullable',1),(139,'2023_08_21_090810_make_page_content_nullable',1),(140,'2023_08_22_094114_drop_unique_for_barcode',1),(141,'2023_08_29_074620_make_column_author_id_nullable',1),(142,'2023_08_29_075308_make_column_user_id_nullable',1),(143,'2023_08_30_031811_add_apply_via_url_column_to_ec_discounts_table',1),(144,'2023_09_07_094312_add_index_to_product_sku_and_translations',1),(145,'2023_09_11_023233_create_pf_custom_fields_table',1),(146,'2023_09_13_042633_add_columns_to_pf_projects_table',1),(147,'2023_09_13_044041_create_pf_project_categories_table',1),(148,'2023_09_14_021936_update_index_for_slugs_table',1),(149,'2023_09_14_022423_add_index_for_language_table',1),(150,'2023_09_19_024955_create_discount_product_categories_table',1),(151,'2023_09_20_050420_add_missing_translation_column',1),(152,'2023_09_22_061723_create_custom_fields_translations_table',1),(153,'2023_09_22_343531_remove_project_categories_table',1),(154,'2023_10_17_070728_add_icon_and_icon_image_to_product_categories_table',1),(155,'2023_10_21_065016_make_state_id_in_table_cities_nullable',1),(156,'2023_11_05_081701_fix_projects_table',1),(157,'2023_11_10_080225_migrate_contact_blacklist_email_domains_to_core',1),(158,'2023_11_14_033417_change_request_column_in_table_audit_histories',1),(159,'2023_11_17_063408_add_description_column_to_faq_categories_table',1),(160,'2023_11_22_154643_add_unique_in_table_ec_products_variations',1),(161,'2023_11_27_032313_add_price_columns_to_ec_product_cross_sale_relations_table',1),(162,'2023_11_30_085354_add_missing_description_to_team',1),(163,'2023_12_06_023945_add_display_on_checkout_column_to_ec_discounts_table',1),(164,'2023_12_06_100448_change_random_hash_for_media',1),(165,'2023_12_07_095130_add_color_column_to_media_folders_table',1),(166,'2023_12_12_105220_drop_translations_table',1),(167,'2023_12_17_162208_make_sure_column_color_in_media_folders_nullable',1),(168,'2023_12_25_040604_ec_create_review_replies_table',1),(169,'2023_12_26_090340_add_private_notes_column_to_ec_customers_table',1),(170,'2024_01_07_072057_update_theme_option_for_login_page',1),(171,'2024_01_16_050056_create_comments_table',1),(172,'2024_01_16_070706_fix_translation_tables',1),(173,'2024_01_23_075227_add_proof_file_to_ec_orders_table',1),(174,'2024_03_20_080001_migrate_change_attribute_email_to_nullable_form_contacts_table',1),(175,'2024_03_25_000001_update_captcha_settings_for_contact',1),(176,'2024_03_25_000001_update_captcha_settings_for_newsletter',1),(177,'2024_03_26_041531_add_cancel_reason_to_ec_orders_table',1),(178,'2024_03_27_062402_create_ec_customer_deletion_requests_table',1),(179,'2024_03_29_042242_migrate_old_captcha_settings',1),(180,'2024_03_29_093946_create_ec_order_return_histories_table',1),(181,'2024_04_01_063523_add_customer_columns_to_ec_reviews_table',1),(182,'2024_04_04_110758_update_value_column_in_user_meta_table',1),(183,'2024_04_15_092654_migrate_ecommerce_google_tag_manager_code_setting',1),(184,'2024_04_16_035713_add_min_max_order_quantity_columns_to_products_table',1),(185,'2024_04_19_063914_create_custom_fields_table',1),(186,'2024_04_27_100730_improve_analytics_setting',1),(187,'2024_05_07_073153_improve_table_wishlist',1),(188,'2024_05_07_093703_add_missing_zip_code_into_table_store_locators',1),(189,'2024_05_12_091229_add_column_visibility_to_table_media_files',1),(190,'2024_05_15_021503_fix_invoice_path',1),(191,'2024_05_16_060328_add_projects_translations_table',1),(192,'2024_05_16_100000_change_random_hash_for_media',1); /*!40000 ALTER TABLE `migrations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `newsletters` -- DROP TABLE IF EXISTS `newsletters`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `newsletters` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `email` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'subscribed', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL 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 `newsletters` -- LOCK TABLES `newsletters` WRITE; /*!40000 ALTER TABLE `newsletters` DISABLE KEYS */; /*!40000 ALTER TABLE `newsletters` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pages` -- DROP TABLE IF EXISTS `pages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `pages` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `content` longtext COLLATE utf8mb4_unicode_ci, `user_id` bigint unsigned DEFAULT NULL, `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `template` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `pages_user_id_index` (`user_id`) ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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` VALUES (1,'Homepage','[hero-banner-slider title="Accounting platformusing AI technology" subtitle="BEST ACCOUNTING SERVICES" description="Empower decision-making with real-time financial reporting" simple_slider_key="home-slider" quantity="4" title_1="Best For IT Consulting" title_2="Our Vision, Our Mission" title_3="Save Money & Time" title_4="100% Satisfaction" team_title="Trusted , Happy & Satisfied Businesses" team_image="general/hero-banner-slider-team.png" background_color="rgb(236, 246, 250)"][/hero-banner-slider][brands name_1="Door Dash" image_1="brands/1.png" url_1="/" name_2="Discord" image_2="brands/1.png" url_2="/" name_3="Airbnb" image_3="brands/1.png" url_3="/" name_4="Norton" image_4="brands/1.png" url_4="/" name_5="Naturewave" image_5="brands/1.png" url_5="/" quantity="5" background_color="transparent" enable_lazy_loading="yes"][/brands][about-us-information style="style-7" title="We Offer Business Insight World Class Consulting" subtitle="WHY WE ARE THE BEST" description="We successfully cope with tasks of varying complexity provide area longerty guarantees and regularly master new Practice Following gies heur portfolio includes." image="general/about-us-information-7.png" quantity="2" title_1="Finance Planning" description_1="Apexa helps youcona doing tempor incididunt." icon_1="ti ti-chart-bar" title_2="Market Analysis" description_2="Apexa helps youcona doing tempor incididunt." icon_2="ti ti-coins" background_color="transparent" enable_lazy_loading="yes"][/about-us-information][services style="style-6" title="Expert Financial and Accounting Services for Businesses" subtitle="OUR SOLUTIONS" service_ids="1,3,4,5" background_color="rgb(236, 246, 250)" enable_lazy_loading="yes"][/services][instruction-steps title="Engage With Us For Financial And Accounting Services With This Step-By-Step Guide" description="Discover how our company can help your business with our comprehensive financial and accounting services. From bookkeeping to tax planning, we have you covered. Contact us today to get started." quantity="3" title_1="Step 1: Initial Consultation" description_1="Schedule a consultation with our experts to discuss your business needs and goals." icon_1="ti ti-chart-pie" button_label_1="Read More" button_url_1="/contact-us" title_2="Step 2: Initial Consultation" description_2="Schedule a consultation with our experts to discuss your business needs and goals." icon_2="ti ti-bulb" button_label_2="Read more" button_url_2="/contact-us" title_3="Step 3: Initial Consultation" description_3="Schedule a consultation with our experts to discuss your business needs and goals." icon_3="ti ti-rocket" button_label_3="Read More" button_url_3="/contact-us" background_color="rgb(20, 23, 108)"][/instruction-steps][services style="style-1" title="Transforming Businesses with <span> Financial Excellence" subtitle="FEATURES PROJECTS" service_ids="1,2,3,4" button_label="See All Services" button_url="/" background_color="transparent" enable_lazy_loading="yes"][/services][site-statistics style="style-2" title="Our Journey Towards <span> Financial Excellence" subtitle="FEATURES PROJECTS" description="With a track record of success, we have served numerous clients worldwide, providing top-notch financial and accounting services." button_label="See All Services" button_url="/services" quantity="4" title_1="Successfully Completed Projects" data_1="45" unit_1="+" image_1="icons/trophy.png" title_2="Satisfied 100% Our Clients" data_2="92" unit_2="K" image_2="icons/star.png" title_3="All Over The World We Are Available" data_3="19" unit_3="+" image_3="icons/popularity.png" title_4="Years of Experiences To Run This Company" data_4="25" unit_4="+" image_4="icons/time.png" background_image="backgrounds/contact-block-bg-3.png" background_color="rgb(20, 23, 108)"][/site-statistics][testimonials style="style-6" title="What are They Saying About Our Company" subtitle="FEATURES PROJECTS" testimonial_ids="1,2,3,4" background_color="transparent" enable_lazy_loading="yes"][/testimonials][about-us-information style="style-16" title="Business Growth Creativity <br> Meet Our Agency's Experts" subtitle="ABOUT COMPANY" description="We successfully cope with tasks of varying complexity provide area longerty guarantees and regularly master.We successfully cope varying complexity provide area longerty guarantees." image="general/about-us-information-16.png" image_1="general/about-us-information-5-1.png" quantity="4" title_1="Medicare Advantage Plans" title_2="Analysis & Research" title_3="100% Secure Money Back" title_4="100% Money Growth" data_count="15+" data_count_description="World Best Agency Award Got" background_color="rgb(254, 246, 230)" enable_lazy_loading="yes"][/about-us-information][about-us-information style="style-8" title="We Offer Business Insight World Class Consulting" subtitle="WHY WE ARE THE BEST" description="We successfully cope with tasks of varying complexity provide area longerty guarantees and regularly master new Practice Following gies heur portfolio includes dozen." image="general/about-us-information-8-1.jpg" image_1="general/about-us-information-8-2.jpg" quantity="2" title_1="Business Solutions" description_1="Semper egetuis kelly for tellus urna area condition." icon_1="ti ti-chart-pie-2" title_2="Market Analysis" description_2="Semper egetuis kelly for tellus urna area condition." icon_2="ti ti-broadcast" background_color="rgb(23, 26, 124)" enable_lazy_loading="yes"][/about-us-information][blog-posts style="style-1" category_ids="2,3,4,5" title="Featured News And Insights" subtitle="OUR BLOG UPDATE" limit="3" background_image="backgrounds/blog-posts-bg.jpg" background_color="transparent" enable_lazy_loading="yes"][/blog-posts]',1,NULL,'homepage',NULL,'published','2024-06-18 22:59:55','2024-06-18 22:59:55'),(2,'Contact Us','<br><br><br><br><div>[google-map height=\"500\"]Awamileaug Drive, Kensington London, UK[/google-map]</div>[contact-form display_fields=\"phone,email,subject,address\" mandatory_fields=\"email\" title=\"How can we help you?\" description=\"When an unknown printer took a galley of type and scrambled it to make type pecimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker\" quantity=\"3\" title_1=\"Address\" icon_1=\"ti ti-map-pin\" description_1=\"Awamileaug Drive, Kensington London, UK\" title_2=\"Phone\" icon_2=\"ti ti-phone-call\" description_2=\"+48 500-130-0001\" title_3=\"E-mail\" icon_3=\"ti ti-mail\" description_3=\"info@gmail.com\" form_title=\"Give Us a Message\" form_description=\"Your email address will not be published. Required fields are marked *\" form_button_label=\"Submit Post\"][/contact-form]',1,NULL,NULL,NULL,'published','2024-06-18 22:59:55','2024-06-18 22:59:55'),(3,'Blog','',1,NULL,NULL,NULL,'published','2024-06-18 22:59:55','2024-06-18 22:59:55'),(4,'Business About','[about-us-information style="style-11" title="We Help Organizations To Make Ultimate Businesses Growth Success" subtitle="SIMPLY KNOW ABOUT" description="We successfully cope with tasks of varying complexityprovide longerty term guarantees and regularly master new Practice Area technol ogiesOur portfolio includes dozen" image="general/about-us-information-11.jpg" image_1="general/about-us-information-11-1.jpg" image_2="general/about-us-information-11-2.png" quantity="3" title_1="Medicare Advantage Plans" title_2="Analysis & Research" title_3="100% Secure Money Back" data_count="15+" data_count_description="World Best Agency <br> Award Got" button_label="Contact With Us" button_url="/contact-us" background_color="transparent" enable_lazy_loading="no"][/about-us-information][brands name_1="Door Dash" image_1="brands/1.png" url_1="/" name_2="Discord" image_2="brands/1.png" url_2="/" name_3="Airbnb" image_3="brands/1.png" url_3="/" name_4="Norton" image_4="brands/1.png" url_4="/" name_5="Naturewave" image_5="brands/1.png" url_5="/" quantity="5" background_color="transparent"][/brands][about-us-information style="style-12" title="Digital Solutions For Your Online Business" subtitle="WHY WE ARE THE BEST" description="We successfully cope with tasks of varying complexity provide area longerty guarantees and regularly master new Practice Following gies heur." quantity="4" title_1="Business Solutions" description_1="Semper egetuis kelly for tellus urna area condition." icon_1="ti ti-chart-histogram" title_2="Finance Planning" description_2="Semper egetuis kelly for tellus urna area condition." icon_2="ti ti-building-bank" title_3="Market Analysis" description_3="Semper egetuis kelly for tellus urna area condition." icon_3="ti ti-ad-2" title_4="Business Solutions" description_4="Semper egetuis kelly for tellus urna area condition." icon_4="ti ti-box-model" background_color="rgb(23, 26, 124)" enable_lazy_loading="yes"][/about-us-information][site-statistics style="style-1" quantity="4" title_1="Successfully Completed Projects" data_1="45" unit_1="+" image_1="icons/trophy.png" title_2="Satisfied 100% Our Clients" data_2="92" unit_2="K" image_2="icons/star.png" title_3="All Over The World We Are Available" data_3="19" unit_3="+" image_3="icons/popularity.png" title_4="Years of Experiences To Run This Company" data_4="25" unit_4="+" image_4="icons/time.png" background_image="backgrounds/site-statistics-bg.png" background_color="rgb(255, 251, 243)" enable_lazy_loading="yes"][/site-statistics][team style="style-4" title="Business Expertise Is Here For You Can Trust" subtitle="MEET OUR TEAM" team_ids="1,2,3,4" background_color="transparent" enable_lazy_loading="yes"][/team]',1,NULL,'full-width',NULL,'published','2024-06-18 22:59:55','2024-06-18 22:59:55'),(5,'Finance About','[about-us-information style="style-13" title="Dedicated Teams <br> <span>Always</span> Bring Something <span>Good</span>" description="We when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only fiveawe centuriesbut also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release offer Letraset when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only " image="general/about-us-information-13.jpg" quantity="6" data_count="25" data_count_description="Years of experience" background_color="transparent" enable_lazy_loading="no"][/about-us-information][site-statistics style="style-1" quantity="4" title_1="Successfully Completed Projects" data_1="45" unit_1="+" image_1="icons/trophy.png" title_2="Satisfied 100% Our Clients" data_2="92" unit_2="K" image_2="icons/star.png" title_3="All Over The World We Are Available" data_3="19" unit_3="+" image_3="icons/popularity.png" title_4="Years of Experiences To Run This Company" data_4="25" unit_4="+" image_4="icons/time.png" background_image="backgrounds/site-statistics-bg.png" background_color="rgb(255, 251, 243)" enable_lazy_loading="yes"][/site-statistics][contact-block style="style-1" title="Offering The Best Experience Of Business Consulting Services" subtitle="Toll Free Call" phone_number="+ 88 ( 9600 ) 6002" button_label="Request a Free Call" button_url="tel:8896006002" background_image="backgrounds/contact-block-bg.jpg" background_color="transparent" enable_lazy_loading="yes"][/contact-block][team style="style-1" title="Financial Expertise You Can Trust" subtitle="MEET OUR TEAM" description="Our power of choice is untrammelled and when nothing prevents being able to do what we like best every pleasure." team_ids="1,2,3,4" background_color="transparent" enable_lazy_loading="yes"][/team][testimonials style="style-4" image="general/testimonials-4.png" testimonial_ids="1,2,3,4" background_image="backgrounds/about-us-information-bg.jpg" enable_lazy_loading="yes"][/testimonials]',1,NULL,'full-width',NULL,'published','2024-06-18 22:59:55','2024-06-18 22:59:55'),(6,'Consulting About','[about-us-information style="style-3" title="Providing Expert Advice On Business Consulting, Planning & Success" subtitle="ABOUT OUR COMPANY" description="Mauris ut enim sit amet lacus ornare ullamcorper. Praesent plaacerat neque eu purus rhoncus, vel tincidunt odio ultrices. Seed theya are feugiat elis Curabitur posuere tristique." image="general/about-us-information-3-1.jpg" image_1="general/about-us-information-3-2.jpg" quantity="3" title_1="Business Growth" title_2="Analysis & Research" title_3="100% Secure" data_count="25" data_count_description="YEARS <br> EXPERIENCE <br> IN CONSULTING" author_name="Martinaze" author_title="CEO" author_avatar="general/author-avatar.png" author_signature="general/author-signature.png" contact_title="+123 8989 444" contact_subtitle="Hot Line Number" contact_url="tel:+123 8989444" contact_icon="ti ti-phone-call" background_image="backgrounds/about-us-information-bg.jpg" background_color="transparent" enable_lazy_loading="yes"][/about-us-information][site-statistics style="style-1" quantity="4" title_1="Successfully Completed Projects" data_1="45" unit_1="+" image_1="icons/trophy.png" title_2="Satisfied 100% Our Clients" data_2="92" unit_2="K" image_2="icons/star.png" title_3="All Over The World We Are Available" data_3="19" unit_3="+" image_3="icons/popularity.png" title_4="Years of Experiences To Run This Company" data_4="25" unit_4="+" image_4="icons/time.png" background_image="backgrounds/site-statistics-bg.png" background_color="rgb(255, 251, 243)" enable_lazy_loading="yes"][/site-statistics][contact-block style="style-1" title="Offering The Best Experience Of Business Consulting Services" subtitle="Toll Free Call" phone_number="+ 88 ( 9600 ) 6002" button_label="Request a Free Call" button_url="tel:8896006002" background_image="backgrounds/contact-block-bg.jpg" background_color="transparent" enable_lazy_loading="yes"][/contact-block][team style="style-1" title="Financial Expertise You Can Trust" subtitle="MEET OUR TEAM" description="Our power of choice is untrammelled and when nothing prevents being able to do what we like best every pleasure." team_ids="1,2,3,4" background_color="transparent" enable_lazy_loading="yes"][/team][testimonials style="style-4" image="general/testimonials-4.png" testimonial_ids="1,2,3,4" background_image="backgrounds/about-us-information-bg.jpg" enable_lazy_loading="yes"][/testimonials][brands name_1="Door Dash" image_1="brands/1.png" url_1="/" name_2="Discord" image_2="brands/1.png" url_2="/" name_3="Airbnb" image_3="brands/1.png" url_3="/" name_4="Norton" image_4="brands/1.png" url_4="/" name_5="Naturewave" image_5="brands/1.png" url_5="/" quantity="5" background_color="transparent"][/brands]',1,NULL,'full-width',NULL,'published','2024-06-18 22:59:55','2024-06-18 22:59:55'),(7,'Insurance About','[about-us-information style="style-4" title="Insurance For The Better Family & Corporate Life" subtitle="ABOUT US" description="We successfully cope with tasks of varying complexity provide area longerty guarantees and regularly master new Practice Following gies heur portfolio includes." image="general/about-us-information-4-1.jpg" image_1="general/about-us-information-4-2.jpg" quantity="3" title_1="Medicare Advantage Plans" title_2="Analysis & Research" title_3="100% Secure Money Back" data_count="25" data_count_description="Years Experience <br> in This Field" button_label="Quick Contact Us" button_url="/contact-us" background_color="transparent" enable_lazy_loading="no"][/about-us-information][about-us-information style="style-8" title="We Offer Business Insight World Class Consulting" subtitle="WHY WE ARE THE BEST" description="We successfully cope with tasks of varying complexity provide area longerty guarantees and regularly master new Practice Following gies heur portfolio includes dozen." image="general/about-us-information-8-1.jpg" image_1="general/about-us-information-8-2.jpg" quantity="2" title_1="Business Solutions" description_1="Semper egetuis kelly for tellus urna area condition." icon_1="ti ti-chart-pie-2" title_2="Market Analysis" description_2="Semper egetuis kelly for tellus urna area condition." icon_2="ti ti-broadcast" background_color="rgb(23, 26, 124)" enable_lazy_loading="yes"][/about-us-information][testimonials style="style-1" image="general/testimonials-4-1.png" testimonial_ids="1,2,3,4" background_image="backgrounds/about-us-information-bg.jpg" enable_lazy_loading="yes"][/testimonials][pricing title="We’ve Offered The Best Pricing For You" subtitle="FLEXIBLE PRICING PLAN" package_ids="1,2,3" background_image="backgrounds/blog-posts-bg.jpg" enable_lazy_loading="yes"][/pricing][brands name_1="Door Dash" image_1="brands/1.png" url_1="/" name_2="Discord" image_2="brands/1.png" url_2="/" name_3="Airbnb" image_3="brands/1.png" url_3="/" name_4="Norton" image_4="brands/1.png" url_4="/" name_5="Naturewave" image_5="brands/1.png" url_5="/" quantity="5" background_color="transparent"][/brands]',1,NULL,'full-width',NULL,'published','2024-06-18 22:59:55','2024-06-18 22:59:55'),(8,'Digital Agency About','<br><br><br><br>[about-us-information style="style-5" title="Business Growth Creativity Meet Our Agency's Experts" subtitle="ABOUT COMPANY" description="We successfully cope with tasks of varying complexity provide area longerty guarantees and regularly master. We successfully cope varying complexity provide area longerty guarantees." image="general/about-us-information-5.jpg" image_1="general/about-us-information-5-1.png" data_count="15" data_count_description="World Best Agency <br> Award Got" quantity="4" title_1="Medicare Advantage Plans" title_2="Analysis & Research" title_3="100% Secure Money Back" title_4="100% Money Growth" button_label="Contact with Us" button_url="/contact-us" background_color="transparent" enable_lazy_loading="no"][/about-us-information][services style="style-3" title="Transforming Your Business With Technology" subtitle="SPECIAL FEATURES" service_ids="1,2,7" background_image="backgrounds/blog-posts-bg.jpg" enable_lazy_loading="yes"][/services][testimonials style="style-2" title="What Our Loving Clients Saying" subtitle="CLIENTS TESTIMONIAL" testimonial_ids="1,2,3" background_color="rgb(20, 23, 108)" enable_lazy_loading="yes"][/testimonials][pricing title="We’ve Offered The Best Pricing For You" subtitle="FLEXIBLE PRICING PLAN" package_ids="1,2,3" background_image="backgrounds/blog-posts-bg.jpg" enable_lazy_loading="yes"][/pricing]',1,NULL,'full-width',NULL,'published','2024-06-18 22:59:55','2024-06-18 22:59:55'),(9,'Services','[services style="style-1" title="We Offer An Effective Wide Area Business solutions" subtitle="WHAT WE OFFER" service_ids="1,2,3,4,5,6,7,8" background_image="backgrounds/blog-posts-bg.jpg" background_color="transparent" enable_lazy_loading="no"][/services]',1,NULL,'full-width',NULL,'published','2024-06-18 22:59:55','2024-06-18 22:59:55'),(10,'Finance Service','[services style="style-2" title="Let’s Discover Our Service <br> Features Charter" subtitle="WHY WE ARE THE BEST" service_ids="1,2,3,4,5,6,7,8" background_color="#14176C" enable_lazy_loading="no"][/services]',1,NULL,'full-width',NULL,'published','2024-06-18 22:59:55','2024-06-18 22:59:55'),(11,'Consulting Service','[services style="style-3" title="We Offer An Effective Wide Area Business solutions" subtitle="WHAT WE OFFER" service_ids="1,2,3,4,5,6,7,8" background_image="backgrounds/blog-posts-bg.jpg" background_color="transparent" enable_lazy_loading="no"][/services]',1,NULL,'full-width',NULL,'published','2024-06-18 22:59:55','2024-06-18 22:59:55'),(12,'Digital Agency Service','[services style="style-6" title="We Do World Class Work For You" subtitle="WHAT WE OFFER" service_ids="1,2,3,4,5,6,7,8" background_image="backgrounds/blog-posts-bg.jpg" background_color="transparent" enable_lazy_loading="no"][/services]',1,NULL,'full-width',NULL,'published','2024-06-18 22:59:55','2024-06-18 22:59:55'),(13,'Insurance Service','[services-tab title="Discover Our Insurance Services For All" subtitle="WHAT WE OFFER" quantity="6" service_id_1="1" title_1="Data Analyst" description_1="Explore our savings, quality care and wellness solutions to craft the perfect plan for your business when an unknown printer." featured_title_1_1="Business Growth" featured_title_2_1="100% Secure" featured_title_3_1="Business Growth" service_id_2="8" title_2="Strategy Adviser" description_2="Explore our savings, quality care and wellness solutions to craft the perfect plan for your business when an unknown printer." featured_title_1_2="Business Growth" featured_title_2_2="Analysis & Research" featured_title_3_2="100% Secure" service_id_3="2" title_3="Liability Planner" description_3="Explore our savings, quality care and wellness solutions to craft the perfect plan for your business when an unknown printer." featured_title_1_3="Business Growth" featured_title_2_3="Analysis & Research" featured_title_3_3="100% Secure" service_id_4="12" title_4="Growth Planner" description_4="Explore our savings, quality care and wellness solutions to craft the perfect plan for your business when an unknown printer." featured_title_1_4="Business Growth" featured_title_2_4="Analysis & Research" featured_title_3_4="100% Secure" service_id_5="7" title_5="Insurance Expert" description_5="Explore our savings, quality care and wellness solutions to craft the perfect plan for your business when an unknown printer." featured_title_1_5="Business Growth" featured_title_2_5="Analysis & Research" featured_title_3_5="100% Secure" service_id_6="10" title_6="Operations Expert" description_6="Explore our savings, quality care and wellness solutions to craft the perfect plan for your business when an unknown printer." featured_title_1_6="Business Growth" featured_title_2_6="Analysis & Research" featured_title_3_6="100% Secure" button_label="See More Services" button_url="/services" background_image="backgrounds/services-bg-3.jpg" background_color="transparent" enable_lazy_loading="no"][/services-tab]',1,NULL,'full-width',NULL,'published','2024-06-18 22:59:55','2024-06-18 22:59:55'),(14,'Team One','[team style=\"style-1\" team_ids=\"1,2,3,4,5,6,7,8\" background_color=\"transparent\" enable_lazy_loading=\"no\"][/team][brands name_1=\"Door Dash\" image_1=\"brands/1.png\" url_1=\"/\" name_2=\"Discord\" image_2=\"brands/1.png\" url_2=\"/\" name_3=\"Airbnb\" image_3=\"brands/1.png\" url_3=\"/\" name_4=\"Norton\" image_4=\"brands/1.png\" url_4=\"/\" name_5=\"Naturewave\" image_5=\"brands/1.png\" url_5=\"/\" quantity=\"5\" background_color=\"transparent\"][/brands]',1,NULL,'full-width',NULL,'published','2024-06-18 22:59:55','2024-06-18 22:59:55'),(15,'Team Two','[team style=\"style-2\" team_ids=\"1,2,3,4,5,6,7,8\" background_color=\"transparent\" enable_lazy_loading=\"no\"][/team][brands name_1=\"Door Dash\" image_1=\"brands/1.png\" url_1=\"/\" name_2=\"Discord\" image_2=\"brands/1.png\" url_2=\"/\" name_3=\"Airbnb\" image_3=\"brands/1.png\" url_3=\"/\" name_4=\"Norton\" image_4=\"brands/1.png\" url_4=\"/\" name_5=\"Naturewave\" image_5=\"brands/1.png\" url_5=\"/\" quantity=\"5\" background_color=\"#F7F7F8\"][/brands]',1,NULL,'full-width',NULL,'published','2024-06-18 22:59:55','2024-06-18 22:59:55'),(16,'Team Three','[team style=\"style-3\" team_ids=\"1,2,3,4,5,6,7,8\" background_color=\"transparent\" enable_lazy_loading=\"no\"][/team][brands name_1=\"Door Dash\" image_1=\"brands/1.png\" url_1=\"/\" name_2=\"Discord\" image_2=\"brands/1.png\" url_2=\"/\" name_3=\"Airbnb\" image_3=\"brands/1.png\" url_3=\"/\" name_4=\"Norton\" image_4=\"brands/1.png\" url_4=\"/\" name_5=\"Naturewave\" image_5=\"brands/1.png\" url_5=\"/\" quantity=\"5\" background_color=\"#F7F7F8\"][/brands]',1,NULL,'full-width',NULL,'published','2024-06-18 22:59:55','2024-06-18 22:59:55'),(17,'Team Four','[team style=\"style-4\" team_ids=\"1,2,3,4,5,6,7,8\" background_color=\"transparent\" enable_lazy_loading=\"no\"][/team][brands name_1=\"Door Dash\" image_1=\"brands/1.png\" url_1=\"/\" name_2=\"Discord\" image_2=\"brands/1.png\" url_2=\"/\" name_3=\"Airbnb\" image_3=\"brands/1.png\" url_3=\"/\" name_4=\"Norton\" image_4=\"brands/1.png\" url_4=\"/\" name_5=\"Naturewave\" image_5=\"brands/1.png\" url_5=\"/\" quantity=\"5\" background_color=\"#F7F7F8\"][/brands]',1,NULL,'full-width',NULL,'published','2024-06-18 22:59:55','2024-06-18 22:59:55'),(18,'How Its Work','[instruction-steps title=\"Engage With Us For Financial And Accounting Services With This Step-By-Step Guide\" description=\"Discover how our company can help your business with our comprehensive financial and accounting services. From bookkeeping to tax planning, we have you covered. Contact us today to get started.\" quantity=\"3\" title_1=\"Step 1: Initial Consultation\" description_1=\"Schedule a consultation with our experts to discuss your business needs and goals.\" icon_1=\"ti ti-chart-pie\" button_label_1=\"Read More\" button_url_1=\"/contact-us\" title_2=\"Step 2: Initial Consultation\" description_2=\"Schedule a consultation with our experts to discuss your business needs and goals.\" icon_2=\"ti ti-bulb\" button_label_2=\"Read more\" button_url_2=\"/contact-us\" title_3=\"Step 3: Initial Consultation\" description_3=\"Schedule a consultation with our experts to discuss your business needs and goals.\" icon_3=\"ti ti-rocket\" button_label_3=\"Read More\" button_url_3=\"/contact-us\" background_color=\"rgb(20, 23, 108)\"][/instruction-steps]<br><br>',1,NULL,'full-width',NULL,'published','2024-06-18 22:59:55','2024-06-18 22:59:55'),(19,'Pricing','[pricing title=\"We’ve Offered The Best Pricing For You\" subtitle=\"FLEXIBLE PRICING PLAN\" package_ids=\"1,2,3\" background_image=\"backgrounds/blog-posts-bg.jpg\" enable_lazy_loading=\"yes\"][/pricing]',1,NULL,'full-width',NULL,'published','2024-06-18 22:59:55','2024-06-18 22:59:55'),(20,'Testimonials','[testimonials style=\"style-2\" title=\"What Our Loving Clients Saying\" subtitle=\"CLIENTS TESTIMONIAL\" testimonial_ids=\"1,2,3\" background_color=\"rgb(20, 23, 108)\" enable_lazy_loading=\"yes\"][/testimonials]<br><br>',1,NULL,'full-width',NULL,'published','2024-06-18 22:59:55','2024-06-18 22:59:55'); /*!40000 ALTER TABLE `pages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pages_translations` -- DROP TABLE IF EXISTS `pages_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `pages_translations` ( `lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `pages_id` bigint unsigned NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`lang_code`,`pages_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pages_translations` -- LOCK TABLES `pages_translations` WRITE; /*!40000 ALTER TABLE `pages_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `pages_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `password_reset_tokens` -- DROP TABLE IF EXISTS `password_reset_tokens`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `password_reset_tokens` ( `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`email`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `password_reset_tokens` -- LOCK TABLES `password_reset_tokens` WRITE; /*!40000 ALTER TABLE `password_reset_tokens` DISABLE KEYS */; /*!40000 ALTER TABLE `password_reset_tokens` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `payments` -- DROP TABLE IF EXISTS `payments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `payments` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `currency` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `user_id` bigint unsigned NOT NULL DEFAULT '0', `charge_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `payment_channel` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `amount` decimal(15,2) unsigned NOT NULL, `order_id` bigint unsigned DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT 'pending', `payment_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT 'confirm', `customer_id` bigint unsigned DEFAULT NULL, `refunded_amount` decimal(15,2) unsigned DEFAULT NULL, `refund_note` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `customer_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `metadata` mediumtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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 `personal_access_tokens` -- DROP TABLE IF EXISTS `personal_access_tokens`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `personal_access_tokens` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `tokenable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `tokenable_id` bigint unsigned NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL, `abilities` text COLLATE utf8mb4_unicode_ci, `last_used_at` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `personal_access_tokens_token_unique` (`token`), KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `personal_access_tokens` -- LOCK TABLES `personal_access_tokens` WRITE; /*!40000 ALTER TABLE `personal_access_tokens` DISABLE KEYS */; /*!40000 ALTER TABLE `personal_access_tokens` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pf_custom_field_options` -- DROP TABLE IF EXISTS `pf_custom_field_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `pf_custom_field_options` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `custom_field_id` bigint unsigned NOT NULL, `label` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `order` int NOT NULL DEFAULT '999', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `pf_custom_field_options_custom_field_id_index` (`custom_field_id`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pf_custom_field_options` -- LOCK TABLES `pf_custom_field_options` WRITE; /*!40000 ALTER TABLE `pf_custom_field_options` DISABLE KEYS */; INSERT INTO `pf_custom_field_options` VALUES (1,1,'Health Insurance','Health Insurance',999,'2024-06-18 23:00:05','2024-06-18 23:00:05'),(2,1,'Travel Insurance','Travel Insurance',999,'2024-06-18 23:00:05','2024-06-18 23:00:05'),(3,1,'Vehicle Insurance','Vehicle Insurance',999,'2024-06-18 23:00:05','2024-06-18 23:00:05'),(4,1,'Cargo Insurance','Cargo Insurance',999,'2024-06-18 23:00:05','2024-06-18 23:00:05'),(5,1,'Fire Insurance','Fire Insurance',999,'2024-06-18 23:00:05','2024-06-18 23:00:05'); /*!40000 ALTER TABLE `pf_custom_field_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pf_custom_field_options_translations` -- DROP TABLE IF EXISTS `pf_custom_field_options_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `pf_custom_field_options_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `label` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pf_custom_field_options_id` bigint unsigned NOT NULL, PRIMARY KEY (`lang_code`,`pf_custom_field_options_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pf_custom_field_options_translations` -- LOCK TABLES `pf_custom_field_options_translations` WRITE; /*!40000 ALTER TABLE `pf_custom_field_options_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `pf_custom_field_options_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pf_custom_fields` -- DROP TABLE IF EXISTS `pf_custom_fields`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `pf_custom_fields` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `author_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `author_id` bigint unsigned NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `placeholder` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `required` tinyint(1) NOT NULL DEFAULT '0', `type` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL, `order` int NOT NULL DEFAULT '999', `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `pf_custom_fields_author_type_author_id_index` (`author_type`,`author_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 `pf_custom_fields` -- LOCK TABLES `pf_custom_fields` WRITE; /*!40000 ALTER TABLE `pf_custom_fields` DISABLE KEYS */; INSERT INTO `pf_custom_fields` VALUES (1,'Botble\\ACL\\Models\\User',1,'Type',NULL,0,'dropdown',999,'published','2024-06-18 23:00:05','2024-06-18 23:00:05'),(2,'Botble\\ACL\\Models\\User',1,'Price',NULL,1,'number',999,'published','2024-06-18 23:00:05','2024-06-18 23:00:05'); /*!40000 ALTER TABLE `pf_custom_fields` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pf_custom_fields_translations` -- DROP TABLE IF EXISTS `pf_custom_fields_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `pf_custom_fields_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `placeholder` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `type` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `pf_custom_fields_id` bigint unsigned NOT NULL, PRIMARY KEY (`lang_code`,`pf_custom_fields_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pf_custom_fields_translations` -- LOCK TABLES `pf_custom_fields_translations` WRITE; /*!40000 ALTER TABLE `pf_custom_fields_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `pf_custom_fields_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pf_packages` -- DROP TABLE IF EXISTS `pf_packages`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `pf_packages` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci NOT NULL, `price` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `annual_price` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `duration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'monthly', `features` text COLLATE utf8mb4_unicode_ci, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `is_popular` tinyint(1) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pf_packages` -- LOCK TABLES `pf_packages` WRITE; /*!40000 ALTER TABLE `pf_packages` DISABLE KEYS */; INSERT INTO `pf_packages` VALUES (1,'Basic Plan','Advanced features for pros who need more customization.','<p>This is package content</p>\n','$19','$119','monthly','+ 100 User Activities\n+ Limit Access\n+ No Hidden Charge\n+ 01 Time Updates\n+ Figma Source File\n+ Many More Facilities','published',0,'2024-06-18 23:00:04','2024-06-18 23:00:04'),(2,'Team Plan','All the basics for businesses that are just getting started.','<p>This is package content</p>\n','$49','$499','monthly','+ 1000 User Activities\n+ Unlimited Access\n+ No Hidden Charge\n+ 03 Time Updates\n+ Figma Source File\n+ Many More Facilities','published',1,'2024-06-18 23:00:04','2024-06-18 23:00:04'),(3,'Enterprise Plan','Advanced features for pros who need more customization.','<p>This is package content</p>\n','$99','$999','monthly','+ 5000 User Activities\n+ Unlimited Access\n+ No Hidden Charge\n+ 10 Time Updates\n+ Figma Source File\n+ Many More Facilities','published',0,'2024-06-18 23:00:04','2024-06-18 23:00:04'); /*!40000 ALTER TABLE `pf_packages` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pf_packages_translations` -- DROP TABLE IF EXISTS `pf_packages_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `pf_packages_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `pf_packages_id` bigint unsigned NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci, `price` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `annual_price` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `features` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`lang_code`,`pf_packages_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pf_packages_translations` -- LOCK TABLES `pf_packages_translations` WRITE; /*!40000 ALTER TABLE `pf_packages_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `pf_packages_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pf_projects` -- DROP TABLE IF EXISTS `pf_projects`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `pf_projects` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` longtext COLLATE utf8mb4_unicode_ci, `place` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `client` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_featured` tinyint(1) NOT NULL DEFAULT '0', `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `images` text COLLATE utf8mb4_unicode_ci, `views` int NOT NULL DEFAULT '0', `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `author` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `start_date` date DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pf_projects` -- LOCK TABLES `pf_projects` WRITE; /*!40000 ALTER TABLE `pf_projects` DISABLE KEYS */; INSERT INTO `pf_projects` VALUES (1,'Innovation Hub: Navigating the Future','Gain invaluable insights into strategic business planning and decision-making through our comprehensive program. Unlock the power of data-driven strategies for sustainable growth.','<p>We are excited to introduce you to Innovation Hub: Navigating the Future, a cutting-edge platform designed to transform the way you manage content. Developed with the latest technology, our project aims to deliver exceptional performance, user-friendly interfaces, and robust functionality to meet your specific needs.</p>\n[content-featured title=\"Our Corporate Business Planning\" description=\"When an unknown printer took a galley of type and scrambled it to make a type specimen bookhas survived not only five centuries.but also the leap into electronic typesetting, remaining.\" image=\"general/content-featured.jpg\" quantity=\"4\" title_1=\"Medicare Advantage Plans\" title_2=\"Analysis & Research\" title_3=\"100% Secure Money Back\" title_4=\"100% Money Growth\"][/content-featured]\n<h2>Why Choose <span>Innovation Hub: Navigating the Future</span>?</h2>\n<p>\n Choosing <span>Innovation Hub: Navigating the Future</span> means opting for excellence and innovation. Here are some reasons why our project stands out:\n</p>\n<ul>\n <li><strong>Ease of Use:</strong> Our intuitive design ensures that users of all skill levels can quickly get up to speed.</li>\n <li><strong>Comprehensive Support:</strong> We offer extensive documentation, tutorials, and a dedicated support team to assist you.</li>\n <li><strong>Customizable:</strong> Tailor the platform to meet your unique requirements with flexible options and settings.</li>\n <li><strong>Secure and Reliable:</strong> Built with security and reliability in mind, our platform ensures your data is protected and always available.</li>\n</ul>\n','Paris','Grace Williams',0,'projects/1.jpg',NULL,0,'published','2024-06-18 23:00:04','2024-06-18 23:00:04','Hillard Fahey III','1994-01-19'),(2,'Leadership Excellence Initiative','Join us at the Innovation Hub, where we explore cutting-edge technologies and trends shaping the future of business. Discover innovative solutions and stay ahead of the curve.','<p>We are excited to introduce you to Leadership Excellence Initiative, a cutting-edge platform designed to transform the way you manage content. Developed with the latest technology, our project aims to deliver exceptional performance, user-friendly interfaces, and robust functionality to meet your specific needs.</p>\n[content-featured title=\"Our Corporate Business Planning\" description=\"When an unknown printer took a galley of type and scrambled it to make a type specimen bookhas survived not only five centuries.but also the leap into electronic typesetting, remaining.\" image=\"general/content-featured.jpg\" quantity=\"4\" title_1=\"Medicare Advantage Plans\" title_2=\"Analysis & Research\" title_3=\"100% Secure Money Back\" title_4=\"100% Money Growth\"][/content-featured]\n<h2>Why Choose <span>Leadership Excellence Initiative</span>?</h2>\n<p>\n Choosing <span>Leadership Excellence Initiative</span> means opting for excellence and innovation. Here are some reasons why our project stands out:\n</p>\n<ul>\n <li><strong>Ease of Use:</strong> Our intuitive design ensures that users of all skill levels can quickly get up to speed.</li>\n <li><strong>Comprehensive Support:</strong> We offer extensive documentation, tutorials, and a dedicated support team to assist you.</li>\n <li><strong>Customizable:</strong> Tailor the platform to meet your unique requirements with flexible options and settings.</li>\n <li><strong>Secure and Reliable:</strong> Built with security and reliability in mind, our platform ensures your data is protected and always available.</li>\n</ul>\n','USA','Michael Turner',0,'projects/2.jpg',NULL,0,'published','2024-06-18 23:00:04','2024-06-18 23:00:04','Dr. Emilio Schneider II','2000-05-11'),(3,'Startup Accelerator Program','Accelerate your startup’s growth with our intensive program. From idea to market entry, we provide mentorship, resources, and networking opportunities for success.','<p>We are excited to introduce you to Startup Accelerator Program, a cutting-edge platform designed to transform the way you manage content. Developed with the latest technology, our project aims to deliver exceptional performance, user-friendly interfaces, and robust functionality to meet your specific needs.</p>\n[content-featured title=\"Our Corporate Business Planning\" description=\"When an unknown printer took a galley of type and scrambled it to make a type specimen bookhas survived not only five centuries.but also the leap into electronic typesetting, remaining.\" image=\"general/content-featured.jpg\" quantity=\"4\" title_1=\"Medicare Advantage Plans\" title_2=\"Analysis & Research\" title_3=\"100% Secure Money Back\" title_4=\"100% Money Growth\"][/content-featured]\n<h2>Why Choose <span>Startup Accelerator Program</span>?</h2>\n<p>\n Choosing <span>Startup Accelerator Program</span> means opting for excellence and innovation. Here are some reasons why our project stands out:\n</p>\n<ul>\n <li><strong>Ease of Use:</strong> Our intuitive design ensures that users of all skill levels can quickly get up to speed.</li>\n <li><strong>Comprehensive Support:</strong> We offer extensive documentation, tutorials, and a dedicated support team to assist you.</li>\n <li><strong>Customizable:</strong> Tailor the platform to meet your unique requirements with flexible options and settings.</li>\n <li><strong>Secure and Reliable:</strong> Built with security and reliability in mind, our platform ensures your data is protected and always available.</li>\n</ul>\n','Thailand','David Chen',0,'projects/3.jpg',NULL,0,'published','2024-06-18 23:00:04','2024-06-18 23:00:04','Josephine Hartmann','2003-11-27'),(4,'Marketing Mastery Series','Master the art of marketing with our comprehensive series. From branding to digital marketing, this series equips you with the skills to captivate your audience.','<p>We are excited to introduce you to Marketing Mastery Series, a cutting-edge platform designed to transform the way you manage content. Developed with the latest technology, our project aims to deliver exceptional performance, user-friendly interfaces, and robust functionality to meet your specific needs.</p>\n[content-featured title=\"Our Corporate Business Planning\" description=\"When an unknown printer took a galley of type and scrambled it to make a type specimen bookhas survived not only five centuries.but also the leap into electronic typesetting, remaining.\" image=\"general/content-featured.jpg\" quantity=\"4\" title_1=\"Medicare Advantage Plans\" title_2=\"Analysis & Research\" title_3=\"100% Secure Money Back\" title_4=\"100% Money Growth\"][/content-featured]\n<h2>Why Choose <span>Marketing Mastery Series</span>?</h2>\n<p>\n Choosing <span>Marketing Mastery Series</span> means opting for excellence and innovation. Here are some reasons why our project stands out:\n</p>\n<ul>\n <li><strong>Ease of Use:</strong> Our intuitive design ensures that users of all skill levels can quickly get up to speed.</li>\n <li><strong>Comprehensive Support:</strong> We offer extensive documentation, tutorials, and a dedicated support team to assist you.</li>\n <li><strong>Customizable:</strong> Tailor the platform to meet your unique requirements with flexible options and settings.</li>\n <li><strong>Secure and Reliable:</strong> Built with security and reliability in mind, our platform ensures your data is protected and always available.</li>\n</ul>\n','Japan','Takashi Hamachi',0,'projects/4.jpg',NULL,0,'published','2024-06-18 23:00:04','2024-06-18 23:00:04','Prof. Jan Farrell Sr.','2006-01-11'),(5,'Illustration Design','Omnis mollitia minus ad porro qui fugit voluptate labore. Velit ratione in eos. Sapiente repellendus impedit tempore et qui veritatis aut iste.','<p>We are excited to introduce you to Illustration Design, a cutting-edge platform designed to transform the way you manage content. Developed with the latest technology, our project aims to deliver exceptional performance, user-friendly interfaces, and robust functionality to meet your specific needs.</p>\n[content-featured title=\"Our Corporate Business Planning\" description=\"When an unknown printer took a galley of type and scrambled it to make a type specimen bookhas survived not only five centuries.but also the leap into electronic typesetting, remaining.\" image=\"general/content-featured.jpg\" quantity=\"4\" title_1=\"Medicare Advantage Plans\" title_2=\"Analysis & Research\" title_3=\"100% Secure Money Back\" title_4=\"100% Money Growth\"][/content-featured]\n<h2>Why Choose <span>Illustration Design</span>?</h2>\n<p>\n Choosing <span>Illustration Design</span> means opting for excellence and innovation. Here are some reasons why our project stands out:\n</p>\n<ul>\n <li><strong>Ease of Use:</strong> Our intuitive design ensures that users of all skill levels can quickly get up to speed.</li>\n <li><strong>Comprehensive Support:</strong> We offer extensive documentation, tutorials, and a dedicated support team to assist you.</li>\n <li><strong>Customizable:</strong> Tailor the platform to meet your unique requirements with flexible options and settings.</li>\n <li><strong>Secure and Reliable:</strong> Built with security and reliability in mind, our platform ensures your data is protected and always available.</li>\n</ul>\n','USA','David Kane',0,'projects/5.jpg',NULL,0,'published','2024-06-18 23:00:04','2024-06-18 23:00:04','Dr. Toy Will V','1987-10-10'),(6,'Design & Development','Officia id fugit vero laborum eaque eligendi voluptas ducimus. Et totam libero nam tenetur. Sequi reiciendis repellat dolorem et.','<p>We are excited to introduce you to Design & Development, a cutting-edge platform designed to transform the way you manage content. Developed with the latest technology, our project aims to deliver exceptional performance, user-friendly interfaces, and robust functionality to meet your specific needs.</p>\n[content-featured title=\"Our Corporate Business Planning\" description=\"When an unknown printer took a galley of type and scrambled it to make a type specimen bookhas survived not only five centuries.but also the leap into electronic typesetting, remaining.\" image=\"general/content-featured.jpg\" quantity=\"4\" title_1=\"Medicare Advantage Plans\" title_2=\"Analysis & Research\" title_3=\"100% Secure Money Back\" title_4=\"100% Money Growth\"][/content-featured]\n<h2>Why Choose <span>Design & Development</span>?</h2>\n<p>\n Choosing <span>Design & Development</span> means opting for excellence and innovation. Here are some reasons why our project stands out:\n</p>\n<ul>\n <li><strong>Ease of Use:</strong> Our intuitive design ensures that users of all skill levels can quickly get up to speed.</li>\n <li><strong>Comprehensive Support:</strong> We offer extensive documentation, tutorials, and a dedicated support team to assist you.</li>\n <li><strong>Customizable:</strong> Tailor the platform to meet your unique requirements with flexible options and settings.</li>\n <li><strong>Secure and Reliable:</strong> Built with security and reliability in mind, our platform ensures your data is protected and always available.</li>\n</ul>\n','Canada','Franks Doe',0,'projects/6.jpg',NULL,0,'published','2024-06-18 23:00:04','2024-06-18 23:00:04','Elinore Terry','2023-05-08'),(7,'Marketing Consultancy','Doloremque libero tempore consequatur. Perferendis et ex rerum praesentium rerum ut commodi. Atque maxime suscipit ab consectetur nostrum praesentium.','<p>We are excited to introduce you to Marketing Consultancy, a cutting-edge platform designed to transform the way you manage content. Developed with the latest technology, our project aims to deliver exceptional performance, user-friendly interfaces, and robust functionality to meet your specific needs.</p>\n[content-featured title=\"Our Corporate Business Planning\" description=\"When an unknown printer took a galley of type and scrambled it to make a type specimen bookhas survived not only five centuries.but also the leap into electronic typesetting, remaining.\" image=\"general/content-featured.jpg\" quantity=\"4\" title_1=\"Medicare Advantage Plans\" title_2=\"Analysis & Research\" title_3=\"100% Secure Money Back\" title_4=\"100% Money Growth\"][/content-featured]\n<h2>Why Choose <span>Marketing Consultancy</span>?</h2>\n<p>\n Choosing <span>Marketing Consultancy</span> means opting for excellence and innovation. Here are some reasons why our project stands out:\n</p>\n<ul>\n <li><strong>Ease of Use:</strong> Our intuitive design ensures that users of all skill levels can quickly get up to speed.</li>\n <li><strong>Comprehensive Support:</strong> We offer extensive documentation, tutorials, and a dedicated support team to assist you.</li>\n <li><strong>Customizable:</strong> Tailor the platform to meet your unique requirements with flexible options and settings.</li>\n <li><strong>Secure and Reliable:</strong> Built with security and reliability in mind, our platform ensures your data is protected and always available.</li>\n</ul>\n','India','Alexander Kavas',0,'projects/7.jpg',NULL,0,'published','2024-06-18 23:00:04','2024-06-18 23:00:04','Mrs. Aimee Green','1973-01-14'),(8,'Digital Marketing','Et id magni ex nemo voluptatem nulla iste. Voluptas consequatur ut sunt. Dolorem sequi sed ad error. Recusandae officiis perspiciatis distinctio unde.','<p>We are excited to introduce you to Digital Marketing, a cutting-edge platform designed to transform the way you manage content. Developed with the latest technology, our project aims to deliver exceptional performance, user-friendly interfaces, and robust functionality to meet your specific needs.</p>\n[content-featured title=\"Our Corporate Business Planning\" description=\"When an unknown printer took a galley of type and scrambled it to make a type specimen bookhas survived not only five centuries.but also the leap into electronic typesetting, remaining.\" image=\"general/content-featured.jpg\" quantity=\"4\" title_1=\"Medicare Advantage Plans\" title_2=\"Analysis & Research\" title_3=\"100% Secure Money Back\" title_4=\"100% Money Growth\"][/content-featured]\n<h2>Why Choose <span>Digital Marketing</span>?</h2>\n<p>\n Choosing <span>Digital Marketing</span> means opting for excellence and innovation. Here are some reasons why our project stands out:\n</p>\n<ul>\n <li><strong>Ease of Use:</strong> Our intuitive design ensures that users of all skill levels can quickly get up to speed.</li>\n <li><strong>Comprehensive Support:</strong> We offer extensive documentation, tutorials, and a dedicated support team to assist you.</li>\n <li><strong>Customizable:</strong> Tailor the platform to meet your unique requirements with flexible options and settings.</li>\n <li><strong>Secure and Reliable:</strong> Built with security and reliability in mind, our platform ensures your data is protected and always available.</li>\n</ul>\n','Brazil','Roby Elexa',0,'projects/8.jpg',NULL,0,'published','2024-06-18 23:00:04','2024-06-18 23:00:04','Kadin Thompson','2014-09-15'),(9,'Strategic Planning','Aut eum iste exercitationem vero blanditiis voluptatem. Facere similique id quas hic.','<p>We are excited to introduce you to Strategic Planning, a cutting-edge platform designed to transform the way you manage content. Developed with the latest technology, our project aims to deliver exceptional performance, user-friendly interfaces, and robust functionality to meet your specific needs.</p>\n[content-featured title=\"Our Corporate Business Planning\" description=\"When an unknown printer took a galley of type and scrambled it to make a type specimen bookhas survived not only five centuries.but also the leap into electronic typesetting, remaining.\" image=\"general/content-featured.jpg\" quantity=\"4\" title_1=\"Medicare Advantage Plans\" title_2=\"Analysis & Research\" title_3=\"100% Secure Money Back\" title_4=\"100% Money Growth\"][/content-featured]\n<h2>Why Choose <span>Strategic Planning</span>?</h2>\n<p>\n Choosing <span>Strategic Planning</span> means opting for excellence and innovation. Here are some reasons why our project stands out:\n</p>\n<ul>\n <li><strong>Ease of Use:</strong> Our intuitive design ensures that users of all skill levels can quickly get up to speed.</li>\n <li><strong>Comprehensive Support:</strong> We offer extensive documentation, tutorials, and a dedicated support team to assist you.</li>\n <li><strong>Customizable:</strong> Tailor the platform to meet your unique requirements with flexible options and settings.</li>\n <li><strong>Secure and Reliable:</strong> Built with security and reliability in mind, our platform ensures your data is protected and always available.</li>\n</ul>\n','Thai Lan','Nicola Per',0,'projects/9.jpg',NULL,0,'published','2024-06-18 23:00:04','2024-06-18 23:00:04','Javonte McLaughlin V','2019-10-06'); /*!40000 ALTER TABLE `pf_projects` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pf_projects_translations` -- DROP TABLE IF EXISTS `pf_projects_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `pf_projects_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `pf_projects_id` bigint unsigned NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` longtext COLLATE utf8mb4_unicode_ci ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pf_projects_translations` -- LOCK TABLES `pf_projects_translations` WRITE; /*!40000 ALTER TABLE `pf_projects_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `pf_projects_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pf_quotes` -- DROP TABLE IF EXISTS `pf_quotes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `pf_quotes` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `message` text COLLATE utf8mb4_unicode_ci NOT NULL, `fields` text COLLATE utf8mb4_unicode_ci, `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unread', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL 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 `pf_quotes` -- LOCK TABLES `pf_quotes` WRITE; /*!40000 ALTER TABLE `pf_quotes` DISABLE KEYS */; /*!40000 ALTER TABLE `pf_quotes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pf_service_categories` -- DROP TABLE IF EXISTS `pf_service_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `pf_service_categories` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `parent_id` bigint unsigned DEFAULT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `order` tinyint NOT NULL DEFAULT '0', `status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `pf_service_categories_parent_id_index` (`parent_id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pf_service_categories` -- LOCK TABLES `pf_service_categories` WRITE; /*!40000 ALTER TABLE `pf_service_categories` DISABLE KEYS */; INSERT INTO `pf_service_categories` VALUES (1,NULL,'Financial Analysis','Dolorum dolores natus cumque illo earum ex nemo aut. Ut aut odit eligendi iure consequatur vero. Dignissimos ea qui omnis necessitatibus fugiat dolores. Veritatis dolores eos consequatur et et nesciunt. Labore laboriosam sunt dolorem nihil. Aut commodi eligendi architecto.',NULL,1,'published','2024-06-18 23:00:04','2024-06-18 23:00:04'),(2,NULL,'Tax Strategy','Facilis excepturi labore harum harum voluptatem ut. Voluptas ad voluptatem quo omnis deserunt non quas. Officiis expedita hic non voluptatem aut. Libero odit deserunt sunt qui odit ratione. Velit occaecati sint ut possimus dolorum earum aut. Nesciunt eos dignissimos sed est nobis. Ipsa aliquid autem quod. Facilis eos et est eius.',NULL,2,'published','2024-06-18 23:00:04','2024-06-18 23:00:04'),(3,NULL,'Market Research','Fugit qui nemo provident voluptas necessitatibus a. Rerum esse sed quis est. Hic nostrum accusantium maxime nam. Ad id sequi impedit quod. Sint nisi saepe in distinctio ipsam magnam rerum suscipit. Soluta aut cum ea reprehenderit blanditiis autem ducimus.',NULL,3,'published','2024-06-18 23:00:04','2024-06-18 23:00:04'),(4,NULL,'Business Strategy','Aut quam omnis impedit ratione. Voluptatum suscipit reprehenderit iste ratione autem perspiciatis. Tenetur fuga veritatis est voluptatibus libero. Fuga et fugiat sequi aut. Nemo ut sunt libero dolores. Recusandae voluptatum sit animi odio et quis dolores tempore.',NULL,4,'published','2024-06-18 23:00:04','2024-06-18 23:00:04'); /*!40000 ALTER TABLE `pf_service_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pf_service_categories_translations` -- DROP TABLE IF EXISTS `pf_service_categories_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `pf_service_categories_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `pf_service_categories_id` bigint unsigned NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`pf_service_categories_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pf_service_categories_translations` -- LOCK TABLES `pf_service_categories_translations` WRITE; /*!40000 ALTER TABLE `pf_service_categories_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `pf_service_categories_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pf_services` -- DROP TABLE IF EXISTS `pf_services`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `pf_services` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `category_id` bigint unsigned NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` longtext COLLATE utf8mb4_unicode_ci, `is_featured` tinyint(1) NOT NULL DEFAULT '0', `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `images` text COLLATE utf8mb4_unicode_ci, `views` int NOT NULL DEFAULT '0', `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `pf_services_category_id_index` (`category_id`) ) ENGINE=InnoDB AUTO_INCREMENT=14 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pf_services` -- LOCK TABLES `pf_services` WRITE; /*!40000 ALTER TABLE `pf_services` DISABLE KEYS */; INSERT INTO `pf_services` VALUES (1,1,'Data Analyst','Consequuntur maiores ea aspernatur quidem commodi fugit. Similique ducimus consequatur veniam tempora at dolor. Et sint ex occaecati placeat.','<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n[content-feature-list quantity=\"2\" title_1=\"Extend Coverage\" icon_1=\"ti ti-plant-2\" description_1=\"We successfully copey withtks arying mplexity aweprguara nd regularly master\" title_2=\"Modern Insurance\" icon_2=\"ti ti-assembly\" description_2=\"Master the art of negotiation and achieve mutually beneficial outcomes.\"][/content-feature-list]\n<p>Although we offer the one-stop convenience of annery integrated range of legal, financial services under one roof, there are occasions when our clients areaneed specia- list advice beyond the scope of our own expertise. That’s why we’ve developed close working relationships with a number of strategic partner.</p>\n[content-featured title=\"Raise Capital Faster & Negotiate On Your Own Terms\" description=\"Accelerate your business growth and secure funding with confidence through our comprehensive services tailored to meet your needs.\" image=\"general/content-featured.jpg\" quantity=\"3\" title_1=\"Business Growth\" title_2=\"Analysis & Research\" title_3=\"100% Secure\"][/content-featured]\n<p>Finanappreciate your trust greatly Our clients choose dentace ducts because kn ow we are the best area Awaitingare really.</p>\n',1,'news/1.jpg','[\"news\\/1.jpg\"]',8198,'published','2024-06-18 23:00:04','2024-06-18 23:00:04'),(2,1,'Liability Planner','Quia ut sunt et dolore. Earum a doloremque aliquid voluptatem sed alias. Et non magnam quisquam unde molestias. Aspernatur vero id minima.','<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n[content-feature-list quantity=\"2\" title_1=\"Extend Coverage\" icon_1=\"ti ti-plant-2\" description_1=\"We successfully copey withtks arying mplexity aweprguara nd regularly master\" title_2=\"Modern Insurance\" icon_2=\"ti ti-assembly\" description_2=\"Master the art of negotiation and achieve mutually beneficial outcomes.\"][/content-feature-list]\n<p>Although we offer the one-stop convenience of annery integrated range of legal, financial services under one roof, there are occasions when our clients areaneed specia- list advice beyond the scope of our own expertise. That’s why we’ve developed close working relationships with a number of strategic partner.</p>\n[content-featured title=\"Raise Capital Faster & Negotiate On Your Own Terms\" description=\"Accelerate your business growth and secure funding with confidence through our comprehensive services tailored to meet your needs.\" image=\"general/content-featured.jpg\" quantity=\"3\" title_1=\"Business Growth\" title_2=\"Analysis & Research\" title_3=\"100% Secure\"][/content-featured]\n<p>Finanappreciate your trust greatly Our clients choose dentace ducts because kn ow we are the best area Awaitingare really.</p>\n',0,'news/3.jpg','[\"news\\/3.jpg\"]',9842,'published','2024-06-18 23:00:04','2024-06-18 23:00:04'),(3,1,'Growth Planner','Eum repellendus autem officia laboriosam quas aut est vitae. Fugit est velit autem iste dicta modi ratione.','<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n[content-feature-list quantity=\"2\" title_1=\"Extend Coverage\" icon_1=\"ti ti-plant-2\" description_1=\"We successfully copey withtks arying mplexity aweprguara nd regularly master\" title_2=\"Modern Insurance\" icon_2=\"ti ti-assembly\" description_2=\"Master the art of negotiation and achieve mutually beneficial outcomes.\"][/content-feature-list]\n<p>Although we offer the one-stop convenience of annery integrated range of legal, financial services under one roof, there are occasions when our clients areaneed specia- list advice beyond the scope of our own expertise. That’s why we’ve developed close working relationships with a number of strategic partner.</p>\n[content-featured title=\"Raise Capital Faster & Negotiate On Your Own Terms\" description=\"Accelerate your business growth and secure funding with confidence through our comprehensive services tailored to meet your needs.\" image=\"general/content-featured.jpg\" quantity=\"3\" title_1=\"Business Growth\" title_2=\"Analysis & Research\" title_3=\"100% Secure\"][/content-featured]\n<p>Finanappreciate your trust greatly Our clients choose dentace ducts because kn ow we are the best area Awaitingare really.</p>\n',1,'news/4.jpg','[\"news\\/2.jpg\"]',7555,'published','2024-06-18 23:00:04','2024-06-18 23:00:04'),(4,2,'Risk Manager','Sit enim qui eos quibusdam error corporis. Error autem animi quia fugiat corrupti quia incidunt. Qui est labore dolor voluptatum modi.','<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n[content-feature-list quantity=\"2\" title_1=\"Extend Coverage\" icon_1=\"ti ti-plant-2\" description_1=\"We successfully copey withtks arying mplexity aweprguara nd regularly master\" title_2=\"Modern Insurance\" icon_2=\"ti ti-assembly\" description_2=\"Master the art of negotiation and achieve mutually beneficial outcomes.\"][/content-feature-list]\n<p>Although we offer the one-stop convenience of annery integrated range of legal, financial services under one roof, there are occasions when our clients areaneed specia- list advice beyond the scope of our own expertise. That’s why we’ve developed close working relationships with a number of strategic partner.</p>\n[content-featured title=\"Raise Capital Faster & Negotiate On Your Own Terms\" description=\"Accelerate your business growth and secure funding with confidence through our comprehensive services tailored to meet your needs.\" image=\"general/content-featured.jpg\" quantity=\"3\" title_1=\"Business Growth\" title_2=\"Analysis & Research\" title_3=\"100% Secure\"][/content-featured]\n<p>Finanappreciate your trust greatly Our clients choose dentace ducts because kn ow we are the best area Awaitingare really.</p>\n',0,'news/2.jpg','[\"news\\/4.jpg\"]',1606,'published','2024-06-18 23:00:04','2024-06-18 23:00:04'),(5,2,'Retirement Planner','Quasi dolor expedita molestiae voluptas. Voluptatem facere ipsam porro qui voluptas. Sint quae ex hic. Ad et doloremque ea reiciendis doloribus error aspernatur.','<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n[content-feature-list quantity=\"2\" title_1=\"Extend Coverage\" icon_1=\"ti ti-plant-2\" description_1=\"We successfully copey withtks arying mplexity aweprguara nd regularly master\" title_2=\"Modern Insurance\" icon_2=\"ti ti-assembly\" description_2=\"Master the art of negotiation and achieve mutually beneficial outcomes.\"][/content-feature-list]\n<p>Although we offer the one-stop convenience of annery integrated range of legal, financial services under one roof, there are occasions when our clients areaneed specia- list advice beyond the scope of our own expertise. That’s why we’ve developed close working relationships with a number of strategic partner.</p>\n[content-featured title=\"Raise Capital Faster & Negotiate On Your Own Terms\" description=\"Accelerate your business growth and secure funding with confidence through our comprehensive services tailored to meet your needs.\" image=\"general/content-featured.jpg\" quantity=\"3\" title_1=\"Business Growth\" title_2=\"Analysis & Research\" title_3=\"100% Secure\"][/content-featured]\n<p>Finanappreciate your trust greatly Our clients choose dentace ducts because kn ow we are the best area Awaitingare really.</p>\n',1,'news/4.jpg','[\"news\\/3.jpg\"]',1270,'published','2024-06-18 23:00:05','2024-06-18 23:00:05'),(6,3,'Risk Analyst','Occaecati harum et eaque porro id laboriosam id. Itaque blanditiis odio qui culpa esse rerum temporibus. Sunt error suscipit quae aperiam sint rerum.','<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n[content-feature-list quantity=\"2\" title_1=\"Extend Coverage\" icon_1=\"ti ti-plant-2\" description_1=\"We successfully copey withtks arying mplexity aweprguara nd regularly master\" title_2=\"Modern Insurance\" icon_2=\"ti ti-assembly\" description_2=\"Master the art of negotiation and achieve mutually beneficial outcomes.\"][/content-feature-list]\n<p>Although we offer the one-stop convenience of annery integrated range of legal, financial services under one roof, there are occasions when our clients areaneed specia- list advice beyond the scope of our own expertise. That’s why we’ve developed close working relationships with a number of strategic partner.</p>\n[content-featured title=\"Raise Capital Faster & Negotiate On Your Own Terms\" description=\"Accelerate your business growth and secure funding with confidence through our comprehensive services tailored to meet your needs.\" image=\"general/content-featured.jpg\" quantity=\"3\" title_1=\"Business Growth\" title_2=\"Analysis & Research\" title_3=\"100% Secure\"][/content-featured]\n<p>Finanappreciate your trust greatly Our clients choose dentace ducts because kn ow we are the best area Awaitingare really.</p>\n',0,'news/2.jpg','[\"news\\/2.jpg\"]',1410,'published','2024-06-18 23:00:05','2024-06-18 23:00:05'),(7,1,'Insurance Expert','Consequatur numquam dolorem vel ut suscipit consectetur. Sapiente rerum consequuntur ut harum. Eligendi dignissimos ut eos doloremque fuga.','<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n[content-feature-list quantity=\"2\" title_1=\"Extend Coverage\" icon_1=\"ti ti-plant-2\" description_1=\"We successfully copey withtks arying mplexity aweprguara nd regularly master\" title_2=\"Modern Insurance\" icon_2=\"ti ti-assembly\" description_2=\"Master the art of negotiation and achieve mutually beneficial outcomes.\"][/content-feature-list]\n<p>Although we offer the one-stop convenience of annery integrated range of legal, financial services under one roof, there are occasions when our clients areaneed specia- list advice beyond the scope of our own expertise. That’s why we’ve developed close working relationships with a number of strategic partner.</p>\n[content-featured title=\"Raise Capital Faster & Negotiate On Your Own Terms\" description=\"Accelerate your business growth and secure funding with confidence through our comprehensive services tailored to meet your needs.\" image=\"general/content-featured.jpg\" quantity=\"3\" title_1=\"Business Growth\" title_2=\"Analysis & Research\" title_3=\"100% Secure\"][/content-featured]\n<p>Finanappreciate your trust greatly Our clients choose dentace ducts because kn ow we are the best area Awaitingare really.</p>\n',0,'news/4.jpg','[\"news\\/4.jpg\"]',3368,'published','2024-06-18 23:00:05','2024-06-18 23:00:05'),(8,2,'Budget Manager','Et expedita necessitatibus velit sit corporis. Iste et dolor voluptas aut cumque doloribus ut.','<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n[content-feature-list quantity=\"2\" title_1=\"Extend Coverage\" icon_1=\"ti ti-plant-2\" description_1=\"We successfully copey withtks arying mplexity aweprguara nd regularly master\" title_2=\"Modern Insurance\" icon_2=\"ti ti-assembly\" description_2=\"Master the art of negotiation and achieve mutually beneficial outcomes.\"][/content-feature-list]\n<p>Although we offer the one-stop convenience of annery integrated range of legal, financial services under one roof, there are occasions when our clients areaneed specia- list advice beyond the scope of our own expertise. That’s why we’ve developed close working relationships with a number of strategic partner.</p>\n[content-featured title=\"Raise Capital Faster & Negotiate On Your Own Terms\" description=\"Accelerate your business growth and secure funding with confidence through our comprehensive services tailored to meet your needs.\" image=\"general/content-featured.jpg\" quantity=\"3\" title_1=\"Business Growth\" title_2=\"Analysis & Research\" title_3=\"100% Secure\"][/content-featured]\n<p>Finanappreciate your trust greatly Our clients choose dentace ducts because kn ow we are the best area Awaitingare really.</p>\n',0,'news/2.jpg','[\"news\\/4.jpg\"]',353,'published','2024-06-18 23:00:05','2024-06-18 23:00:05'),(9,2,'Strategy Adviser','Eligendi odio ipsum voluptatibus aut magnam. Voluptatem illo autem quia veritatis quia eos. Exercitationem distinctio molestiae necessitatibus illo velit.','<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n[content-feature-list quantity=\"2\" title_1=\"Extend Coverage\" icon_1=\"ti ti-plant-2\" description_1=\"We successfully copey withtks arying mplexity aweprguara nd regularly master\" title_2=\"Modern Insurance\" icon_2=\"ti ti-assembly\" description_2=\"Master the art of negotiation and achieve mutually beneficial outcomes.\"][/content-feature-list]\n<p>Although we offer the one-stop convenience of annery integrated range of legal, financial services under one roof, there are occasions when our clients areaneed specia- list advice beyond the scope of our own expertise. That’s why we’ve developed close working relationships with a number of strategic partner.</p>\n[content-featured title=\"Raise Capital Faster & Negotiate On Your Own Terms\" description=\"Accelerate your business growth and secure funding with confidence through our comprehensive services tailored to meet your needs.\" image=\"general/content-featured.jpg\" quantity=\"3\" title_1=\"Business Growth\" title_2=\"Analysis & Research\" title_3=\"100% Secure\"][/content-featured]\n<p>Finanappreciate your trust greatly Our clients choose dentace ducts because kn ow we are the best area Awaitingare really.</p>\n',1,'news/1.jpg','[\"news\\/4.jpg\"]',6913,'published','2024-06-18 23:00:05','2024-06-18 23:00:05'),(10,3,'Operations Expert','Autem consequuntur suscipit quidem minus. Culpa nihil laudantium distinctio vel non. Eligendi omnis molestiae corporis quo dolorum.','<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n[content-feature-list quantity=\"2\" title_1=\"Extend Coverage\" icon_1=\"ti ti-plant-2\" description_1=\"We successfully copey withtks arying mplexity aweprguara nd regularly master\" title_2=\"Modern Insurance\" icon_2=\"ti ti-assembly\" description_2=\"Master the art of negotiation and achieve mutually beneficial outcomes.\"][/content-feature-list]\n<p>Although we offer the one-stop convenience of annery integrated range of legal, financial services under one roof, there are occasions when our clients areaneed specia- list advice beyond the scope of our own expertise. That’s why we’ve developed close working relationships with a number of strategic partner.</p>\n[content-featured title=\"Raise Capital Faster & Negotiate On Your Own Terms\" description=\"Accelerate your business growth and secure funding with confidence through our comprehensive services tailored to meet your needs.\" image=\"general/content-featured.jpg\" quantity=\"3\" title_1=\"Business Growth\" title_2=\"Analysis & Research\" title_3=\"100% Secure\"][/content-featured]\n<p>Finanappreciate your trust greatly Our clients choose dentace ducts because kn ow we are the best area Awaitingare really.</p>\n',0,'news/2.jpg','[\"news\\/4.jpg\"]',6809,'published','2024-06-18 23:00:05','2024-06-18 23:00:05'),(11,3,'Profit Strategist','Sint veniam delectus molestias. Consequatur in dolor commodi omnis consectetur. Non expedita neque est eveniet. Impedit delectus ex in sit.','<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n[content-feature-list quantity=\"2\" title_1=\"Extend Coverage\" icon_1=\"ti ti-plant-2\" description_1=\"We successfully copey withtks arying mplexity aweprguara nd regularly master\" title_2=\"Modern Insurance\" icon_2=\"ti ti-assembly\" description_2=\"Master the art of negotiation and achieve mutually beneficial outcomes.\"][/content-feature-list]\n<p>Although we offer the one-stop convenience of annery integrated range of legal, financial services under one roof, there are occasions when our clients areaneed specia- list advice beyond the scope of our own expertise. That’s why we’ve developed close working relationships with a number of strategic partner.</p>\n[content-featured title=\"Raise Capital Faster & Negotiate On Your Own Terms\" description=\"Accelerate your business growth and secure funding with confidence through our comprehensive services tailored to meet your needs.\" image=\"general/content-featured.jpg\" quantity=\"3\" title_1=\"Business Growth\" title_2=\"Analysis & Research\" title_3=\"100% Secure\"][/content-featured]\n<p>Finanappreciate your trust greatly Our clients choose dentace ducts because kn ow we are the best area Awaitingare really.</p>\n',0,'news/1.jpg','[\"news\\/4.jpg\"]',2031,'published','2024-06-18 23:00:05','2024-06-18 23:00:05'),(12,4,'Objective Planner','Iusto nulla omnis dicta necessitatibus tempore. Consequatur quia qui rerum. Id sit ex qui atque aliquid assumenda ullam. Praesentium labore in voluptatem nulla ducimus.','<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n[content-feature-list quantity=\"2\" title_1=\"Extend Coverage\" icon_1=\"ti ti-plant-2\" description_1=\"We successfully copey withtks arying mplexity aweprguara nd regularly master\" title_2=\"Modern Insurance\" icon_2=\"ti ti-assembly\" description_2=\"Master the art of negotiation and achieve mutually beneficial outcomes.\"][/content-feature-list]\n<p>Although we offer the one-stop convenience of annery integrated range of legal, financial services under one roof, there are occasions when our clients areaneed specia- list advice beyond the scope of our own expertise. That’s why we’ve developed close working relationships with a number of strategic partner.</p>\n[content-featured title=\"Raise Capital Faster & Negotiate On Your Own Terms\" description=\"Accelerate your business growth and secure funding with confidence through our comprehensive services tailored to meet your needs.\" image=\"general/content-featured.jpg\" quantity=\"3\" title_1=\"Business Growth\" title_2=\"Analysis & Research\" title_3=\"100% Secure\"][/content-featured]\n<p>Finanappreciate your trust greatly Our clients choose dentace ducts because kn ow we are the best area Awaitingare really.</p>\n',0,'news/2.jpg','[\"news\\/4.jpg\"]',9359,'published','2024-06-18 23:00:05','2024-06-18 23:00:05'),(13,1,'Goal Specialist','Necessitatibus ut omnis non corrupti labore beatae voluptatem aut. Expedita vel eum sit nemo corporis a consequuntur. Enim ducimus eius officiis distinctio qui deserunt.','<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n[content-feature-list quantity=\"2\" title_1=\"Extend Coverage\" icon_1=\"ti ti-plant-2\" description_1=\"We successfully copey withtks arying mplexity aweprguara nd regularly master\" title_2=\"Modern Insurance\" icon_2=\"ti ti-assembly\" description_2=\"Master the art of negotiation and achieve mutually beneficial outcomes.\"][/content-feature-list]\n<p>Although we offer the one-stop convenience of annery integrated range of legal, financial services under one roof, there are occasions when our clients areaneed specia- list advice beyond the scope of our own expertise. That’s why we’ve developed close working relationships with a number of strategic partner.</p>\n[content-featured title=\"Raise Capital Faster & Negotiate On Your Own Terms\" description=\"Accelerate your business growth and secure funding with confidence through our comprehensive services tailored to meet your needs.\" image=\"general/content-featured.jpg\" quantity=\"3\" title_1=\"Business Growth\" title_2=\"Analysis & Research\" title_3=\"100% Secure\"][/content-featured]\n<p>Finanappreciate your trust greatly Our clients choose dentace ducts because kn ow we are the best area Awaitingare really.</p>\n',1,'news/3.jpg','[\"news\\/4.jpg\"]',2120,'published','2024-06-18 23:00:05','2024-06-18 23:00:05'); /*!40000 ALTER TABLE `pf_services` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `pf_services_translations` -- DROP TABLE IF EXISTS `pf_services_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `pf_services_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `pf_services_id` bigint unsigned NOT NULL, `name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`lang_code`,`pf_services_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `pf_services_translations` -- LOCK TABLES `pf_services_translations` WRITE; /*!40000 ALTER TABLE `pf_services_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `pf_services_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `post_categories` -- DROP TABLE IF EXISTS `post_categories`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `post_categories` ( `category_id` bigint unsigned NOT NULL, `post_id` bigint unsigned NOT NULL, KEY `post_categories_category_id_index` (`category_id`), KEY `post_categories_post_id_index` (`post_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `post_categories` -- LOCK TABLES `post_categories` WRITE; /*!40000 ALTER TABLE `post_categories` DISABLE KEYS */; INSERT INTO `post_categories` VALUES (4,1),(16,1),(16,2),(2,2),(19,3),(20,3),(10,4),(12,5),(7,5),(13,6),(18,6),(5,7),(12,7),(14,8),(12,8),(8,9),(6,9),(11,10),(19,10),(13,11),(1,11),(19,12),(11,12),(12,13),(4,13),(17,14),(8,14),(2,15),(19,15),(5,16),(1,16),(4,17),(18,17),(11,18),(10,18),(13,19),(19,19); /*!40000 ALTER TABLE `post_categories` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `post_tags` -- DROP TABLE IF EXISTS `post_tags`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `post_tags` ( `tag_id` bigint unsigned NOT NULL, `post_id` bigint unsigned NOT NULL, KEY `post_tags_tag_id_index` (`tag_id`), KEY `post_tags_post_id_index` (`post_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `post_tags` -- LOCK TABLES `post_tags` WRITE; /*!40000 ALTER TABLE `post_tags` DISABLE KEYS */; INSERT INTO `post_tags` VALUES (16,1),(19,1),(5,1),(10,2),(15,2),(14,2),(3,3),(2,3),(12,4),(11,4),(7,4),(14,5),(17,5),(3,5),(9,6),(4,6),(10,6),(9,7),(10,7),(15,7),(11,8),(16,8),(17,8),(7,9),(3,9),(4,9),(1,10),(11,10),(16,10),(16,11),(6,11),(9,12),(6,12),(8,13),(15,13),(2,13),(13,14),(7,14),(6,14),(5,15),(15,15),(19,16),(13,16),(8,16),(15,17),(19,17),(11,17),(20,18),(6,18),(18,18),(14,19),(9,19); /*!40000 ALTER TABLE `post_tags` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `posts` -- DROP TABLE IF EXISTS `posts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `posts` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` longtext COLLATE utf8mb4_unicode_ci, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `author_id` bigint unsigned DEFAULT NULL, `author_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User', `is_featured` tinyint unsigned NOT NULL DEFAULT '0', `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `views` int unsigned NOT NULL DEFAULT '0', `format_type` varchar(30) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `posts_status_index` (`status`), KEY `posts_author_id_index` (`author_id`), KEY `posts_author_type_index` (`author_type`), KEY `posts_created_at_index` (`created_at`) ) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `posts` -- LOCK TABLES `posts` WRITE; /*!40000 ALTER TABLE `posts` DISABLE KEYS */; INSERT INTO `posts` VALUES (1,'The Power of Networking: Building Relationships for Business Growth','Learn how to build strategic connections and leverage your network to propel your business forward.','[content-quote content_text=\"“ Urabitur Varius Eros Rutrum Consequat Mauris Aewa Sollicitudin Enim Condimentum Luctus Enim Justo Non Molestie Nisl ”\" background_color=\"#F8FAFF\"][/content-quote]\n<h4 class=\"title-two\">Speed Optimized</h4>\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n[content-featured title=\"Raise Capital Faster & Negotiate On Your Own Terms\" description=\"Accelerate your business growth and secure funding with confidence through our comprehensive services tailored to meet your needs.\" image=\"general/content-featured.jpg\" quantity=\"3\" title_1=\"Business Growth\" title_2=\"Analysis & Research\" title_3=\"100% Secure\"][/content-featured]\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/1.jpg',1877,NULL,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(2,'5 Productivity Hacks for Busy Entrepreneurs','Feeling overwhelmed? Discover practical tips to maximize your time and achieve more in your workday.','[content-quote content_text=\"“ Urabitur Varius Eros Rutrum Consequat Mauris Aewa Sollicitudin Enim Condimentum Luctus Enim Justo Non Molestie Nisl ”\" background_color=\"#F8FAFF\"][/content-quote]\n<h4 class=\"title-two\">Speed Optimized</h4>\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n[content-featured title=\"Raise Capital Faster & Negotiate On Your Own Terms\" description=\"Accelerate your business growth and secure funding with confidence through our comprehensive services tailored to meet your needs.\" image=\"general/content-featured.jpg\" quantity=\"3\" title_1=\"Business Growth\" title_2=\"Analysis & Research\" title_3=\"100% Secure\"][/content-featured]\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/2.jpg',1502,NULL,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(3,'From Brainstorm to Boardroom: Crafting a Winning Business Plan','Unleash your inner strategist. This post outlines the key elements of a compelling business plan.','[content-quote content_text=\"“ Urabitur Varius Eros Rutrum Consequat Mauris Aewa Sollicitudin Enim Condimentum Luctus Enim Justo Non Molestie Nisl ”\" background_color=\"#F8FAFF\"][/content-quote]\n<h4 class=\"title-two\">Speed Optimized</h4>\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n[content-featured title=\"Raise Capital Faster & Negotiate On Your Own Terms\" description=\"Accelerate your business growth and secure funding with confidence through our comprehensive services tailored to meet your needs.\" image=\"general/content-featured.jpg\" quantity=\"3\" title_1=\"Business Growth\" title_2=\"Analysis & Research\" title_3=\"100% Secure\"][/content-featured]\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/3.jpg',450,NULL,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(4,'The Art of Delegation: Empowering Your Team for Success','Effective leaders empower others. Learn how to delegate tasks effectively and unlock your team\'s full potential.','[content-quote content_text=\"“ Urabitur Varius Eros Rutrum Consequat Mauris Aewa Sollicitudin Enim Condimentum Luctus Enim Justo Non Molestie Nisl ”\" background_color=\"#F8FAFF\"][/content-quote]\n<h4 class=\"title-two\">Speed Optimized</h4>\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n[content-featured title=\"Raise Capital Faster & Negotiate On Your Own Terms\" description=\"Accelerate your business growth and secure funding with confidence through our comprehensive services tailored to meet your needs.\" image=\"general/content-featured.jpg\" quantity=\"3\" title_1=\"Business Growth\" title_2=\"Analysis & Research\" title_3=\"100% Secure\"][/content-featured]\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/4.jpg',242,NULL,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(5,'Customer Centricity: Putting Your Customers at the Heart of Your Business','In today\'s competitive market, customer satisfaction is paramount. Discover strategies to prioritize your customers.','[content-quote content_text=\"“ Urabitur Varius Eros Rutrum Consequat Mauris Aewa Sollicitudin Enim Condimentum Luctus Enim Justo Non Molestie Nisl ”\" background_color=\"#F8FAFF\"][/content-quote]\n<h4 class=\"title-two\">Speed Optimized</h4>\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n[content-featured title=\"Raise Capital Faster & Negotiate On Your Own Terms\" description=\"Accelerate your business growth and secure funding with confidence through our comprehensive services tailored to meet your needs.\" image=\"general/content-featured.jpg\" quantity=\"3\" title_1=\"Business Growth\" title_2=\"Analysis & Research\" title_3=\"100% Secure\"][/content-featured]\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/5.jpg',1943,NULL,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(6,'Data-Driven Decisions: Leveraging Insights to Fuel Business Growth','Data is king. Learn how to harness the power of data analytics to make informed decisions for your business.','[content-quote content_text=\"“ Urabitur Varius Eros Rutrum Consequat Mauris Aewa Sollicitudin Enim Condimentum Luctus Enim Justo Non Molestie Nisl ”\" background_color=\"#F8FAFF\"][/content-quote]\n<h4 class=\"title-two\">Speed Optimized</h4>\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n[content-featured title=\"Raise Capital Faster & Negotiate On Your Own Terms\" description=\"Accelerate your business growth and secure funding with confidence through our comprehensive services tailored to meet your needs.\" image=\"general/content-featured.jpg\" quantity=\"3\" title_1=\"Business Growth\" title_2=\"Analysis & Research\" title_3=\"100% Secure\"][/content-featured]\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/6.jpg',1154,NULL,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(7,'Building a Strong Brand Identity: Standing Out from the Crowd','Create a brand that resonates with your audience. Explore strategies to develop a unique and memorable brand identity.','[content-quote content_text=\"“ Urabitur Varius Eros Rutrum Consequat Mauris Aewa Sollicitudin Enim Condimentum Luctus Enim Justo Non Molestie Nisl ”\" background_color=\"#F8FAFF\"][/content-quote]\n<h4 class=\"title-two\">Speed Optimized</h4>\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n[content-featured title=\"Raise Capital Faster & Negotiate On Your Own Terms\" description=\"Accelerate your business growth and secure funding with confidence through our comprehensive services tailored to meet your needs.\" image=\"general/content-featured.jpg\" quantity=\"3\" title_1=\"Business Growth\" title_2=\"Analysis & Research\" title_3=\"100% Secure\"][/content-featured]\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/7.jpg',1537,NULL,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(8,'The Importance of Social Media Marketing for Businesses','Reach a wider audience and engage with potential customers. Discover the power of social media marketing for businesses.','[content-quote content_text=\"“ Urabitur Varius Eros Rutrum Consequat Mauris Aewa Sollicitudin Enim Condimentum Luctus Enim Justo Non Molestie Nisl ”\" background_color=\"#F8FAFF\"][/content-quote]\n<h4 class=\"title-two\">Speed Optimized</h4>\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n[content-featured title=\"Raise Capital Faster & Negotiate On Your Own Terms\" description=\"Accelerate your business growth and secure funding with confidence through our comprehensive services tailored to meet your needs.\" image=\"general/content-featured.jpg\" quantity=\"3\" title_1=\"Business Growth\" title_2=\"Analysis & Research\" title_3=\"100% Secure\"][/content-featured]\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/8.jpg',1358,NULL,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(9,'Content is King: Creating Engaging Content to Attract Customers','High-quality content is key to attracting and retaining customers. Explore strategies to create valuable and engaging content.','[content-quote content_text=\"“ Urabitur Varius Eros Rutrum Consequat Mauris Aewa Sollicitudin Enim Condimentum Luctus Enim Justo Non Molestie Nisl ”\" background_color=\"#F8FAFF\"][/content-quote]\n<h4 class=\"title-two\">Speed Optimized</h4>\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n[content-featured title=\"Raise Capital Faster & Negotiate On Your Own Terms\" description=\"Accelerate your business growth and secure funding with confidence through our comprehensive services tailored to meet your needs.\" image=\"general/content-featured.jpg\" quantity=\"3\" title_1=\"Business Growth\" title_2=\"Analysis & Research\" title_3=\"100% Secure\"][/content-featured]\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/9.jpg',2268,NULL,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(10,'The Art of Negotiation: Winning Deals and Building Relationships','Master the art of negotiation and achieve mutually beneficial outcomes. Learn effective negotiation strategies for business.','[content-quote content_text=\"“ Urabitur Varius Eros Rutrum Consequat Mauris Aewa Sollicitudin Enim Condimentum Luctus Enim Justo Non Molestie Nisl ”\" background_color=\"#F8FAFF\"][/content-quote]\n<h4 class=\"title-two\">Speed Optimized</h4>\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n[content-featured title=\"Raise Capital Faster & Negotiate On Your Own Terms\" description=\"Accelerate your business growth and secure funding with confidence through our comprehensive services tailored to meet your needs.\" image=\"general/content-featured.jpg\" quantity=\"3\" title_1=\"Business Growth\" title_2=\"Analysis & Research\" title_3=\"100% Secure\"][/content-featured]\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n','published',1,'Botble\\ACL\\Models\\User',1,'news/10.jpg',959,NULL,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(11,'Managing Cash Flow: The Lifeblood of Your Business','Cash flow is crucial for any business. Explore strategies to manage your cash flow effectively and ensure financial stability.','[content-quote content_text=\"“ Urabitur Varius Eros Rutrum Consequat Mauris Aewa Sollicitudin Enim Condimentum Luctus Enim Justo Non Molestie Nisl ”\" background_color=\"#F8FAFF\"][/content-quote]\n<h4 class=\"title-two\">Speed Optimized</h4>\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n[content-featured title=\"Raise Capital Faster & Negotiate On Your Own Terms\" description=\"Accelerate your business growth and secure funding with confidence through our comprehensive services tailored to meet your needs.\" image=\"general/content-featured.jpg\" quantity=\"3\" title_1=\"Business Growth\" title_2=\"Analysis & Research\" title_3=\"100% Secure\"][/content-featured]\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n','published',1,'Botble\\ACL\\Models\\User',0,'news/11.jpg',2473,NULL,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(12,'The Power of Storytelling: Connecting with Your Audience on a Deeper Level','Stories have the power to inspire and connect. Learn how storytelling can enhance your marketing and brand communication.','[content-quote content_text=\"“ Urabitur Varius Eros Rutrum Consequat Mauris Aewa Sollicitudin Enim Condimentum Luctus Enim Justo Non Molestie Nisl ”\" background_color=\"#F8FAFF\"][/content-quote]\n<h4 class=\"title-two\">Speed Optimized</h4>\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n[content-featured title=\"Raise Capital Faster & Negotiate On Your Own Terms\" description=\"Accelerate your business growth and secure funding with confidence through our comprehensive services tailored to meet your needs.\" image=\"general/content-featured.jpg\" quantity=\"3\" title_1=\"Business Growth\" title_2=\"Analysis & Research\" title_3=\"100% Secure\"][/content-featured]\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n','published',1,'Botble\\ACL\\Models\\User',0,'news/12.jpg',1660,NULL,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(13,'Overcoming Challenges: Embracing Failure as a Learning Opportunity','Challenges are inevitable in business. Discover how to overcome obstacles and use setbacks as fuel for growth.','[content-quote content_text=\"“ Urabitur Varius Eros Rutrum Consequat Mauris Aewa Sollicitudin Enim Condimentum Luctus Enim Justo Non Molestie Nisl ”\" background_color=\"#F8FAFF\"][/content-quote]\n<h4 class=\"title-two\">Speed Optimized</h4>\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n[content-featured title=\"Raise Capital Faster & Negotiate On Your Own Terms\" description=\"Accelerate your business growth and secure funding with confidence through our comprehensive services tailored to meet your needs.\" image=\"general/content-featured.jpg\" quantity=\"3\" title_1=\"Business Growth\" title_2=\"Analysis & Research\" title_3=\"100% Secure\"][/content-featured]\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n','published',1,'Botble\\ACL\\Models\\User',0,'news/13.jpg',1005,NULL,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(14,'Building a High-Performing Team: Creating a Culture of Collaboration and Success','The strength of a business lies in its people. Explore strategies to foster a collaborative and successful team environment.','[content-quote content_text=\"“ Urabitur Varius Eros Rutrum Consequat Mauris Aewa Sollicitudin Enim Condimentum Luctus Enim Justo Non Molestie Nisl ”\" background_color=\"#F8FAFF\"][/content-quote]\n<h4 class=\"title-two\">Speed Optimized</h4>\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n[content-featured title=\"Raise Capital Faster & Negotiate On Your Own Terms\" description=\"Accelerate your business growth and secure funding with confidence through our comprehensive services tailored to meet your needs.\" image=\"general/content-featured.jpg\" quantity=\"3\" title_1=\"Business Growth\" title_2=\"Analysis & Research\" title_3=\"100% Secure\"][/content-featured]\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n','published',1,'Botble\\ACL\\Models\\User',0,'news/14.jpg',446,NULL,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(15,'The Importance of Work-Life Balance for Entrepreneurs','Burnout is real. Learn how to maintain a healthy work-life balance for long-term success as an entrepreneur.','[content-quote content_text=\"“ Urabitur Varius Eros Rutrum Consequat Mauris Aewa Sollicitudin Enim Condimentum Luctus Enim Justo Non Molestie Nisl ”\" background_color=\"#F8FAFF\"][/content-quote]\n<h4 class=\"title-two\">Speed Optimized</h4>\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n[content-featured title=\"Raise Capital Faster & Negotiate On Your Own Terms\" description=\"Accelerate your business growth and secure funding with confidence through our comprehensive services tailored to meet your needs.\" image=\"general/content-featured.jpg\" quantity=\"3\" title_1=\"Business Growth\" title_2=\"Analysis & Research\" title_3=\"100% Secure\"][/content-featured]\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n','published',1,'Botble\\ACL\\Models\\User',0,'news/15.jpg',2099,NULL,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(16,'Staying Ahead of the Curve: Embracing Innovation in Business','In a rapidly changing world, innovation is key. Learn strategies to stay ahead of the curve and adapt to industry trends.','[content-quote content_text=\"“ Urabitur Varius Eros Rutrum Consequat Mauris Aewa Sollicitudin Enim Condimentum Luctus Enim Justo Non Molestie Nisl ”\" background_color=\"#F8FAFF\"][/content-quote]\n<h4 class=\"title-two\">Speed Optimized</h4>\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n[content-featured title=\"Raise Capital Faster & Negotiate On Your Own Terms\" description=\"Accelerate your business growth and secure funding with confidence through our comprehensive services tailored to meet your needs.\" image=\"general/content-featured.jpg\" quantity=\"3\" title_1=\"Business Growth\" title_2=\"Analysis & Research\" title_3=\"100% Secure\"][/content-featured]\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n','published',1,'Botble\\ACL\\Models\\User',0,'news/16.jpg',1724,NULL,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(17,'The Power of Public Speaking: Captivate Your Audience and Deliver Your Message with Impact','Master the art of public speaking to elevate your presentations and connect with your audience effectively.','[content-quote content_text=\"“ Urabitur Varius Eros Rutrum Consequat Mauris Aewa Sollicitudin Enim Condimentum Luctus Enim Justo Non Molestie Nisl ”\" background_color=\"#F8FAFF\"][/content-quote]\n<h4 class=\"title-two\">Speed Optimized</h4>\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n[content-featured title=\"Raise Capital Faster & Negotiate On Your Own Terms\" description=\"Accelerate your business growth and secure funding with confidence through our comprehensive services tailored to meet your needs.\" image=\"general/content-featured.jpg\" quantity=\"3\" title_1=\"Business Growth\" title_2=\"Analysis & Research\" title_3=\"100% Secure\"][/content-featured]\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n','published',1,'Botble\\ACL\\Models\\User',0,'news/17.jpg',437,NULL,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(18,'Building a Sustainable Business: Environmental and Social Responsibility','Today\'s consumers are conscious. Learn how to build a sustainable business model that prioritizes social responsibility.','[content-quote content_text=\"“ Urabitur Varius Eros Rutrum Consequat Mauris Aewa Sollicitudin Enim Condimentum Luctus Enim Justo Non Molestie Nisl ”\" background_color=\"#F8FAFF\"][/content-quote]\n<h4 class=\"title-two\">Speed Optimized</h4>\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n[content-featured title=\"Raise Capital Faster & Negotiate On Your Own Terms\" description=\"Accelerate your business growth and secure funding with confidence through our comprehensive services tailored to meet your needs.\" image=\"general/content-featured.jpg\" quantity=\"3\" title_1=\"Business Growth\" title_2=\"Analysis & Research\" title_3=\"100% Secure\"][/content-featured]\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n','published',1,'Botble\\ACL\\Models\\User',0,'news/18.jpg',546,NULL,'2024-06-18 23:00:02','2024-06-18 23:00:02'),(19,'The Future of Business: Trends and Technologies Shaping the Landscape','Explore emerging trends and technologies that are shaping the future of business. Prepare your business for what\'s to come.','[content-quote content_text=\"“ Urabitur Varius Eros Rutrum Consequat Mauris Aewa Sollicitudin Enim Condimentum Luctus Enim Justo Non Molestie Nisl ”\" background_color=\"#F8FAFF\"][/content-quote]\n<h4 class=\"title-two\">Speed Optimized</h4>\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n[content-featured title=\"Raise Capital Faster & Negotiate On Your Own Terms\" description=\"Accelerate your business growth and secure funding with confidence through our comprehensive services tailored to meet your needs.\" image=\"general/content-featured.jpg\" quantity=\"3\" title_1=\"Business Growth\" title_2=\"Analysis & Research\" title_3=\"100% Secure\"][/content-featured]\n<p>when an unknown printer took a galley of type and scrambled it to make a type specimen bookhas a not only five centuries, but also the leap into electronic typesetting, remaining essentially unchan galley of type and scrambled it to make a type specimen book.</p>\n','published',1,'Botble\\ACL\\Models\\User',0,'news/19.jpg',163,NULL,'2024-06-18 23:00:02','2024-06-18 23:00:02'); /*!40000 ALTER TABLE `posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `posts_translations` -- DROP TABLE IF EXISTS `posts_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `posts_translations` ( `lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `posts_id` bigint unsigned NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` longtext COLLATE utf8mb4_unicode_ci, PRIMARY KEY (`lang_code`,`posts_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `posts_translations` -- LOCK TABLES `posts_translations` WRITE; /*!40000 ALTER TABLE `posts_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `posts_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `revisions` -- DROP TABLE IF EXISTS `revisions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `revisions` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `revisionable_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `revisionable_id` bigint unsigned NOT NULL, `user_id` bigint unsigned DEFAULT NULL, `key` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `old_value` text COLLATE utf8mb4_unicode_ci, `new_value` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `revisions_revisionable_id_revisionable_type_index` (`revisionable_id`,`revisionable_type`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `revisions` -- LOCK TABLES `revisions` WRITE; /*!40000 ALTER TABLE `revisions` DISABLE KEYS */; /*!40000 ALTER TABLE `revisions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `role_users` -- DROP TABLE IF EXISTS `role_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `role_users` ( `user_id` bigint unsigned NOT NULL, `role_id` bigint unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`user_id`,`role_id`), KEY `role_users_user_id_index` (`user_id`), KEY `role_users_role_id_index` (`role_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `role_users` -- LOCK TABLES `role_users` WRITE; /*!40000 ALTER TABLE `role_users` DISABLE KEYS */; /*!40000 ALTER TABLE `role_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `roles` -- DROP TABLE IF EXISTS `roles`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `roles` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `slug` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `permissions` text COLLATE utf8mb4_unicode_ci, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_default` tinyint unsigned NOT NULL DEFAULT '0', `created_by` bigint unsigned NOT NULL, `updated_by` bigint unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `roles_slug_unique` (`slug`), KEY `roles_created_by_index` (`created_by`), KEY `roles_updated_by_index` (`updated_by`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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` VALUES (1,'admin','Admin','{\"users.index\":true,\"users.create\":true,\"users.edit\":true,\"users.destroy\":true,\"roles.index\":true,\"roles.create\":true,\"roles.edit\":true,\"roles.destroy\":true,\"core.system\":true,\"core.cms\":true,\"core.manage.license\":true,\"systems.cronjob\":true,\"core.tools\":true,\"tools.data-synchronize\":true,\"media.index\":true,\"files.index\":true,\"files.create\":true,\"files.edit\":true,\"files.trash\":true,\"files.destroy\":true,\"folders.index\":true,\"folders.create\":true,\"folders.edit\":true,\"folders.trash\":true,\"folders.destroy\":true,\"settings.index\":true,\"settings.common\":true,\"settings.options\":true,\"settings.email\":true,\"settings.media\":true,\"settings.admin-appearance\":true,\"settings.cache\":true,\"settings.datatables\":true,\"settings.email.rules\":true,\"settings.others\":true,\"menus.index\":true,\"menus.create\":true,\"menus.edit\":true,\"menus.destroy\":true,\"optimize.settings\":true,\"pages.index\":true,\"pages.create\":true,\"pages.edit\":true,\"pages.destroy\":true,\"plugins.index\":true,\"plugins.edit\":true,\"plugins.remove\":true,\"plugins.marketplace\":true,\"core.appearance\":true,\"theme.index\":true,\"theme.activate\":true,\"theme.remove\":true,\"theme.options\":true,\"theme.custom-css\":true,\"theme.custom-js\":true,\"theme.custom-html\":true,\"theme.robots-txt\":true,\"settings.website-tracking\":true,\"widgets.index\":true,\"analytics.general\":true,\"analytics.page\":true,\"analytics.browser\":true,\"analytics.referrer\":true,\"analytics.settings\":true,\"announcements.index\":true,\"announcements.create\":true,\"announcements.edit\":true,\"announcements.destroy\":true,\"announcements.settings\":true,\"audit-log.index\":true,\"audit-log.destroy\":true,\"backups.index\":true,\"backups.create\":true,\"backups.restore\":true,\"backups.destroy\":true,\"plugins.blog\":true,\"posts.index\":true,\"posts.create\":true,\"posts.edit\":true,\"posts.destroy\":true,\"categories.index\":true,\"categories.create\":true,\"categories.edit\":true,\"categories.destroy\":true,\"tags.index\":true,\"tags.create\":true,\"tags.edit\":true,\"tags.destroy\":true,\"blog.settings\":true,\"posts.export\":true,\"posts.import\":true,\"captcha.settings\":true,\"careers.index\":true,\"careers.create\":true,\"careers.edit\":true,\"careers.destroy\":true,\"contacts.index\":true,\"contacts.edit\":true,\"contacts.destroy\":true,\"contact.settings\":true,\"plugins.ecommerce\":true,\"ecommerce.report.index\":true,\"products.index\":true,\"products.create\":true,\"products.edit\":true,\"products.destroy\":true,\"products.duplicate\":true,\"ecommerce.product-prices.index\":true,\"ecommerce.product-prices.edit\":true,\"ecommerce.product-inventory.index\":true,\"ecommerce.product-inventory.edit\":true,\"product-categories.index\":true,\"product-categories.create\":true,\"product-categories.edit\":true,\"product-categories.destroy\":true,\"product-tag.index\":true,\"product-tag.create\":true,\"product-tag.edit\":true,\"product-tag.destroy\":true,\"brands.index\":true,\"brands.create\":true,\"brands.edit\":true,\"brands.destroy\":true,\"product-collections.index\":true,\"product-collections.create\":true,\"product-collections.edit\":true,\"product-collections.destroy\":true,\"product-attribute-sets.index\":true,\"product-attribute-sets.create\":true,\"product-attribute-sets.edit\":true,\"product-attribute-sets.destroy\":true,\"product-attributes.index\":true,\"product-attributes.create\":true,\"product-attributes.edit\":true,\"product-attributes.destroy\":true,\"tax.index\":true,\"tax.create\":true,\"tax.edit\":true,\"tax.destroy\":true,\"reviews.index\":true,\"reviews.create\":true,\"reviews.destroy\":true,\"reviews.publish\":true,\"reviews.reply\":true,\"ecommerce.shipments.index\":true,\"ecommerce.shipments.create\":true,\"ecommerce.shipments.edit\":true,\"ecommerce.shipments.destroy\":true,\"orders.index\":true,\"orders.create\":true,\"orders.edit\":true,\"orders.destroy\":true,\"discounts.index\":true,\"discounts.create\":true,\"discounts.edit\":true,\"discounts.destroy\":true,\"customers.index\":true,\"customers.create\":true,\"customers.edit\":true,\"customers.destroy\":true,\"flash-sale.index\":true,\"flash-sale.create\":true,\"flash-sale.edit\":true,\"flash-sale.destroy\":true,\"product-label.index\":true,\"product-label.create\":true,\"product-label.edit\":true,\"product-label.destroy\":true,\"ecommerce.import.products.index\":true,\"ecommerce.export.products.index\":true,\"order_returns.index\":true,\"order_returns.edit\":true,\"order_returns.destroy\":true,\"global-option.index\":true,\"global-option.create\":true,\"global-option.edit\":true,\"global-option.destroy\":true,\"ecommerce.invoice.index\":true,\"ecommerce.invoice.edit\":true,\"ecommerce.invoice.destroy\":true,\"ecommerce.settings\":true,\"ecommerce.settings.general\":true,\"ecommerce.invoice-template.index\":true,\"ecommerce.settings.currencies\":true,\"ecommerce.settings.products\":true,\"ecommerce.settings.product-search\":true,\"ecommerce.settings.digital-products\":true,\"ecommerce.settings.store-locators\":true,\"ecommerce.settings.invoices\":true,\"ecommerce.settings.product-reviews\":true,\"ecommerce.settings.customers\":true,\"ecommerce.settings.shopping\":true,\"ecommerce.settings.taxes\":true,\"ecommerce.settings.shipping\":true,\"ecommerce.settings.tracking\":true,\"ecommerce.settings.standard-and-format\":true,\"ecommerce.settings.checkout\":true,\"ecommerce.settings.return\":true,\"ecommerce.settings.flash-sale\":true,\"plugin.faq\":true,\"faq.index\":true,\"faq.create\":true,\"faq.edit\":true,\"faq.destroy\":true,\"faq_category.index\":true,\"faq_category.create\":true,\"faq_category.edit\":true,\"faq_category.destroy\":true,\"faqs.settings\":true,\"fob-comment.index\":true,\"fob-comment.comments.index\":true,\"fob-comment.comments.edit\":true,\"fob-comment.comments.destroy\":true,\"fob-comment.comments.reply\":true,\"fob-comment.settings\":true,\"galleries.index\":true,\"galleries.create\":true,\"galleries.edit\":true,\"galleries.destroy\":true,\"languages.index\":true,\"languages.create\":true,\"languages.edit\":true,\"languages.destroy\":true,\"plugin.location\":true,\"country.index\":true,\"country.create\":true,\"country.edit\":true,\"country.destroy\":true,\"state.index\":true,\"state.create\":true,\"state.edit\":true,\"state.destroy\":true,\"city.index\":true,\"city.create\":true,\"city.edit\":true,\"city.destroy\":true,\"newsletter.index\":true,\"newsletter.destroy\":true,\"newsletter.settings\":true,\"payment.index\":true,\"payments.settings\":true,\"payment.destroy\":true,\"plugins.portfolio\":true,\"portfolio.projects.index\":true,\"portfolio.projects.create\":true,\"portfolio.projects.edit\":true,\"portfolio.projects.destroy\":true,\"portfolio.service-categories.index\":true,\"portfolio.service-categories.create\":true,\"portfolio.service-categories.edit\":true,\"portfolio.service-categories.destroy\":true,\"portfolio.services.index\":true,\"portfolio.services.create\":true,\"portfolio.services.edit\":true,\"portfolio.services.destroy\":true,\"portfolio.packages.index\":true,\"portfolio.packages.create\":true,\"portfolio.packages.edit\":true,\"portfolio.packages.destroy\":true,\"portfolio.quotation-requests.index\":true,\"portfolio.quotation-requests.create\":true,\"portfolio.quotation-requests.edit\":true,\"portfolio.quotation-requests.destroy\":true,\"portfolio.custom-fields.index\":true,\"portfolio.custom-fields.create\":true,\"portfolio.custom-fields.edit\":true,\"portfolio.custom-fields.destroy\":true,\"simple-slider.index\":true,\"simple-slider.create\":true,\"simple-slider.edit\":true,\"simple-slider.destroy\":true,\"simple-slider-item.index\":true,\"simple-slider-item.create\":true,\"simple-slider-item.edit\":true,\"simple-slider-item.destroy\":true,\"simple-slider.settings\":true,\"social-login.settings\":true,\"team.index\":true,\"team.create\":true,\"team.edit\":true,\"team.destroy\":true,\"testimonial.index\":true,\"testimonial.create\":true,\"testimonial.edit\":true,\"testimonial.destroy\":true,\"plugins.translation\":true,\"translations.locales\":true,\"translations.theme-translations\":true,\"translations.index\":true,\"theme-translations.export\":true,\"other-translations.export\":true,\"theme-translations.import\":true,\"other-translations.import\":true}','Admin users role',1,1,1,'2024-06-18 22:59:55','2024-06-18 22:59:55'); /*!40000 ALTER TABLE `roles` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `settings` -- DROP TABLE IF EXISTS `settings`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `settings` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `value` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `settings_key_unique` (`key`) ) ENGINE=InnoDB AUTO_INCREMENT=58 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `settings` -- LOCK TABLES `settings` WRITE; /*!40000 ALTER TABLE `settings` DISABLE KEYS */; INSERT INTO `settings` VALUES (1,'media_random_hash','54314df4163fdfbb2877163ba878677a',NULL,'2024-06-18 23:00:45'),(2,'api_enabled','0',NULL,'2024-06-18 23:00:45'),(3,'activated_plugins','[\"language\",\"language-advanced\",\"analytics\",\"announcement\",\"audit-log\",\"backup\",\"blog\",\"captcha\",\"career\",\"contact\",\"cookie-consent\",\"ecommerce\",\"faq\",\"fob-comment\",\"gallery\",\"location\",\"mollie\",\"newsletter\",\"payment\",\"paypal\",\"paystack\",\"portfolio\",\"razorpay\",\"rss-feed\",\"shippo\",\"simple-slider\",\"social-login\",\"sslcommerz\",\"stripe\",\"team\",\"testimonial\",\"translation\"]',NULL,'2024-06-18 23:00:45'),(4,'payment_cod_status','1',NULL,'2024-06-18 23:00:45'),(5,'payment_bank_transfer_status','1',NULL,'2024-06-18 23:00:45'),(6,'theme','apexa',NULL,'2024-06-18 23:00:45'),(7,'show_admin_bar','1',NULL,'2024-06-18 23:00:45'),(8,'admin_logo','icons/logo-white.png',NULL,'2024-06-18 23:00:45'),(9,'admin_favicon','icons/favicon.png',NULL,'2024-06-18 23:00:45'),(10,'language_hide_default','1',NULL,'2024-06-18 23:00:45'),(11,'language_switcher_display','dropdown',NULL,'2024-06-18 23:00:45'),(12,'language_display','all',NULL,'2024-06-18 23:00:45'),(13,'language_hide_languages','[]',NULL,'2024-06-18 23:00:45'),(14,'theme-apexa-site_title','Apexa - Business Consulting Laravel Script',NULL,'2024-06-18 23:00:45'),(15,'theme-apexa-seo_description','Elevate your business consulting with Apexa - Business Consulting Laravel Script. Streamline operations, enhance client relationships, and boost productivity effortlessly. Get started now!',NULL,'2024-06-18 23:00:45'),(16,'theme-apexa-copyright','©%Y Archi Elite Team. All Rights Reserved.',NULL,'2024-06-18 23:00:45'),(17,'theme-apexa-favicon','icons/favicon.png',NULL,'2024-06-18 23:00:45'),(18,'theme-apexa-logo','icons/logo.png',NULL,'2024-06-18 23:00:45'),(19,'theme-apexa-logo_height','40',NULL,'2024-06-18 23:00:45'),(20,'theme-apexa-primary_font','Inter',NULL,'2024-06-18 23:00:45'),(21,'theme-apexa-secondary_font','Outfit',NULL,'2024-06-18 23:00:45'),(22,'theme-apexa-primary_color','#F7A400',NULL,'2024-06-18 23:00:45'),(23,'theme-apexa-secondary_color','#191D88',NULL,'2024-06-18 23:00:45'),(24,'theme-apexa-heading_color','#14176C',NULL,'2024-06-18 23:00:45'),(25,'theme-apexa-text_color','#3E4073',NULL,'2024-06-18 23:00:45'),(26,'theme-apexa-preloader_enabled','1',NULL,'2024-06-18 23:00:45'),(27,'theme-apexa-preloader_version','v2',NULL,'2024-06-18 23:00:45'),(28,'theme-apexa-lazy_load_images','1',NULL,'2024-06-18 23:00:45'),(29,'theme-apexa-lazy_load_placeholder_image','icons/preloader-image.gif',NULL,'2024-06-18 23:00:45'),(30,'theme-apexa-header_action_label','Let’s Talk',NULL,'2024-06-18 23:00:45'),(31,'theme-apexa-header_action_url','/contact-us',NULL,'2024-06-18 23:00:45'),(32,'theme-apexa-social_links','[[{\"key\":\"name\",\"value\":\"Facebook\"},{\"key\":\"icon\",\"value\":\"ti ti-brand-facebook\"},{\"key\":\"url\",\"value\":\"https:\\/\\/www.facebook.com\"}],[{\"key\":\"name\",\"value\":\"X\"},{\"key\":\"icon\",\"value\":\"ti ti-brand-x\"},{\"key\":\"url\",\"value\":\"https:\\/\\/x.com\"}],[{\"key\":\"name\",\"value\":\"Youtube\"},{\"key\":\"icon\",\"value\":\"ti ti-brand-youtube\"},{\"key\":\"url\",\"value\":\"https:\\/\\/www.youtube.com\"}],[{\"key\":\"name\",\"value\":\"Instagram\"},{\"key\":\"icon\",\"value\":\"ti ti-brand-linkedin\"},{\"key\":\"url\",\"value\":\"https:\\/\\/www.linkedin.com\"}]]',NULL,'2024-06-18 23:00:45'),(33,'theme-apexa-social_sharing','[[{\"key\":\"social\",\"value\":\"facebook\"},{\"key\":\"icon\",\"value\":\"ti ti-brand-facebook\"}],[{\"key\":\"social\",\"value\":\"x\"},{\"key\":\"icon\",\"value\":\"ti ti-brand-x\"}],[{\"key\":\"social\",\"value\":\"pinterest\"},{\"key\":\"icon\",\"value\":\"ti ti-brand-pinterest\"}],[{\"key\":\"social\",\"value\":\"linkedin\"},{\"key\":\"icon\",\"value\":\"ti ti-brand-linkedin\"}],[{\"key\":\"social\",\"value\":\"whatsapp\"},{\"key\":\"icon\",\"value\":\"ti ti-brand-whatsapp\"}],[{\"key\":\"social\",\"value\":\"email\"},{\"key\":\"icon\",\"value\":\"ti ti-mail\"}]]',NULL,'2024-06-18 23:00:45'),(34,'theme-apexa-footer_background_color','#0e104b',NULL,'2024-06-18 23:00:45'),(35,'theme-apexa-footer_bottom_background_color','#0e104b',NULL,'2024-06-18 23:00:45'),(36,'theme-apexa-footer_heading_color','#ffffff',NULL,'2024-06-18 23:00:45'),(37,'theme-apexa-footer_text_color','#b8b9da',NULL,'2024-06-18 23:00:45'),(38,'theme-apexa-footer_border_color','#272A68',NULL,'2024-06-18 23:00:45'),(39,'theme-apexa-footer_background_image','backgrounds/footer-bg.png',NULL,'2024-06-18 23:00:45'),(40,'theme-apexa-header_style','1',NULL,'2024-06-18 23:00:45'),(41,'theme-apexa-is_header_transparent','0',NULL,'2024-06-18 23:00:45'),(42,'theme-apexa-header_top_text_color','#ffffff',NULL,'2024-06-18 23:00:45'),(43,'theme-apexa-header_top_background_color','#0E104B',NULL,'2024-06-18 23:00:45'),(44,'theme-apexa-header_action_buttons','[[{\"key\":\"label\",\"value\":\"Let\\u2019s Talk\"},{\"key\":\"url\",\"value\":\"\\/contact-us\"}]]',NULL,'2024-06-18 23:00:45'),(45,'theme-apexa-homepage_id','1',NULL,'2024-06-18 23:00:45'),(46,'theme-apexa-blog_page_id','3',NULL,'2024-06-18 23:00:45'),(47,'theme-apexa-breadcrumb_background_image','backgrounds/breadcrumb-bg.jpg',NULL,'2024-06-18 23:00:45'),(48,'theme-apexa-quotation_form_title','Get A Quote',NULL,'2024-06-18 23:00:45'),(49,'theme-apexa-quotation_form_button_label','Request A Quote',NULL,'2024-06-18 23:00:45'),(50,'theme-apexa-header_text_color','#fffff',NULL,'2024-06-18 23:00:45'),(51,'simple_slider_using_assets','0',NULL,'2024-06-18 23:00:45'),(52,'announcement_max_width','1210',NULL,NULL),(53,'announcement_text_color','#FFFFFF',NULL,NULL),(54,'announcement_background_color','#F7A400',NULL,NULL),(55,'announcement_text_alignment','start',NULL,NULL),(56,'announcement_dismissible','1',NULL,NULL),(57,'announcement_font_size','1',NULL,NULL); /*!40000 ALTER TABLE `settings` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `simple_slider_items` -- DROP TABLE IF EXISTS `simple_slider_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `simple_slider_items` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `simple_slider_id` bigint unsigned NOT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `image` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `link` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` text COLLATE utf8mb4_unicode_ci, `order` int unsigned NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`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 `simple_slider_items` -- LOCK TABLES `simple_slider_items` WRITE; /*!40000 ALTER TABLE `simple_slider_items` DISABLE KEYS */; INSERT INTO `simple_slider_items` VALUES (1,1,'Transforming Dreams into Financial Reality','sliders/1.jpg','/','Apexa helps you to convert your data into a strategic asset and get business insights Apexa helps you to convert.',0,'2024-06-18 23:00:05','2024-06-18 23:00:05'),(2,1,'Unlock the Power of Data-Driven Decisions','sliders/2.jpg','/','Gain valuable insights from your data to optimize marketing campaigns, improve customer experiences, and boost your bottom line.',1,'2024-06-18 23:00:05','2024-06-18 23:00:05'); /*!40000 ALTER TABLE `simple_slider_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `simple_sliders` -- DROP TABLE IF EXISTS `simple_sliders`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `simple_sliders` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `key` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`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 `simple_sliders` -- LOCK TABLES `simple_sliders` WRITE; /*!40000 ALTER TABLE `simple_sliders` DISABLE KEYS */; INSERT INTO `simple_sliders` VALUES (1,'Home slider','home-slider','The main slider on homepage','published','2024-06-18 23:00:05','2024-06-18 23:00:05'); /*!40000 ALTER TABLE `simple_sliders` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `slugs` -- DROP TABLE IF EXISTS `slugs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `slugs` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `reference_id` bigint unsigned NOT NULL, `reference_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `prefix` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT '', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `slugs_reference_id_index` (`reference_id`), KEY `slugs_key_index` (`key`), KEY `slugs_prefix_index` (`prefix`), KEY `slugs_reference_index` (`reference_id`,`reference_type`) ) ENGINE=InnoDB AUTO_INCREMENT=379 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `slugs` -- LOCK TABLES `slugs` WRITE; /*!40000 ALTER TABLE `slugs` DISABLE KEYS */; INSERT INTO `slugs` VALUES (1,'homepage',1,'Botble\\Page\\Models\\Page','','2024-06-18 22:59:55','2024-06-18 22:59:55'),(2,'contact-us',2,'Botble\\Page\\Models\\Page','','2024-06-18 22:59:55','2024-06-18 22:59:55'),(3,'blog',3,'Botble\\Page\\Models\\Page','','2024-06-18 22:59:55','2024-06-18 22:59:55'),(4,'business-about',4,'Botble\\Page\\Models\\Page','','2024-06-18 22:59:55','2024-06-18 22:59:55'),(5,'finance-about',5,'Botble\\Page\\Models\\Page','','2024-06-18 22:59:55','2024-06-18 22:59:55'),(6,'consulting-about',6,'Botble\\Page\\Models\\Page','','2024-06-18 22:59:55','2024-06-18 22:59:55'),(7,'insurance-about',7,'Botble\\Page\\Models\\Page','','2024-06-18 22:59:55','2024-06-18 22:59:55'),(8,'digital-agency-about',8,'Botble\\Page\\Models\\Page','','2024-06-18 22:59:55','2024-06-18 22:59:55'),(9,'services',9,'Botble\\Page\\Models\\Page','','2024-06-18 22:59:55','2024-06-18 22:59:55'),(10,'finance-service',10,'Botble\\Page\\Models\\Page','','2024-06-18 22:59:55','2024-06-18 22:59:55'),(11,'consulting-service',11,'Botble\\Page\\Models\\Page','','2024-06-18 22:59:55','2024-06-18 22:59:55'),(12,'digital-agency-service',12,'Botble\\Page\\Models\\Page','','2024-06-18 22:59:55','2024-06-18 22:59:55'),(13,'insurance-service',13,'Botble\\Page\\Models\\Page','','2024-06-18 22:59:55','2024-06-18 22:59:55'),(14,'team-one',14,'Botble\\Page\\Models\\Page','','2024-06-18 22:59:55','2024-06-18 22:59:55'),(15,'team-two',15,'Botble\\Page\\Models\\Page','','2024-06-18 22:59:55','2024-06-18 22:59:55'),(16,'team-three',16,'Botble\\Page\\Models\\Page','','2024-06-18 22:59:55','2024-06-18 22:59:55'),(17,'team-four',17,'Botble\\Page\\Models\\Page','','2024-06-18 22:59:55','2024-06-18 22:59:55'),(18,'how-its-work',18,'Botble\\Page\\Models\\Page','','2024-06-18 22:59:55','2024-06-18 22:59:55'),(19,'pricing',19,'Botble\\Page\\Models\\Page','','2024-06-18 22:59:55','2024-06-18 22:59:55'),(20,'testimonials',20,'Botble\\Page\\Models\\Page','','2024-06-18 22:59:55','2024-06-18 22:59:55'),(21,'perfect',1,'Botble\\Gallery\\Models\\Gallery','galleries','2024-06-18 22:59:57','2024-06-18 22:59:57'),(22,'new-day',2,'Botble\\Gallery\\Models\\Gallery','galleries','2024-06-18 22:59:57','2024-06-18 22:59:57'),(23,'happy-day',3,'Botble\\Gallery\\Models\\Gallery','galleries','2024-06-18 22:59:57','2024-06-18 22:59:57'),(24,'nature',4,'Botble\\Gallery\\Models\\Gallery','galleries','2024-06-18 22:59:57','2024-06-18 22:59:57'),(25,'morning',5,'Botble\\Gallery\\Models\\Gallery','galleries','2024-06-18 22:59:57','2024-06-18 22:59:57'),(26,'sunset',6,'Botble\\Gallery\\Models\\Gallery','galleries','2024-06-18 22:59:57','2024-06-18 22:59:57'),(27,'ocean-views',7,'Botble\\Gallery\\Models\\Gallery','galleries','2024-06-18 22:59:57','2024-06-18 22:59:57'),(28,'adventure-time',8,'Botble\\Gallery\\Models\\Gallery','galleries','2024-06-18 22:59:57','2024-06-18 22:59:57'),(29,'devon-lane',1,'Botble\\Team\\Models\\Team','teams','2024-06-18 22:59:58','2024-06-18 22:59:58'),(30,'marvin-mckinney',2,'Botble\\Team\\Models\\Team','teams','2024-06-18 22:59:58','2024-06-18 22:59:58'),(31,'ronald-richards',3,'Botble\\Team\\Models\\Team','teams','2024-06-18 22:59:58','2024-06-18 22:59:58'),(32,'cameron-williamson',4,'Botble\\Team\\Models\\Team','teams','2024-06-18 22:59:58','2024-06-18 22:59:58'),(33,'alicia-sanders',5,'Botble\\Team\\Models\\Team','teams','2024-06-18 22:59:58','2024-06-18 22:59:58'),(34,'ethan-wright',6,'Botble\\Team\\Models\\Team','teams','2024-06-18 22:59:58','2024-06-18 22:59:58'),(35,'isabella-johnson',7,'Botble\\Team\\Models\\Team','teams','2024-06-18 22:59:58','2024-06-18 22:59:58'),(36,'liam-brown',8,'Botble\\Team\\Models\\Team','teams','2024-06-18 22:59:58','2024-06-18 22:59:58'),(37,'entrepreneurship',1,'Botble\\Blog\\Models\\Category','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(38,'startups',2,'Botble\\Blog\\Models\\Category','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(39,'marketing',3,'Botble\\Blog\\Models\\Category','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(40,'sales',4,'Botble\\Blog\\Models\\Category','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(41,'finance',5,'Botble\\Blog\\Models\\Category','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(42,'leadership',6,'Botble\\Blog\\Models\\Category','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(43,'management',7,'Botble\\Blog\\Models\\Category','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(44,'human-resources',8,'Botble\\Blog\\Models\\Category','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(45,'customer-service',9,'Botble\\Blog\\Models\\Category','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(46,'innovation',10,'Botble\\Blog\\Models\\Category','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(47,'business-strategy',11,'Botble\\Blog\\Models\\Category','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(48,'e-commerce',12,'Botble\\Blog\\Models\\Category','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(49,'technology',13,'Botble\\Blog\\Models\\Category','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(50,'networking',14,'Botble\\Blog\\Models\\Category','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(51,'productivity',15,'Botble\\Blog\\Models\\Category','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(52,'operations',16,'Botble\\Blog\\Models\\Category','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(53,'legal',17,'Botble\\Blog\\Models\\Category','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(54,'industry-trends',18,'Botble\\Blog\\Models\\Category','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(55,'small-business',19,'Botble\\Blog\\Models\\Category','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(56,'consulting',20,'Botble\\Blog\\Models\\Category','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(57,'growth',1,'Botble\\Blog\\Models\\Tag','tag','2024-06-18 23:00:02','2024-06-18 23:00:02'),(58,'strategy',2,'Botble\\Blog\\Models\\Tag','tag','2024-06-18 23:00:02','2024-06-18 23:00:02'),(59,'innovation',3,'Botble\\Blog\\Models\\Tag','tag','2024-06-18 23:00:02','2024-06-18 23:00:02'),(60,'leadership',4,'Botble\\Blog\\Models\\Tag','tag','2024-06-18 23:00:02','2024-06-18 23:00:02'),(61,'funding',5,'Botble\\Blog\\Models\\Tag','tag','2024-06-18 23:00:02','2024-06-18 23:00:02'),(62,'marketing',6,'Botble\\Blog\\Models\\Tag','tag','2024-06-18 23:00:02','2024-06-18 23:00:02'),(63,'sales',7,'Botble\\Blog\\Models\\Tag','tag','2024-06-18 23:00:02','2024-06-18 23:00:02'),(64,'seo',8,'Botble\\Blog\\Models\\Tag','tag','2024-06-18 23:00:02','2024-06-18 23:00:02'),(65,'branding',9,'Botble\\Blog\\Models\\Tag','tag','2024-06-18 23:00:02','2024-06-18 23:00:02'),(66,'customer-service',10,'Botble\\Blog\\Models\\Tag','tag','2024-06-18 23:00:02','2024-06-18 23:00:02'),(67,'productivity',11,'Botble\\Blog\\Models\\Tag','tag','2024-06-18 23:00:02','2024-06-18 23:00:02'),(68,'networking',12,'Botble\\Blog\\Models\\Tag','tag','2024-06-18 23:00:02','2024-06-18 23:00:02'),(69,'startups',13,'Botble\\Blog\\Models\\Tag','tag','2024-06-18 23:00:02','2024-06-18 23:00:02'),(70,'e-commerce',14,'Botble\\Blog\\Models\\Tag','tag','2024-06-18 23:00:02','2024-06-18 23:00:02'),(71,'finance',15,'Botble\\Blog\\Models\\Tag','tag','2024-06-18 23:00:02','2024-06-18 23:00:02'),(72,'business-development',16,'Botble\\Blog\\Models\\Tag','tag','2024-06-18 23:00:02','2024-06-18 23:00:02'),(73,'team-building',17,'Botble\\Blog\\Models\\Tag','tag','2024-06-18 23:00:02','2024-06-18 23:00:02'),(74,'operations',18,'Botble\\Blog\\Models\\Tag','tag','2024-06-18 23:00:02','2024-06-18 23:00:02'),(75,'legal-advice',19,'Botble\\Blog\\Models\\Tag','tag','2024-06-18 23:00:02','2024-06-18 23:00:02'),(76,'hr-management',20,'Botble\\Blog\\Models\\Tag','tag','2024-06-18 23:00:02','2024-06-18 23:00:02'),(77,'the-power-of-networking-building-relationships-for-business-growth',1,'Botble\\Blog\\Models\\Post','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(78,'5-productivity-hacks-for-busy-entrepreneurs',2,'Botble\\Blog\\Models\\Post','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(79,'from-brainstorm-to-boardroom-crafting-a-winning-business-plan',3,'Botble\\Blog\\Models\\Post','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(80,'the-art-of-delegation-empowering-your-team-for-success',4,'Botble\\Blog\\Models\\Post','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(81,'customer-centricity-putting-your-customers-at-the-heart-of-your-business',5,'Botble\\Blog\\Models\\Post','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(82,'data-driven-decisions-leveraging-insights-to-fuel-business-growth',6,'Botble\\Blog\\Models\\Post','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(83,'building-a-strong-brand-identity-standing-out-from-the-crowd',7,'Botble\\Blog\\Models\\Post','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(84,'the-importance-of-social-media-marketing-for-businesses',8,'Botble\\Blog\\Models\\Post','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(85,'content-is-king-creating-engaging-content-to-attract-customers',9,'Botble\\Blog\\Models\\Post','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(86,'the-art-of-negotiation-winning-deals-and-building-relationships',10,'Botble\\Blog\\Models\\Post','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(87,'managing-cash-flow-the-lifeblood-of-your-business',11,'Botble\\Blog\\Models\\Post','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(88,'the-power-of-storytelling-connecting-with-your-audience-on-a-deeper-level',12,'Botble\\Blog\\Models\\Post','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(89,'overcoming-challenges-embracing-failure-as-a-learning-opportunity',13,'Botble\\Blog\\Models\\Post','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(90,'building-a-high-performing-team-creating-a-culture-of-collaboration-and-success',14,'Botble\\Blog\\Models\\Post','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(91,'the-importance-of-work-life-balance-for-entrepreneurs',15,'Botble\\Blog\\Models\\Post','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(92,'staying-ahead-of-the-curve-embracing-innovation-in-business',16,'Botble\\Blog\\Models\\Post','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(93,'the-power-of-public-speaking-captivate-your-audience-and-deliver-your-message-with-impact',17,'Botble\\Blog\\Models\\Post','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(94,'building-a-sustainable-business-environmental-and-social-responsibility',18,'Botble\\Blog\\Models\\Post','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(95,'the-future-of-business-trends-and-technologies-shaping-the-landscape',19,'Botble\\Blog\\Models\\Post','','2024-06-18 23:00:02','2024-06-18 23:00:02'),(96,'basic-plan',1,'Botble\\Portfolio\\Models\\Package','packages','2024-06-18 23:00:04','2024-06-18 23:00:04'),(97,'team-plan',2,'Botble\\Portfolio\\Models\\Package','packages','2024-06-18 23:00:04','2024-06-18 23:00:04'),(98,'enterprise-plan',3,'Botble\\Portfolio\\Models\\Package','packages','2024-06-18 23:00:04','2024-06-18 23:00:04'),(99,'innovation-hub-navigating-the-future',1,'Botble\\Portfolio\\Models\\Project','projects','2024-06-18 23:00:04','2024-06-18 23:00:04'),(100,'leadership-excellence-initiative',2,'Botble\\Portfolio\\Models\\Project','projects','2024-06-18 23:00:04','2024-06-18 23:00:04'),(101,'startup-accelerator-program',3,'Botble\\Portfolio\\Models\\Project','projects','2024-06-18 23:00:04','2024-06-18 23:00:04'),(102,'marketing-mastery-series',4,'Botble\\Portfolio\\Models\\Project','projects','2024-06-18 23:00:04','2024-06-18 23:00:04'),(103,'illustration-design',5,'Botble\\Portfolio\\Models\\Project','projects','2024-06-18 23:00:04','2024-06-18 23:00:04'),(104,'design-development',6,'Botble\\Portfolio\\Models\\Project','projects','2024-06-18 23:00:04','2024-06-18 23:00:04'),(105,'marketing-consultancy',7,'Botble\\Portfolio\\Models\\Project','projects','2024-06-18 23:00:04','2024-06-18 23:00:04'),(106,'digital-marketing',8,'Botble\\Portfolio\\Models\\Project','projects','2024-06-18 23:00:04','2024-06-18 23:00:04'),(107,'strategic-planning',9,'Botble\\Portfolio\\Models\\Project','projects','2024-06-18 23:00:04','2024-06-18 23:00:04'),(108,'financial-analysis',1,'Botble\\Portfolio\\Models\\ServiceCategory','service-categories','2024-06-18 23:00:04','2024-06-18 23:00:04'),(109,'tax-strategy',2,'Botble\\Portfolio\\Models\\ServiceCategory','service-categories','2024-06-18 23:00:04','2024-06-18 23:00:04'),(110,'market-research',3,'Botble\\Portfolio\\Models\\ServiceCategory','service-categories','2024-06-18 23:00:04','2024-06-18 23:00:04'),(111,'business-strategy',4,'Botble\\Portfolio\\Models\\ServiceCategory','service-categories','2024-06-18 23:00:04','2024-06-18 23:00:04'),(112,'data-analyst',1,'Botble\\Portfolio\\Models\\Service','services','2024-06-18 23:00:04','2024-06-18 23:00:04'),(113,'liability-planner',2,'Botble\\Portfolio\\Models\\Service','services','2024-06-18 23:00:04','2024-06-18 23:00:04'),(114,'growth-planner',3,'Botble\\Portfolio\\Models\\Service','services','2024-06-18 23:00:04','2024-06-18 23:00:04'),(115,'risk-manager',4,'Botble\\Portfolio\\Models\\Service','services','2024-06-18 23:00:05','2024-06-18 23:00:05'),(116,'retirement-planner',5,'Botble\\Portfolio\\Models\\Service','services','2024-06-18 23:00:05','2024-06-18 23:00:05'),(117,'risk-analyst',6,'Botble\\Portfolio\\Models\\Service','services','2024-06-18 23:00:05','2024-06-18 23:00:05'),(118,'insurance-expert',7,'Botble\\Portfolio\\Models\\Service','services','2024-06-18 23:00:05','2024-06-18 23:00:05'),(119,'budget-manager',8,'Botble\\Portfolio\\Models\\Service','services','2024-06-18 23:00:05','2024-06-18 23:00:05'),(120,'strategy-adviser',9,'Botble\\Portfolio\\Models\\Service','services','2024-06-18 23:00:05','2024-06-18 23:00:05'),(121,'operations-expert',10,'Botble\\Portfolio\\Models\\Service','services','2024-06-18 23:00:05','2024-06-18 23:00:05'),(122,'profit-strategist',11,'Botble\\Portfolio\\Models\\Service','services','2024-06-18 23:00:05','2024-06-18 23:00:05'),(123,'objective-planner',12,'Botble\\Portfolio\\Models\\Service','services','2024-06-18 23:00:05','2024-06-18 23:00:05'),(124,'goal-specialist',13,'Botble\\Portfolio\\Models\\Service','services','2024-06-18 23:00:05','2024-06-18 23:00:05'),(125,'senior-full-stack-engineer',1,'ArchiElite\\Career\\Models\\Career','careers','2024-06-18 23:00:06','2024-06-18 23:00:06'),(126,'lead-backend-developer',2,'ArchiElite\\Career\\Models\\Career','careers','2024-06-18 23:00:06','2024-06-18 23:00:06'),(127,'uiux-designer',3,'ArchiElite\\Career\\Models\\Career','careers','2024-06-18 23:00:06','2024-06-18 23:00:06'),(128,'product-manager',4,'ArchiElite\\Career\\Models\\Career','careers','2024-06-18 23:00:06','2024-06-18 23:00:06'),(129,'data-scientist',5,'ArchiElite\\Career\\Models\\Career','careers','2024-06-18 23:00:06','2024-06-18 23:00:06'),(130,'devops-engineer',6,'ArchiElite\\Career\\Models\\Career','careers','2024-06-18 23:00:06','2024-06-18 23:00:06'),(131,'desktop-pc',1,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2024-06-18 23:00:06','2024-06-18 23:00:06'),(132,'headphone',2,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2024-06-18 23:00:06','2024-06-18 23:00:06'),(133,'laptop',3,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2024-06-18 23:00:06','2024-06-18 23:00:06'),(134,'mobile-phone',4,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2024-06-18 23:00:06','2024-06-18 23:00:06'),(135,'printer',5,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2024-06-18 23:00:06','2024-06-18 23:00:06'),(136,'books',6,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2024-06-18 23:00:06','2024-06-18 23:00:06'),(137,'tablet',7,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2024-06-18 23:00:06','2024-06-18 23:00:06'),(138,'usb-flash',8,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2024-06-18 23:00:06','2024-06-18 23:00:06'),(139,'game-mouse',9,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2024-06-18 23:00:06','2024-06-18 23:00:06'),(140,'security',10,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2024-06-18 23:00:06','2024-06-18 23:00:06'),(141,'watch',11,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2024-06-18 23:00:06','2024-06-18 23:00:06'),(142,'scanner',12,'Botble\\Ecommerce\\Models\\ProductCategory','product-categories','2024-06-18 23:00:06','2024-06-18 23:00:06'),(143,'foodpound',1,'Botble\\Ecommerce\\Models\\Brand','brands','2024-06-18 23:00:06','2024-06-18 23:00:06'),(144,'itea-jsc',2,'Botble\\Ecommerce\\Models\\Brand','brands','2024-06-18 23:00:06','2024-06-18 23:00:06'),(145,'soda-brand',3,'Botble\\Ecommerce\\Models\\Brand','brands','2024-06-18 23:00:06','2024-06-18 23:00:06'),(146,'farmart',4,'Botble\\Ecommerce\\Models\\Brand','brands','2024-06-18 23:00:06','2024-06-18 23:00:06'),(147,'dual-camera-20mp-digital',1,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(148,'smart-watches',2,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(149,'beat-headphone',3,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(150,'red-black-headphone',4,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(151,'smart-watch-external-digital',5,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(152,'nikon-hd-camera',6,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(153,'audio-equipment',7,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(154,'smart-televisions',8,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(155,'samsung-smart-phone-digital',9,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(156,'herschel-leather-duffle-bag-in-brown-color',10,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(157,'xbox-one-wireless-controller-black-color',11,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(158,'epsion-plaster-printer',12,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(159,'sound-intone-i65-earphone-white-version-digital',13,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(160,'bo-play-mini-bluetooth-speaker',14,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(161,'apple-macbook-air-retina-133-inch-laptop',15,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(162,'apple-macbook-air-retina-12-inch-laptop',16,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(163,'samsung-gear-vr-virtual-reality-headset-digital',17,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(164,'aveeno-moisturizing-body-shower-450ml',18,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(165,'nyx-beauty-couton-pallete-makeup-12',19,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(166,'nyx-beauty-couton-pallete-makeup-12',20,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(167,'mvmth-classical-leather-watch-in-black-digital',21,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(168,'baxter-care-hair-kit-for-bearded-mens',22,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(169,'ciate-palemore-lipstick-bold-red-color',23,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(170,'vimto-squash-remix-apple-15-litres',24,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(171,'crock-pot-slow-cooker-digital',25,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(172,'taylors-of-harrogate-yorkshire-coffee',26,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(173,'soft-mochi-galeto-ice-cream',27,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(174,'naked-noodle-egg-noodles-singapore',28,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(175,'saute-pan-silver-digital',29,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(176,'bar-s-classic-bun-length-franks',30,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(177,'broccoli-crowns',31,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(178,'slimming-world-vegan-mac-greens',32,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(179,'haagen-dazs-salted-caramel-digital',33,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(180,'iceland-3-solo-exotic-burst',34,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(181,'extreme-budweiser-light-can',35,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(182,'iceland-macaroni-cheese-traybake',36,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(183,'dolmio-bolognese-pasta-sauce-digital',37,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(184,'sitema-bakeit-plastic-box',38,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(185,'wayfair-basics-dinner-plate-storage',39,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(186,'miko-the-panda-water-bottle',40,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(187,'sesame-seed-bread-digital',41,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(188,'morrisons-the-best-beef',42,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(189,'avocado-hass-large',43,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(190,'italia-beef-lasagne',44,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(191,'maxwell-house-classic-roast-mocha-digital',45,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(192,'bottled-pure-water-500ml',46,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(193,'famart-farmhouse-soft-white',47,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(194,'coca-cola-original-taste',48,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(195,'casillero-diablo-cabernet-sauvignon-digital',49,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(196,'arla-organic-free-range-milk',50,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(197,'aptamil-follow-on-baby-milk',51,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(198,'cuisinart-chefs-classic-hard-anodized',52,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(199,'corn-yellow-sweet-digital',53,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(200,'hobnobs-the-nobbly-biscuit',54,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(201,'honest-organic-still-lemonade',55,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(202,'ice-becks-beer-350ml-x-24-pieces',56,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(203,'iceland-6-hot-cross-buns-digital',57,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(204,'iceland-luxury-4-panini-rolls',58,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(205,'iceland-soft-scoop-vanilla',59,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(206,'iceland-spaghetti-bolognese',60,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(207,'kelloggs-coco-pops-cereal-digital',61,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(208,'kit-kat-chunky-milk-chocolate',62,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(209,'large-green-bell-pepper',63,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(210,'pice-94w-beasley-journal',64,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(211,'province-piece-glass-drinking-glass-digital',65,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:40','2024-06-18 23:00:40'),(212,'electronic',1,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2024-06-18 23:00:42','2024-06-18 23:00:42'),(213,'mobile',2,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2024-06-18 23:00:42','2024-06-18 23:00:42'),(214,'iphone',3,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2024-06-18 23:00:42','2024-06-18 23:00:42'),(215,'printer',4,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2024-06-18 23:00:42','2024-06-18 23:00:42'),(216,'office',5,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2024-06-18 23:00:42','2024-06-18 23:00:42'),(217,'it',6,'Botble\\Ecommerce\\Models\\ProductTag','product-tags','2024-06-18 23:00:42','2024-06-18 23:00:42'),(218,'dual-camera-20mp-digital',66,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(219,'dual-camera-20mp-digital',67,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(220,'smart-watches',68,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(221,'smart-watches',69,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(222,'smart-watches',70,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(223,'smart-watches',71,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(224,'beat-headphone',72,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(225,'beat-headphone',73,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(226,'beat-headphone',74,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(227,'red-black-headphone',75,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(228,'red-black-headphone',76,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(229,'smart-watch-external-digital',77,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(230,'smart-watch-external-digital',78,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(231,'nikon-hd-camera',79,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(232,'audio-equipment',80,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(233,'audio-equipment',81,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(234,'smart-televisions',82,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(235,'samsung-smart-phone-digital',83,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(236,'herschel-leather-duffle-bag-in-brown-color',84,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(237,'herschel-leather-duffle-bag-in-brown-color',85,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(238,'herschel-leather-duffle-bag-in-brown-color',86,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(239,'xbox-one-wireless-controller-black-color',87,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(240,'epsion-plaster-printer',88,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(241,'epsion-plaster-printer',89,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(242,'epsion-plaster-printer',90,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(243,'sound-intone-i65-earphone-white-version-digital',91,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(244,'sound-intone-i65-earphone-white-version-digital',92,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(245,'bo-play-mini-bluetooth-speaker',93,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(246,'bo-play-mini-bluetooth-speaker',94,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(247,'apple-macbook-air-retina-133-inch-laptop',95,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(248,'apple-macbook-air-retina-133-inch-laptop',96,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(249,'apple-macbook-air-retina-133-inch-laptop',97,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(250,'apple-macbook-air-retina-12-inch-laptop',98,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(251,'apple-macbook-air-retina-12-inch-laptop',99,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(252,'samsung-gear-vr-virtual-reality-headset-digital',100,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(253,'samsung-gear-vr-virtual-reality-headset-digital',101,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(254,'samsung-gear-vr-virtual-reality-headset-digital',102,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(255,'samsung-gear-vr-virtual-reality-headset-digital',103,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(256,'aveeno-moisturizing-body-shower-450ml',104,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(257,'aveeno-moisturizing-body-shower-450ml',105,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(258,'aveeno-moisturizing-body-shower-450ml',106,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(259,'nyx-beauty-couton-pallete-makeup-12',107,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(260,'nyx-beauty-couton-pallete-makeup-12',108,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(261,'nyx-beauty-couton-pallete-makeup-12',109,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(262,'nyx-beauty-couton-pallete-makeup-12',110,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(263,'nyx-beauty-couton-pallete-makeup-12',111,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(264,'nyx-beauty-couton-pallete-makeup-12',112,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(265,'nyx-beauty-couton-pallete-makeup-12',113,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(266,'mvmth-classical-leather-watch-in-black-digital',114,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(267,'mvmth-classical-leather-watch-in-black-digital',115,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(268,'baxter-care-hair-kit-for-bearded-mens',116,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(269,'baxter-care-hair-kit-for-bearded-mens',117,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(270,'baxter-care-hair-kit-for-bearded-mens',118,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(271,'ciate-palemore-lipstick-bold-red-color',119,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(272,'ciate-palemore-lipstick-bold-red-color',120,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(273,'vimto-squash-remix-apple-15-litres',121,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(274,'vimto-squash-remix-apple-15-litres',122,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(275,'vimto-squash-remix-apple-15-litres',123,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(276,'crock-pot-slow-cooker-digital',124,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(277,'crock-pot-slow-cooker-digital',125,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(278,'crock-pot-slow-cooker-digital',126,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(279,'taylors-of-harrogate-yorkshire-coffee',127,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(280,'taylors-of-harrogate-yorkshire-coffee',128,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(281,'taylors-of-harrogate-yorkshire-coffee',129,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(282,'soft-mochi-galeto-ice-cream',130,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(283,'soft-mochi-galeto-ice-cream',131,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(284,'soft-mochi-galeto-ice-cream',132,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(285,'naked-noodle-egg-noodles-singapore',133,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(286,'saute-pan-silver-digital',134,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(287,'saute-pan-silver-digital',135,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(288,'bar-s-classic-bun-length-franks',136,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(289,'bar-s-classic-bun-length-franks',137,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(290,'bar-s-classic-bun-length-franks',138,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(291,'broccoli-crowns',139,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(292,'broccoli-crowns',140,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(293,'broccoli-crowns',141,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(294,'slimming-world-vegan-mac-greens',142,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(295,'slimming-world-vegan-mac-greens',143,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(296,'haagen-dazs-salted-caramel-digital',144,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(297,'haagen-dazs-salted-caramel-digital',145,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(298,'haagen-dazs-salted-caramel-digital',146,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(299,'haagen-dazs-salted-caramel-digital',147,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(300,'iceland-3-solo-exotic-burst',148,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(301,'iceland-3-solo-exotic-burst',149,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(302,'extreme-budweiser-light-can',150,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(303,'extreme-budweiser-light-can',151,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(304,'iceland-macaroni-cheese-traybake',152,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(305,'iceland-macaroni-cheese-traybake',153,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(306,'dolmio-bolognese-pasta-sauce-digital',154,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(307,'dolmio-bolognese-pasta-sauce-digital',155,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(308,'dolmio-bolognese-pasta-sauce-digital',156,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(309,'sitema-bakeit-plastic-box',157,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(310,'sitema-bakeit-plastic-box',158,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(311,'sitema-bakeit-plastic-box',159,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(312,'wayfair-basics-dinner-plate-storage',160,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(313,'wayfair-basics-dinner-plate-storage',161,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(314,'wayfair-basics-dinner-plate-storage',162,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(315,'wayfair-basics-dinner-plate-storage',163,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(316,'miko-the-panda-water-bottle',164,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(317,'miko-the-panda-water-bottle',165,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(318,'miko-the-panda-water-bottle',166,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(319,'miko-the-panda-water-bottle',167,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(320,'sesame-seed-bread-digital',168,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(321,'sesame-seed-bread-digital',169,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(322,'sesame-seed-bread-digital',170,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(323,'morrisons-the-best-beef',171,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(324,'morrisons-the-best-beef',172,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(325,'morrisons-the-best-beef',173,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(326,'avocado-hass-large',174,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(327,'italia-beef-lasagne',175,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(328,'italia-beef-lasagne',176,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(329,'maxwell-house-classic-roast-mocha-digital',177,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(330,'maxwell-house-classic-roast-mocha-digital',178,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(331,'maxwell-house-classic-roast-mocha-digital',179,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(332,'bottled-pure-water-500ml',180,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(333,'bottled-pure-water-500ml',181,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(334,'famart-farmhouse-soft-white',182,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(335,'coca-cola-original-taste',183,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(336,'casillero-diablo-cabernet-sauvignon-digital',184,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(337,'casillero-diablo-cabernet-sauvignon-digital',185,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(338,'casillero-diablo-cabernet-sauvignon-digital',186,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(339,'arla-organic-free-range-milk',187,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(340,'arla-organic-free-range-milk',188,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(341,'arla-organic-free-range-milk',189,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(342,'arla-organic-free-range-milk',190,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(343,'aptamil-follow-on-baby-milk',191,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(344,'aptamil-follow-on-baby-milk',192,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(345,'cuisinart-chefs-classic-hard-anodized',193,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(346,'cuisinart-chefs-classic-hard-anodized',194,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(347,'corn-yellow-sweet-digital',195,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(348,'corn-yellow-sweet-digital',196,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(349,'corn-yellow-sweet-digital',197,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(350,'hobnobs-the-nobbly-biscuit',198,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(351,'hobnobs-the-nobbly-biscuit',199,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(352,'honest-organic-still-lemonade',200,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(353,'honest-organic-still-lemonade',201,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(354,'ice-becks-beer-350ml-x-24-pieces',202,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(355,'ice-becks-beer-350ml-x-24-pieces',203,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(356,'ice-becks-beer-350ml-x-24-pieces',204,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(357,'iceland-6-hot-cross-buns-digital',205,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(358,'iceland-6-hot-cross-buns-digital',206,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(359,'iceland-6-hot-cross-buns-digital',207,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(360,'iceland-luxury-4-panini-rolls',208,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(361,'iceland-luxury-4-panini-rolls',209,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(362,'iceland-luxury-4-panini-rolls',210,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(363,'iceland-soft-scoop-vanilla',211,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(364,'iceland-soft-scoop-vanilla',212,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(365,'iceland-spaghetti-bolognese',213,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(366,'iceland-spaghetti-bolognese',214,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(367,'kelloggs-coco-pops-cereal-digital',215,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(368,'kelloggs-coco-pops-cereal-digital',216,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(369,'kit-kat-chunky-milk-chocolate',217,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(370,'large-green-bell-pepper',218,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(371,'large-green-bell-pepper',219,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(372,'pice-94w-beasley-journal',220,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(373,'pice-94w-beasley-journal',221,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(374,'pice-94w-beasley-journal',222,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(375,'pice-94w-beasley-journal',223,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(376,'province-piece-glass-drinking-glass-digital',224,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(377,'province-piece-glass-drinking-glass-digital',225,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'),(378,'province-piece-glass-drinking-glass-digital',226,'Botble\\Ecommerce\\Models\\Product','products','2024-06-18 23:00:46','2024-06-18 23:00:46'); /*!40000 ALTER TABLE `slugs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `slugs_translations` -- DROP TABLE IF EXISTS `slugs_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `slugs_translations` ( `lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `slugs_id` bigint unsigned NOT NULL, `key` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `prefix` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT '', PRIMARY KEY (`lang_code`,`slugs_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `slugs_translations` -- LOCK TABLES `slugs_translations` WRITE; /*!40000 ALTER TABLE `slugs_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `slugs_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `states` -- DROP TABLE IF EXISTS `states`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `states` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `abbreviation` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `country_id` bigint unsigned DEFAULT NULL, `order` tinyint NOT NULL DEFAULT '0', `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `is_default` tinyint unsigned NOT NULL DEFAULT '0', `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `states_slug_unique` (`slug`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `states` -- LOCK TABLES `states` WRITE; /*!40000 ALTER TABLE `states` DISABLE KEYS */; /*!40000 ALTER TABLE `states` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `states_translations` -- DROP TABLE IF EXISTS `states_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `states_translations` ( `lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `states_id` bigint unsigned NOT NULL, `name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `abbreviation` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`states_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `states_translations` -- LOCK TABLES `states_translations` WRITE; /*!40000 ALTER TABLE `states_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `states_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tags` -- DROP TABLE IF EXISTS `tags`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tags` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `author_id` bigint unsigned DEFAULT NULL, `author_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User', `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tags` -- LOCK TABLES `tags` WRITE; /*!40000 ALTER TABLE `tags` DISABLE KEYS */; INSERT INTO `tags` VALUES (1,'Growth',NULL,'Botble\\ACL\\Models\\User',NULL,'published','2024-06-18 23:00:02','2024-06-18 23:00:02'),(2,'Strategy',NULL,'Botble\\ACL\\Models\\User',NULL,'published','2024-06-18 23:00:02','2024-06-18 23:00:02'),(3,'Innovation',NULL,'Botble\\ACL\\Models\\User',NULL,'published','2024-06-18 23:00:02','2024-06-18 23:00:02'),(4,'Leadership',NULL,'Botble\\ACL\\Models\\User',NULL,'published','2024-06-18 23:00:02','2024-06-18 23:00:02'),(5,'Funding',NULL,'Botble\\ACL\\Models\\User',NULL,'published','2024-06-18 23:00:02','2024-06-18 23:00:02'),(6,'Marketing',NULL,'Botble\\ACL\\Models\\User',NULL,'published','2024-06-18 23:00:02','2024-06-18 23:00:02'),(7,'Sales',NULL,'Botble\\ACL\\Models\\User',NULL,'published','2024-06-18 23:00:02','2024-06-18 23:00:02'),(8,'SEO',NULL,'Botble\\ACL\\Models\\User',NULL,'published','2024-06-18 23:00:02','2024-06-18 23:00:02'),(9,'Branding',NULL,'Botble\\ACL\\Models\\User',NULL,'published','2024-06-18 23:00:02','2024-06-18 23:00:02'),(10,'Customer Service',NULL,'Botble\\ACL\\Models\\User',NULL,'published','2024-06-18 23:00:02','2024-06-18 23:00:02'),(11,'Productivity',NULL,'Botble\\ACL\\Models\\User',NULL,'published','2024-06-18 23:00:02','2024-06-18 23:00:02'),(12,'Networking',NULL,'Botble\\ACL\\Models\\User',NULL,'published','2024-06-18 23:00:02','2024-06-18 23:00:02'),(13,'Startups',NULL,'Botble\\ACL\\Models\\User',NULL,'published','2024-06-18 23:00:02','2024-06-18 23:00:02'),(14,'E-commerce',NULL,'Botble\\ACL\\Models\\User',NULL,'published','2024-06-18 23:00:02','2024-06-18 23:00:02'),(15,'Finance',NULL,'Botble\\ACL\\Models\\User',NULL,'published','2024-06-18 23:00:02','2024-06-18 23:00:02'),(16,'Business Development',NULL,'Botble\\ACL\\Models\\User',NULL,'published','2024-06-18 23:00:02','2024-06-18 23:00:02'),(17,'Team Building',NULL,'Botble\\ACL\\Models\\User',NULL,'published','2024-06-18 23:00:02','2024-06-18 23:00:02'),(18,'Operations',NULL,'Botble\\ACL\\Models\\User',NULL,'published','2024-06-18 23:00:02','2024-06-18 23:00:02'),(19,'Legal Advice',NULL,'Botble\\ACL\\Models\\User',NULL,'published','2024-06-18 23:00:02','2024-06-18 23:00:02'),(20,'HR Management',NULL,'Botble\\ACL\\Models\\User',NULL,'published','2024-06-18 23:00:02','2024-06-18 23:00:02'); /*!40000 ALTER TABLE `tags` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `tags_translations` -- DROP TABLE IF EXISTS `tags_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `tags_translations` ( `lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `tags_id` bigint unsigned NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`tags_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `tags_translations` -- LOCK TABLES `tags_translations` WRITE; /*!40000 ALTER TABLE `tags_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `tags_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `teams` -- DROP TABLE IF EXISTS `teams`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `teams` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `location` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `socials` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `content` longtext COLLATE utf8mb4_unicode_ci, `phone` varchar(15) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `website` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `teams` -- LOCK TABLES `teams` WRITE; /*!40000 ALTER TABLE `teams` DISABLE KEYS */; INSERT INTO `teams` VALUES (1,'Devon Lane','teams/1.jpg','Sales Agent','India','{\"facebook\":\"https:\\/\\/www.facebook.com\\/\",\"twitter\":\"https:\\/\\/twitter.com\\/\",\"instagram\":\"https:\\/\\/www.instagram.com\\/\"}','published','2024-06-18 22:59:58','2024-06-18 22:59:58','<p>Our diverse team of experts brings a wealth of knowledge and experience across various industries. We are united by a shared passion for excellence and a commitment to providing innovative solutions for your business needs. Get to know the faces driving our success and learn how their expertise can contribute to yours.</p>','01123259241','devonsoland111@gmail.com','4855, 24, Ansari Road, Darya Ganj',NULL,'Sharing content online allows you to craft an online persona that reflects your personal values and professional skills. Even if you only use social media occasionally'),(2,'Marvin McKinney','teams/2.jpg','Business Manager','Thailand','{\"facebook\":\"https:\\/\\/www.facebook.com\\/\",\"twitter\":\"https:\\/\\/twitter.com\\/\",\"instagram\":\"https:\\/\\/www.instagram.com\\/\"}','published','2024-06-18 22:59:58','2024-06-18 22:59:58','<p>Our diverse team of experts brings a wealth of knowledge and experience across various industries. We are united by a shared passion for excellence and a commitment to providing innovative solutions for your business needs. Get to know the faces driving our success and learn how their expertise can contribute to yours.</p>','6623742088','marvinkensy@gmail.com','849 Sukhapibal 1 Klong Chan Bang Kapi',NULL,'Sharing content online allows you to craft an online persona that reflects your personal values and professional skills. Even if you only use social media occasionally'),(3,'Ronald Richards','teams/3.jpg','Marketing Director','Canada','{\"facebook\":\"https:\\/\\/www.facebook.com\\/\",\"twitter\":\"https:\\/\\/twitter.com\\/\",\"instagram\":\"https:\\/\\/www.instagram.com\\/\"}','published','2024-06-18 22:59:58','2024-06-18 22:59:58','<p>Our diverse team of experts brings a wealth of knowledge and experience across various industries. We are united by a shared passion for excellence and a commitment to providing innovative solutions for your business needs. Get to know the faces driving our success and learn how their expertise can contribute to yours.</p>','4165550123','ronrichards@marketing.com','123 Maple Street, Toronto, ON',NULL,'Sharing content online allows you to craft an online persona that reflects your personal values and professional skills. Even if you only use social media occasionally'),(4,'Cameron Williamson','teams/4.jpg','Chief Technology Officer','Germany','{\"facebook\":\"https:\\/\\/www.facebook.com\\/\",\"twitter\":\"https:\\/\\/twitter.com\\/\",\"instagram\":\"https:\\/\\/www.instagram.com\\/\"}','published','2024-06-18 22:59:58','2024-06-18 22:59:58','<p>Our diverse team of experts brings a wealth of knowledge and experience across various industries. We are united by a shared passion for excellence and a commitment to providing innovative solutions for your business needs. Get to know the faces driving our success and learn how their expertise can contribute to yours.</p>','49221567890','cameronwill@tech.com','45 Hauptstraße, 50667 Köln',NULL,'Sharing content online allows you to craft an online persona that reflects your personal values and professional skills. Even if you only use social media occasionally'),(5,'Alicia Sanders','teams/5.jpg','Human Resources Manager','Australia','{\"facebook\":\"https:\\/\\/www.facebook.com\\/\",\"twitter\":\"https:\\/\\/twitter.com\\/\",\"instagram\":\"https:\\/\\/www.instagram.com\\/\"}','published','2024-06-18 22:59:58','2024-06-18 22:59:58','<p>Our diverse team of experts brings a wealth of knowledge and experience across various industries. We are united by a shared passion for excellence and a commitment to providing innovative solutions for your business needs. Get to know the faces driving our success and learn how their expertise can contribute to yours.</p>','0298765432','alicia.hr@company.com','15 George St, Sydney, NSW',NULL,'Sharing content online allows you to craft an online persona that reflects your personal values and professional skills. Even if you only use social media occasionally'),(6,'Ethan Wright','teams/6.jpg','Operations Manager','South Africa','{\"facebook\":\"https:\\/\\/www.facebook.com\\/\",\"twitter\":\"https:\\/\\/twitter.com\\/\",\"instagram\":\"https:\\/\\/www.instagram.com\\/\"}','published','2024-06-18 22:59:58','2024-06-18 22:59:58','<p>Our diverse team of experts brings a wealth of knowledge and experience across various industries. We are united by a shared passion for excellence and a commitment to providing innovative solutions for your business needs. Get to know the faces driving our success and learn how their expertise can contribute to yours.</p>','0217896543','ethanwright@operations.com','789 Beach Road, Cape Town',NULL,'Sharing content online allows you to craft an online persona that reflects your personal values and professional skills. Even if you only use social media occasionally'),(7,'Isabella Johnson','teams/7.jpg','Product Manager','New Zealand','{\"facebook\":\"https:\\/\\/www.facebook.com\\/\",\"twitter\":\"https:\\/\\/twitter.com\\/\",\"instagram\":\"https:\\/\\/www.instagram.com\\/\"}','published','2024-06-18 22:59:58','2024-06-18 22:59:58','<p>Our diverse team of experts brings a wealth of knowledge and experience across various industries. We are united by a shared passion for excellence and a commitment to providing innovative solutions for your business needs. Get to know the faces driving our success and learn how their expertise can contribute to yours.</p>','0498761234','isabella.prod@company.com','32 Victoria St, Wellington',NULL,'Sharing content online allows you to craft an online persona that reflects your personal values and professional skills. Even if you only use social media occasionally'),(8,'Liam Brown','teams/8.jpg','Legal Advisor','United Kingdom','{\"facebook\":\"https:\\/\\/www.facebook.com\\/\",\"twitter\":\"https:\\/\\/twitter.com\\/\",\"instagram\":\"https:\\/\\/www.instagram.com\\/\"}','published','2024-06-18 22:59:58','2024-06-18 22:59:58','<p>Our diverse team of experts brings a wealth of knowledge and experience across various industries. We are united by a shared passion for excellence and a commitment to providing innovative solutions for your business needs. Get to know the faces driving our success and learn how their expertise can contribute to yours.</p>','02079461234','liam.legal@company.co.uk','10 Downing Street, London',NULL,'Sharing content online allows you to craft an online persona that reflects your personal values and professional skills. Even if you only use social media occasionally'); /*!40000 ALTER TABLE `teams` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `teams_translations` -- DROP TABLE IF EXISTS `teams_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `teams_translations` ( `lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `teams_id` int NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `location` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`teams_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `teams_translations` -- LOCK TABLES `teams_translations` WRITE; /*!40000 ALTER TABLE `teams_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `teams_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `testimonials` -- DROP TABLE IF EXISTS `testimonials`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `testimonials` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `content` text COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `company` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `testimonials` -- LOCK TABLES `testimonials` WRITE; /*!40000 ALTER TABLE `testimonials` DISABLE KEYS */; INSERT INTO `testimonials` VALUES (1,'Guy Hawkins','Exceptional service! Gerow’s attention to detail and reliability have been instrumental in our supply chain success.','testimonials/1.png','CEO, JAKS Shans','published','2024-06-18 23:00:05','2024-06-18 23:00:05'),(2,'Eleanor Pena','Gerow has consistently met and exceeded our logistics needs. Their dedication to excellence is truly commendable.','testimonials/2.png','SEO, ChenTech Solutions','published','2024-06-18 23:00:05','2024-06-18 23:00:05'),(3,'Cody Fisher','Their team is a valuable asset to our business operations. Gerow’s efficient service has saved us time and money.','testimonials/3.png','Developer, Moie Agency','published','2024-06-18 23:00:05','2024-06-18 23:00:05'),(4,'Albert Flores','Gerow’s attention to detail and professionalism have made them our preferred logistics partner. Highly recommended!','testimonials/4.png','CEO, Bank of America','published','2024-06-18 23:00:05','2024-06-18 23:00:05'); /*!40000 ALTER TABLE `testimonials` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `testimonials_translations` -- DROP TABLE IF EXISTS `testimonials_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `testimonials_translations` ( `lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL, `testimonials_id` bigint unsigned NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `content` text COLLATE utf8mb4_unicode_ci, `company` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, PRIMARY KEY (`lang_code`,`testimonials_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `testimonials_translations` -- LOCK TABLES `testimonials_translations` WRITE; /*!40000 ALTER TABLE `testimonials_translations` DISABLE KEYS */; /*!40000 ALTER TABLE `testimonials_translations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `user_meta` -- DROP TABLE IF EXISTS `user_meta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `user_meta` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `key` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `value` text COLLATE utf8mb4_unicode_ci, `user_id` bigint unsigned NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), KEY `user_meta_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 `user_meta` -- LOCK TABLES `user_meta` WRITE; /*!40000 ALTER TABLE `user_meta` DISABLE KEYS */; /*!40000 ALTER TABLE `user_meta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `users` -- DROP TABLE IF EXISTS `users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `users` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `first_name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `last_name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `username` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `avatar_id` bigint unsigned DEFAULT NULL, `super_user` tinyint(1) NOT NULL DEFAULT '0', `manage_supers` tinyint(1) NOT NULL DEFAULT '0', `permissions` text COLLATE utf8mb4_unicode_ci, `last_login` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `users_email_unique` (`email`), UNIQUE KEY `users_username_unique` (`username`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_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` VALUES (1,'flind@little.com',NULL,'$2y$12$Iy.L06FYbI/iopuO4psfuOrj6A5bfwPNxOFYapqHPKJdHTklU4ZGC',NULL,'2024-06-18 22:59:55','2024-06-18 22:59:58','Laurence','McGlynn','admin',88,1,1,NULL,NULL); /*!40000 ALTER TABLE `users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `widgets` -- DROP TABLE IF EXISTS `widgets`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `widgets` ( `id` bigint unsigned NOT NULL AUTO_INCREMENT, `widget_id` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `sidebar_id` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `theme` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL, `position` tinyint unsigned NOT NULL DEFAULT '0', `data` text COLLATE utf8mb4_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=20 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `widgets` -- LOCK TABLES `widgets` WRITE; /*!40000 ALTER TABLE `widgets` DISABLE KEYS */; INSERT INTO `widgets` VALUES (1,'SiteInformationWidget','menu_sidebar','apexa',1,'{\"id\":\"SiteInformationWidget\",\"quantity\":3,\"title_1\":\"Office Address\",\"description_1\":\"123\\/A, Miranda City Likaoli Prikano, Dope\",\"title_2\":\"Phone Number\",\"description_2\":\"+0989 7876 9865 9 <br> +(090) 8765 86543 85\",\"title_3\":\"Email Address\",\"description_3\":\"info@example.com <br> example.mail@hum.com\"}','2024-06-18 22:59:55','2024-06-18 22:59:55'),(2,'SocialLinksWidget','menu_sidebar','apexa',2,'{\"id\":\"SocialLinksWidget\"}','2024-06-18 22:59:55','2024-06-18 22:59:55'),(3,'SiteInformationWidget','footer_sidebar','apexa',1,'{\"id\":\"SiteInformationWidget\",\"logo\":\"icons\\/logo-white.png\",\"description\":\"Felis consquat magnis fames sagittis ultrices plasodales porttitor quisque ultrice tempor turpis.\",\"background_color\":\"rgb(20, 23, 108)\",\"display_social_links\":true,\"quantity\":0,\"style\":\"style-2\"}','2024-06-18 22:59:55','2024-06-18 22:59:55'),(4,'Botble\\Widget\\Widgets\\CoreSimpleMenu','footer_sidebar','apexa',2,'{\"id\":\"Botble\\\\Widget\\\\Widgets\\\\CoreSimpleMenu\",\"name\":\"Information\",\"items\":[[{\"key\":\"label\",\"value\":\"+123 888 9999\"},{\"key\":\"url\",\"value\":\"tel:+123 888 9999\"},{\"key\":\"icon\",\"value\":\"ti ti-phone-call\"}],[{\"key\":\"label\",\"value\":\"info@apexa.com\"},{\"key\":\"url\",\"value\":\"mailto:info@apexa.com\"},{\"key\":\"icon\",\"value\":\"ti ti-mail\"}],[{\"key\":\"label\",\"value\":\"Sydney Harbour Bridge Circular City of Sydney, Australia.\"},{\"key\":\"url\",\"value\":\"\\/\"},{\"key\":\"icon\",\"value\":\"ti ti-map-pin\"}]]}','2024-06-18 22:59:55','2024-06-18 22:59:55'),(5,'Botble\\Widget\\Widgets\\CoreSimpleMenu','footer_sidebar','apexa',3,'{\"id\":\"Botble\\\\Widget\\\\Widgets\\\\CoreSimpleMenu\",\"name\":\"Top Links\",\"items\":[[{\"key\":\"label\",\"value\":\"How it\\u2019s Work\"},{\"key\":\"url\",\"value\":\"\\/how-its-work\"}],[{\"key\":\"label\",\"value\":\"Partners\"},{\"key\":\"url\",\"value\":\"\\/team-one\"}],[{\"key\":\"label\",\"value\":\"Testimonials\"},{\"key\":\"url\",\"value\":\"\\/testimonials\"}],[{\"key\":\"label\",\"value\":\"Case Studies\"},{\"key\":\"url\",\"value\":\"\\/contact-us\"}],[{\"key\":\"label\",\"value\":\"Pricing\"},{\"key\":\"url\",\"value\":\"\\/pricing\"}]]}','2024-06-18 22:59:55','2024-06-18 22:59:55'),(6,'GalleriesWidget','footer_sidebar','apexa',4,'{\"id\":\"GalleriesWidget\",\"title\":\"Instagram Posts\",\"limit\":6}','2024-06-18 22:59:55','2024-06-18 22:59:55'),(7,'NewsletterWidget','top_footer_sidebar','apexa',1,'{\"id\":\"NewsletterWidget\",\"title\":\"Subscribe Newsletter For Latest Updates\",\"image\":\"backgrounds\\/newsletter-bg.png\",\"background_color\":\"#0e104b\",\"display_social_links\":true,\"style\":\"style-3\"}','2024-06-18 22:59:55','2024-06-18 22:59:55'),(8,'SiteCopyrightWidget','bottom_footer_sidebar','apexa',1,'[]','2024-06-18 22:59:55','2024-06-18 22:59:55'),(9,'BlogSearchWidget','blog_sidebar','apexa',1,'{\"id\":\"BlogSearchWidget\"}','2024-06-18 22:59:55','2024-06-18 22:59:55'),(10,'BlogCategoriesWidget','blog_sidebar','apexa',2,'{\"id\":\"BlogCategoriesWidget\",\"title\":\"Categories\",\"category_ids\":[1,2,3,4,5]}','2024-06-18 22:59:55','2024-06-18 22:59:55'),(11,'BlogPostsWidget','blog_sidebar','apexa',3,'{\"id\":\"BlogPostsWidget\",\"title\":\"Latest Posts\",\"category_ids\":[1,2,3,4,5],\"limit\":4}','2024-06-18 22:59:55','2024-06-18 22:59:55'),(12,'BlogTagsWidget','blog_sidebar','apexa',4,'{\"id\":\"BlogTagsWidget\",\"title\":\"Tags\",\"limit\":5}','2024-06-18 22:59:55','2024-06-18 22:59:55'),(13,'ContactInformationWidget','header_top_start_sidebar','apexa',1,'{\"id\":\"ContactInformationWidget\",\"quantity\":2,\"title_1\":\"+123 9898 500\",\"icon_1\":\"ti ti-phone-call\",\"url_1\":\"tel:123 9898 500\",\"title_2\":\"256 Avenue, Mark Street, NewYork City\",\"icon_2\":\"ti ti-map-pin\",\"url_2\":\"https:\\/\\/www.google.com\\/maps\\/place\\/256+St+Marks+Ave,+Freeport,+NY+11520,+USA\"}','2024-06-18 22:59:55','2024-06-18 22:59:55'),(14,'ContactInformationWidget','header_top_end_sidebar','apexa',1,'{\"id\":\"ContactInformationWidget\",\"quantity\":2,\"title_1\":\"info@apexa.com\",\"icon_1\":\"ti ti-mail\",\"url_1\":\"mailto:info@apexa.com\",\"title_2\":\"Mon-Fri: 10:00am - 09:00pm\",\"icon_2\":\"ti ti-clock-hour-6\",\"url_2\":\"\",\"alignment\":\"end\"}','2024-06-18 22:59:55','2024-06-18 22:59:55'),(15,'ServicesWidget','service_sidebar','apexa',1,'{\"id\":\"ServicesWidget\",\"service_ids\":[1,2,3,4,5]}','2024-06-18 22:59:55','2024-06-18 22:59:55'),(16,'BrochureDownloadsWidget','service_sidebar','apexa',2,'{\"id\":\"BrochureDownloadsWidget\",\"title\":\"Brochure\",\"description\":\"when an unknown printer took ga lley offer typey anddey.\",\"file_1\":\"downloads\\/document.pdf\",\"file_2\":\"downloads\\/document.pdf\"}','2024-06-18 22:59:55','2024-06-18 22:59:55'),(17,'BlogPostsWidget','service_sidebar','apexa',3,'{\"id\":\"BlogPostsWidget\",\"title\":\"Latest Posts\",\"category_ids\":[1,2,3,4,5],\"limit\":4}','2024-06-18 22:59:55','2024-06-18 22:59:55'),(18,'ContactBlockWidget','service_sidebar','apexa',4,'{\"id\":\"ContactBlockWidget\",\"title\":\"If You Need Any Help Contact With Us\",\"phone_number\":\"+91 705 2101 786\"}','2024-06-18 22:59:55','2024-06-18 22:59:55'),(19,'ContactFormWidget','service_sidebar','apexa',5,'{\"id\":\"ContactFormWidget\",\"title\":\"Send Us Message\",\"button_label\":\"Send Message\",\"background_color\":\"#ECF6FA\"}','2024-06-18 22:59:55','2024-06-18 22:59:55'); /*!40000 ALTER TABLE `widgets` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2024-06-19 13:00:47
Simpan