-- phpMyAdmin SQL Dump
-- version 5.2.1
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Feb 03, 2025 at 01:53 PM
-- Server version: 8.0.40-cll-lve
-- PHP Version: 8.3.15

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;

--
-- Database: `growworl_smm`
--

-- --------------------------------------------------------

--
-- Table structure for table `admins`
--

CREATE TABLE `admins` (
  `admin_id` int NOT NULL,
  `admin_type` enum('3','2') NOT NULL DEFAULT '2',
  `admin_name` varchar(255) DEFAULT NULL,
  `admin_email` text,
  `username` varchar(225) DEFAULT NULL,
  `password` text NOT NULL,
  `telephone` varchar(50) DEFAULT NULL,
  `register_date` datetime NOT NULL,
  `login_date` datetime DEFAULT NULL,
  `login_ip` varchar(225) DEFAULT NULL,
  `client_type` enum('1','2') NOT NULL DEFAULT '2' COMMENT '2 -> ON, 1 -> OFF',
  `access` varchar(999) NOT NULL,
  `mode` varchar(225) NOT NULL,
  `two_factor` enum('0','1') NOT NULL DEFAULT '0',
  `two_factor_secret_key` varchar(100) DEFAULT NULL,
  `ip_type` int NOT NULL,
  `ip` varchar(100) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `admins`
--

INSERT INTO `admins` (`admin_id`, `admin_type`, `admin_name`, `admin_email`, `username`, `password`, `telephone`, `register_date`, `login_date`, `login_ip`, `client_type`, `access`, `mode`, `two_factor`, `two_factor_secret_key`, `ip_type`, `ip`) VALUES
(1, '3', 'SketchLeader Host', 'aapkasmmstore@gmail.com', 'Sanjit', 'Sanjit@123', '8677014327', '2021-09-08 10:19:05', '2025-02-03 13:15:35', '152.58.158.252', '2', '{\"admin_access\":1,\"users\":1,\"services\":1,\"update-prices\":1,\"bulk\":1,\"synced-logs\":1,\"orders\":1,\"subscriptions\":1,\"dripfeed\":1,\"tasks\":1,\"payments\":1,\"tickets\":1,\"additionals\":1,\"referral\":1,\"broadcast\":1,\"logs\":1,\"reports\":1,\"videop\":1,\"coupon\":1,\"child-panels\":1,\"updates\":1,\"appearance\":1,\"themes\":1,\"new_year\":1,\"pages\":1,\"news\":1,\"meta\":1,\"blog\":1,\"menu\":1,\"inte\":1,\"language\":1,\"files\":1,\"settings\":1,\"general_settings\":1,\"providers\":1,\"payments_settings\":1,\"bank_accounts\":1,\"modules\":1,\"subject\":1,\"payments_bonus\":1,\"currency-manager\":1,\"alert_settings\":1,\"site_count\":1,\"manager\":1,\"super_admin\":1}', 'sun', '0', '', 1, '10.60.615.2022');

-- --------------------------------------------------------

--
-- Table structure for table `admin_constants`
--

CREATE TABLE `admin_constants` (
  `id` int NOT NULL,
  `brand_logo` varchar(255) DEFAULT NULL,
  `paidRent` tinyint(1) DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `admin_constants`
--

INSERT INTO `admin_constants` (`id`, `brand_logo`, `paidRent`) VALUES
(1, '{\"logo_url\":\"https://aapkasmmstore.space/aapkasmmstore.png\",\"width\":\"190\",\"height\":\"36\"}', 1);

-- --------------------------------------------------------

--
-- Table structure for table `article`
--

CREATE TABLE `article` (
  `id` int NOT NULL,
  `title` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `published_at` datetime DEFAULT NULL,
  `image_file` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `bank_accounts`
--

CREATE TABLE `bank_accounts` (
  `id` int NOT NULL,
  `bank_name` varchar(225) NOT NULL,
  `bank_sube` varchar(225) NOT NULL,
  `bank_hesap` varchar(225) NOT NULL,
  `bank_iban` text NOT NULL,
  `bank_alici` varchar(225) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;

-- --------------------------------------------------------

--
-- Table structure for table `blogs`
--

CREATE TABLE `blogs` (
  `id` int NOT NULL,
  `title` varchar(128) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `content` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `published_at` datetime NOT NULL,
  `image_file` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `status` enum('1','2') CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `blog_get` varchar(225) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
  `updated_at` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `bulkedit`
--

CREATE TABLE `bulkedit` (
  `id` int NOT NULL,
  `service_id` int NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

-- --------------------------------------------------------

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

CREATE TABLE `categories` (
  `category_id` int NOT NULL,
  `category_name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
  `category_name_lang` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin,
  `category_line` double NOT NULL,
  `category_type` enum('1','2') CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT '2',
  `category_secret` enum('1','2') CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '2',
  `category_icon` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
  `is_refill` enum('1','2') CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT '1',
  `category_deleted` enum('0','1') CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

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

INSERT INTO `categories` (`category_id`, `category_name`, `category_name_lang`, `category_line`, `category_type`, `category_secret`, `category_icon`, `is_refill`, `category_deleted`) VALUES
(1, '♖ Instagram USA Services 🇺🇸', '{\"en\":\"\\u2656 Instagram USA Services \\ud83c\\uddfa\\ud83c\\uddf8\"}', 1, '2', '2', '', '1', '0'),
(2, '♖ Tiktok Updated Services 🤩🔥', '{\"en\":\"\\u2656 Tiktok Updated Services \\ud83e\\udd29\\ud83d\\udd25\"}', 2, '2', '2', '', '1', '0'),
(3, '♖ Facebook Services [Working After Updates] 🔥', '{\"en\":\"\\u2656 Facebook Services [Working After Updates] \\ud83d\\udd25\"}', 3, '2', '2', '', '1', '0'),
(4, '♖ Facebook Page Followers 100% REAL  [From ADS] 🤩', '{\"en\":\"\\u2656 Facebook Page Followers 100% REAL  [From ADS] \\ud83e\\udd29\"}', 4, '2', '2', '', '1', '0'),
(5, '♖ Youtube Views [GEO - Targeted]', '{\"en\":\"\\u2656 Youtube Views [GEO - Targeted]\"}', 5, '2', '2', '', '1', '0'),
(6, '♖ Youtube Watch Time [ Hours ] 🆕', '{\"en\":\"\\u2656 Youtube Watch Time [ Hours ] \\ud83c\\udd95\"}', 6, '2', '2', '', '1', '0'),
(7, '♖ Instagram Message [Male/Female] 🇮🇳', '{\"en\":\"\\u2656 Instagram Message [Male\\/Female] \\ud83c\\uddee\\ud83c\\uddf3\"}', 7, '2', '2', '', '1', '0'),
(8, '♖ Youtube Likes (Country Targeted)', '{\"en\":\"\\u2656 Youtube Likes (Country Targeted)\"}', 8, '2', '2', '', '1', '0'),
(9, '♖ Threads Likes', '{\"en\":\"\\u2656 Threads Likes\"}', 9, '2', '2', '', '1', '0'),
(10, '♖ Threads Followers', '{\"en\":\"\\u2656 Threads Followers\"}', 10, '2', '2', '', '1', '0'),
(11, '♖ Instagram Mentions', '{\"en\":\"\\u2656 Instagram Mentions\"}', 11, '2', '2', '', '1', '0'),
(12, '♖ Instagram Followers [Working Now] 🆕', '{\"en\":\"\\u2656 Instagram Followers [Working Now] \\ud83c\\udd95\"}', 12, '2', '2', '', '1', '0'),
(13, '♖ Instagram Followers [Update]', '{\"en\":\"\\u2656 Instagram Followers [Update]\"}', 13, '2', '2', '', '1', '0'),
(14, '♖ Instagram Followers [365 Days Refill]', '{\"en\":\"\\u2656 Instagram Followers [365 Days Refill]\"}', 14, '2', '2', '', '1', '0'),
(15, '♖ Instagram Followers [Lifetime Refill]', '{\"en\":\"\\u2656 Instagram Followers [Lifetime Refill]\"}', 15, '2', '2', '', '1', '0'),
(16, '♖ Instagram Followers [ No Refill ]', '{\"en\":\"\\u2656 Instagram Followers [ No Refill ]\"}', 16, '2', '2', '', '1', '0'),
(17, '♖ Instagram Followers [Country Targeted]', '{\"en\":\"\\u2656 Instagram Followers [Country Targeted]\"}', 17, '2', '2', '', '1', '0'),
(18, '♖ Instagram Likes [Refill]', '{\"en\":\"\\u2656 Instagram Likes [Refill]\"}', 18, '2', '2', '', '1', '0'),
(19, '♖ Instagram Likes [No Refill]', '{\"en\":\"\\u2656 Instagram Likes [No Refill]\"}', 19, '2', '2', '', '1', '0'),
(20, '♖ Instagram Likes [ Targeted ]', '{\"en\":\"\\u2656 Instagram Likes [ Targeted ]\"}', 20, '2', '2', '', '1', '0'),
(21, '♖ Instagram VIP Likes💎', '{\"en\":\"\\u2656 Instagram VIP Likes\\ud83d\\udc8e\"}', 21, '2', '2', '', '1', '0'),
(22, '♖ Instagram Video Views', '{\"en\":\"\\u2656 Instagram Video Views\"}', 22, '2', '2', '', '1', '0'),
(23, '♖ Instagram Reels', '{\"en\":\"\\u2656 Instagram Reels\"}', 23, '2', '2', '', '1', '0'),
(24, '♖ Instagram Story', '{\"en\":\"\\u2656 Instagram Story\"}', 24, '2', '2', '', '1', '0'),
(25, '♖ Instagram Custom Comments', '{\"en\":\"\\u2656 Instagram Custom Comments\"}', 25, '2', '2', '', '1', '0'),
(26, '♖ Instagram Random Comments', '{\"en\":\"\\u2656 Instagram Random Comments\"}', 26, '2', '2', '', '1', '0'),
(27, '♖ Instagram Power Comments', '{\"en\":\"\\u2656 Instagram Power Comments\"}', 27, '2', '2', '', '1', '0'),
(28, '♖ Instagram Comment Likes', '{\"en\":\"\\u2656 Instagram Comment Likes\"}', 28, '2', '2', '', '1', '0'),
(29, '♖ Instagram TV', '{\"en\":\"\\u2656 Instagram TV\"}', 29, '2', '2', '', '1', '0'),
(30, '♖ Instagram Live Video', '{\"en\":\"\\u2656 Instagram Live Video\"}', 30, '2', '2', '', '1', '0'),
(31, '♖ Instagram [Save/Shares/Profile Visits]', '{\"en\":\"\\u2656 Instagram [Save\\/Shares\\/Profile Visits]\"}', 31, '2', '2', '', '1', '0'),
(32, '♖ Instagram Auto Likes / Views / Comments', '{\"en\":\"\\u2656 Instagram Auto Likes \\/ Views \\/ Comments\"}', 32, '2', '2', '', '1', '0'),
(33, '♖ Instagram Services By Gender [Male/Female]', '{\"en\":\"\\u2656 Instagram Services By Gender [Male\\/Female]\"}', 33, '2', '2', '', '1', '0'),
(34, '♖ Instagram Indian Likes 🇮🇳', '{\"en\":\"\\u2656 Instagram Indian Likes \\ud83c\\uddee\\ud83c\\uddf3\"}', 34, '2', '2', '', '1', '0'),
(35, '♖ Instagram Indian Services 🇮🇳', '{\"en\":\"\\u2656 Instagram Indian Services \\ud83c\\uddee\\ud83c\\uddf3\"}', 35, '2', '2', '', '1', '0');

-- --------------------------------------------------------

--
-- Table structure for table `childpanels`
--

CREATE TABLE `childpanels` (
  `id` int NOT NULL,
  `client_id` int NOT NULL,
  `domain` varchar(191) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `child_panel_currency` varchar(191) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `child_panel_username` varchar(191) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `child_panel_password` varchar(191) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `charged_amount` float NOT NULL,
  `child_panel_status` enum('Pending','Active','Frozen','Suspended') CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL DEFAULT 'Pending',
  `renewal_date` date NOT NULL,
  `created_on` datetime NOT NULL,
  `child_panel_uqid` varchar(225) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `clients`
--

CREATE TABLE `clients` (
  `client_id` int NOT NULL,
  `name` varchar(225) DEFAULT NULL,
  `email` varchar(225) NOT NULL,
  `username` varchar(225) DEFAULT NULL,
  `admin_type` enum('1','2') NOT NULL DEFAULT '2',
  `password` text NOT NULL,
  `telephone` varchar(225) DEFAULT NULL,
  `balance` decimal(21,4) NOT NULL DEFAULT '0.0000',
  `spent` decimal(21,4) NOT NULL DEFAULT '0.0000',
  `balance_type` enum('1','2') NOT NULL DEFAULT '2',
  `debit_limit` double DEFAULT NULL,
  `register_date` datetime NOT NULL,
  `login_date` datetime DEFAULT NULL,
  `login_ip` varchar(225) DEFAULT NULL,
  `apikey` text NOT NULL,
  `tel_type` enum('1','2') NOT NULL DEFAULT '1' COMMENT '2 -> ON, 1 -> OFF',
  `email_type` enum('1','2') NOT NULL DEFAULT '1' COMMENT '2 -> ON, 1 -> OFF',
  `client_type` enum('1','2') NOT NULL DEFAULT '2' COMMENT '2 -> ON, 1 -> OFF',
  `access` text,
  `lang` varchar(255) NOT NULL DEFAULT 'tr',
  `timezone` double NOT NULL DEFAULT '0',
  `currency_type` varchar(10) DEFAULT NULL,
  `ref_code` text NOT NULL,
  `ref_by` text,
  `change_email` enum('1','2') NOT NULL DEFAULT '2',
  `resend_max` int NOT NULL DEFAULT '3',
  `currency` varchar(225) NOT NULL DEFAULT '1',
  `passwordreset_token` varchar(225) NOT NULL,
  `discount_percentage` int NOT NULL,
  `broadcast_id` varchar(255) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `clients`
--

INSERT INTO `clients` (`client_id`, `name`, `email`, `username`, `admin_type`, `password`, `telephone`, `balance`, `spent`, `balance_type`, `debit_limit`, `register_date`, `login_date`, `login_ip`, `apikey`, `tel_type`, `email_type`, `client_type`, `access`, `lang`, `timezone`, `currency_type`, `ref_code`, `ref_by`, `change_email`, `resend_max`, `currency`, `passwordreset_token`, `discount_percentage`, `broadcast_id`) VALUES
(1, NULL, 'aapkasmmstore@gmail.com', 'aapkasmmstore', '2', 'a8fe90cf5e1ce98db72326205dad0049', NULL, 99.9449, 0.0551, '2', 0, '2025-02-03 13:32:07', '2025-02-03 13:32:27', '152.58.158.252', 'eeb75ad6fff146c5a2bf64fc28590893', '1', '2', '2', 'null', 'en', 0, 'INR', '4f549a', NULL, '2', 3, '1', '8b1f0bfb6bb8f81a2dbbf0862e81fa0e', 0, '0');

-- --------------------------------------------------------

--
-- Table structure for table `clients_category`
--

CREATE TABLE `clients_category` (
  `id` int NOT NULL,
  `client_id` int NOT NULL,
  `category_id` int NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;

-- --------------------------------------------------------

--
-- Table structure for table `clients_price`
--

CREATE TABLE `clients_price` (
  `id` int NOT NULL,
  `client_id` int NOT NULL,
  `service_id` int NOT NULL,
  `service_price` double NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;

-- --------------------------------------------------------

--
-- Table structure for table `clients_service`
--

CREATE TABLE `clients_service` (
  `id` int NOT NULL,
  `client_id` int NOT NULL,
  `service_id` int NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;

-- --------------------------------------------------------

--
-- Table structure for table `client_report`
--

CREATE TABLE `client_report` (
  `id` int NOT NULL,
  `client_id` int NOT NULL,
  `action` text NOT NULL,
  `report_ip` varchar(225) NOT NULL,
  `report_date` datetime NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `client_report`
--

INSERT INTO `client_report` (`id`, `client_id`, `action`, `report_ip`, `report_date`) VALUES
(1, 1, '\r\n    User registered.', '2405:201:a408:f983:d1f:4e8:74c7:faa2', '2024-12-30 18:32:43'),
(2, 1, 'API Key changed', '2405:201:a408:f983:d1f:4e8:74c7:faa2', '2024-12-30 18:33:11'),
(3, 1, 'Member logged in.', '152.58.158.252', '2025-02-03 13:32:27'),
(4, 1, '0.027918 New Order #1.', '152.58.158.252', '2025-02-03 13:33:39'),
(5, 1, '0.02717 New Order #2.', '152.58.158.252', '2025-02-03 13:36:13'),
(6, 1, 'API Key changed', '152.58.158.252', '2025-02-03 13:42:53');

-- --------------------------------------------------------

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

CREATE TABLE `currencies` (
  `id` int NOT NULL,
  `currency_name` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `currency_code` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
  `currency_symbol` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `symbol_position` varchar(10) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT 'left',
  `currency_rate` double NOT NULL,
  `currency_inverse_rate` double NOT NULL,
  `is_enable` tinyint(1) NOT NULL DEFAULT '0',
  `currency_hash` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

INSERT INTO `currencies` (`id`, `currency_name`, `currency_code`, `currency_symbol`, `symbol_position`, `currency_rate`, `currency_inverse_rate`, `is_enable`, `currency_hash`) VALUES
(1, 'Indian Rupee', 'INR', '₹', 'left', 1, 1, 1, 'a998d486cc7ea9917fd02f6caee5673933182f30'),
(2, 'U.S. Dollar', 'USD', '$', 'left', 0.011472519227162, 87.164813603663, 1, '48f0d8f1437778d67f345e30b5f398ffc771afe4'),
(3, 'Euro', 'EUR', '€', 'left', 0.011217407615832, 89.147157190635, 1, 'a76c6d2e7aca644af29faf0679c214532cf677ca'),
(4, 'Turkish Lira', 'TRY', '₺', 'left', 0.41132651620504, 2.4311586066129, 1, '2a9bae862a5967e5eb8da8ec020bb8190ae7be7d'),
(5, 'Russian Rouble', 'RUB', '₽', 'left', 1.1319138360153, 0.88345947207458, 1, '2d52239dada54aa63def537c6cec59473ffe8bb1'),
(6, 'Brazilian Real', 'BRL', 'R$', 'left', 0.066992726205369, 14.926993669946, 1, '10822ee29e673a4cc8277a3b35c0663d302baef3'),
(7, 'South Korean Won', 'KRW', '₩', 'left', 16.847683361471, 0.059355341535378, 1, '7643600700c3ed25d53084f278bdd974957cac3a'),
(8, 'Saudi Riyal', 'SAR', '﷼', 'left', 0.043025190136762, 23.242198275507, 1, '6be758284f2e67e43d04ea7c0c7c545ca2eba295'),
(9, 'Chinese Yuan', 'CNY', '¥', 'left', 0.083113862314763, 12.031687279949, 1, 'f00f040909620f8bb66b49d10adb616912433b65'),
(10, 'Vietnamese Dong', 'VND', '₫', 'left', 290.65841305571, 0.0034404646660213, 1, '472b25c7a2107c6d1e6249d18333a32f7a1e12f7'),
(11, 'Kuwaiti Dinar', 'KWD', 'د.ك', 'left', 0.0035390067008834, 282.56516150432, 1, 'de958b2a0c41151aad51e9c24dd41b875afbcc34'),
(12, 'Egyptian Pound', 'EGP', '£', 'left', 0.57627519325681, 1.7352820522232, 1, '469fd732faab87f94b562d8e6831fc79f38acff1'),
(13, 'Pakistani Rupee', 'PKR', '₨', 'left', 3.1992885618647, 0.31256949183013, 1, '7a8a8da37166774b69e0fca73a4d16e91c2dba53'),
(14, 'Nigerian Naira', 'NGN', '₦', 'left', 17.309163659948, 0.057772866421843, 1, '7ace161ee8dc795a400b1de5d760c382168796ae');

-- --------------------------------------------------------

--
-- Table structure for table `custom_settings`
--

CREATE TABLE `custom_settings` (
  `id` int NOT NULL,
  `snow_data` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `snow_data_array` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `snow_status` enum('1','2') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '1' COMMENT '1 - inactive , 2 - active',
  `start_count_parser` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
  `orders_count_increase` varchar(225) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `custom_settings`
--

INSERT INTO `custom_settings` (`id`, `snow_data`, `snow_data_array`, `snow_status`, `start_count_parser`, `orders_count_increase`) VALUES
(1, '\"snow\":{\"init\":false,\"options\":{\"particles\":{\"move\":{\"speed\":,\"bounce\":false,\"enable\":true,\"random\":false,\"attract\":{\"enable\":false,\"rotateX\":600,\"rotateY\":1200},\"out_mode\":\"out\",\"straight\":false,\"direction\":\"bottom\"},\"size\":{\"anim\":{\"sync\":false,\"speed\":40,\"enable\":false,\"size_min\":0.1},\"value\":10,\"random\":true},\"color\":{\"value\":\"#fff\"},\"number\":{\"value\":,\"density\":{\"enable\":true,\"value_area\":650}},\"opacity\":{\"anim\":{\"sync\":false,\"speed\":1,\"enable\":true,\"opacity_min\":0.9},\"value\":0.9,\"random\":true},\"line_linked\":{\"color\":\"#ffffff\",\"width\":1,\"enable\":false,\"opacity\":0.8,\"distance\":500}},\"interactivity\":{\"modes\":{\"bubble\":{\"size\":4,\"speed\":3,\"opacity\":1,\"distance\":400,\"duration\":0.3},\"repulse\":{\"speed\":3,\"distance\":200,\"duration\":0.4}},\"events\":{\"resize\":true,\"onclick\":{\"mode\":\"repulse\",\"enable\":true},\"onhover\":{\"mode\":\"bubble\",\"enable\":false}},\"detect_on\":\"window\"},\"retina_detect\":true}},\"toys\":{\"init\":false,\"options\":{\"count\":100,\"speed\":1,\"images\":[],\"maxSize\":30,\"launches\":\"1\"}},\"garland\":{\"init\":false,\"options\":{\"type\":\"\",\"style\":\"\"}},\"fireworks\":{\"init\":false,\"options\":{\"delay\":{\"max\":30,\"min\":30},\"friction\":,\"launches\":1,}}', '{\"snow_fall\":\"true\",\"snowflakes\":\"20\",\"snow_speed\":\"3\",\"garlands\":\"true\",\"gar_shape\":\"apple\",\"gar_style\":\"style1\",\"fire_works\":\"true\",\"fire_size\":\"0.95\",\"fire_speed\":\"slow\",\"toy_size\":\"80\",\"toy_quantity\":\"100\",\"toy_speed\":\"6\",\"toy_launch\":\"infinite\"}', '1', '{\"none\":\"Catch from supplier\",\"instagram_follower\":\"Instagram followers\",\"instagram_photo\":\"Instagram likes\",\"instagram_comments\":\"Instagram comments\",\"youtube_views\":\"Youtube views\",\"youtube_likes\":\"Youtube likes\",\"youtube_comments\":\"Youtube comments\",\"youtube_subscribers\":\"Youtube subscribers\"}', '0:0');

-- --------------------------------------------------------

--
-- Table structure for table `decoration`
--

CREATE TABLE `decoration` (
  `id` int NOT NULL,
  `snow_effect` int NOT NULL,
  `snow_colour` text NOT NULL,
  `diwali_lights` int NOT NULL,
  `video_link` text NOT NULL,
  `christmas_deco` varchar(5000) NOT NULL,
  `action_link` text NOT NULL,
  `pop_noti` int NOT NULL,
  `pop_title` text NOT NULL,
  `pop_desc` text NOT NULL,
  `action_text` varchar(10) NOT NULL,
  `action_button` int NOT NULL,
  `snow_fall` varchar(500) DEFAULT NULL,
  `garlands` text,
  `fire_works` text,
  `toys` text,
  `snowflakes` int NOT NULL,
  `snow_speed` int NOT NULL,
  `gar_shape` text NOT NULL,
  `gar_style` text NOT NULL,
  `fire_size` varchar(100) NOT NULL,
  `fire_speed` text NOT NULL,
  `toy_size` int NOT NULL,
  `toy_quantity` int NOT NULL,
  `toy_speed` int NOT NULL,
  `toy_launch` varchar(100) NOT NULL,
  `toy_a` varchar(50) NOT NULL,
  `toy_b` varchar(50) NOT NULL,
  `toy_c` varchar(50) NOT NULL,
  `toy_d` varchar(50) NOT NULL,
  `toy_e` varchar(50) NOT NULL,
  `toy_f` varchar(50) NOT NULL,
  `toy_g` varchar(50) NOT NULL,
  `toy_h` varchar(50) NOT NULL,
  `toy_i` varchar(50) NOT NULL,
  `toy_j` varchar(50) NOT NULL,
  `toy_k` varchar(50) NOT NULL,
  `psw_license` text NOT NULL,
  `toy_l` varchar(50) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `decoration`
--

INSERT INTO `decoration` (`id`, `snow_effect`, `snow_colour`, `diwali_lights`, `video_link`, `christmas_deco`, `action_link`, `pop_noti`, `pop_title`, `pop_desc`, `action_text`, `action_button`, `snow_fall`, `garlands`, `fire_works`, `toys`, `snowflakes`, `snow_speed`, `gar_shape`, `gar_style`, `fire_size`, `fire_speed`, `toy_size`, `toy_quantity`, `toy_speed`, `toy_launch`, `toy_a`, `toy_b`, `toy_c`, `toy_d`, `toy_e`, `toy_f`, `toy_g`, `toy_h`, `toy_i`, `toy_j`, `toy_k`, `psw_license`, `toy_l`) VALUES
(1, 0, '#004a00', 0, '', '\n<style>.particle-snow{position:fixed;top:0;left:0;width:100%;height:100%;z-index:1;pointer-events:none}.particle-snow canvas{position:fixed;top:0;left:0;width:100%;height:100%;pointer-events:none}.christmas-garland{text-align:center;white-space:nowrap;overflow:hidden;position:absolute;z-index:1;padding:0;pointer-events:none;width:100%;height:85px}.christmas-garland .christmas-garland__item{position:relative;width:28px;height:28px;border-radius:50%;display:inline-block;margin-left:20px}.christmas-garland .christmas-garland__item .shape{-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-name:flash-1;animation-name:flash-1;-webkit-animation-duration:2s;animation-duration:2s}.christmas-garland .christmas-garland__item .apple{width:22px;height:22px;border-radius:50%;margin-left:auto;margin-right:auto;margin-top:8px}.christmas-garland .christmas-garland__item .pear{width:12px;height:28px;border-radius:50%;margin-left:auto;margin-right:auto;margin-top:6px}.christmas-garland .christmas-garland__item:nth-child(2n+1) .shape{-webkit-animation-name:flash-2;animation-name:flash-2;-webkit-animation-duration:.4s;animation-duration:.4s}.christmas-garland .christmas-garland__item:nth-child(4n+2) .shape{-webkit-animation-name:flash-3;animation-name:flash-3;-webkit-animation-duration:1.1s;animation-duration:1.1s}.christmas-garland .christmas-garland__item:nth-child(odd) .shape{-webkit-animation-duration:1.8s;animation-duration:1.8s}.christmas-garland .christmas-garland__item:nth-child(3n+1) .shape{-webkit-animation-duration:1.4s;animation-duration:1.4s}.christmas-garland .christmas-garland__item:before{content:\"\";position:absolute;background:#222;width:10px;height:10px;border-radius:3px;top:-1px;left:9px}.christmas-garland .christmas-garland__item:after{content:\"\";top:-9px;left:14px;position:absolute;width:52px;height:18px;border-bottom:solid #222 2px;border-radius:50%}.christmas-garland .christmas-garland__item:last-child:after{content:none}.christmas-garland .christmas-garland__item:first-child{margin-left:-40px}</style>\n<!-- developed by Raj Patel-->\n      \n<!-- developed by Raj Patel-->  \n    <script type=\"text/javascript\" src=\"https://cdn.mypanel.link/libs/jquery/1.12.4/jquery.min.js\">\n          </script>\n    \n<!-- developed by Raj Patel-->\n        \n    <script type=\"text/javascript\" src=\"https://cdn.mypanel.link/global/flpbonhmkq9tsp29.js\">\n          </script>\n    \n        \n<!-- developed by Raj Patel-->\n    <script type=\"text/javascript\" src=\"https://cdn.mypanel.link/global/a4kdpfesx15uh7ae.js\">\n          </script>\n    \n<!-- developed by Raj Patel-->\n        \n    <script type=\"text/javascript\" src=\"https://cdn.mypanel.link/global/596z6ya3isgxcipy.js\">\n          </script>\n    \n        \n    <script type=\"text/javascript\" src=\"https://cdn.mypanel.link/global/39j8e9yrxs283d1x.js\">\n          </script>\n    \n        \n    <script type=\"text/javascript\" src=\"https://cdn.mypanel.link/global/33srijdbqcgk6lsz.js\">\n          </script>\n    \n<!-- developed by Raj Patel-->\n<!-- developed by Raj Patel-->\n        \n    <script type=\"text/javascript\" src=\"https://cdn.mypanel.link/52pp7z/wxbh27w4jdzpslxn.js\">\n          </script>\n    \n<!-- developed by Raj Patel-->\n<!-- developed by Raj Patel-->\n        \n    <script type=\"text/javascript\" src=\"https://cdn.mypanel.link/52pp7z/angedasgma230hxr.js\">\n          </script>\n    \n        \n<!-- developed by Raj Patel-->\n<!-- developed by Raj Patel-->\n    <script type=\"text/javascript\" >\n       window.modules.layouts = {\"theme_id\":1,\"auth\":0,\"live\":true};     </script>\n    \n        \n    <script type=\"text/javascript\" >\n       window.modules.signin = [];     </script>\n    \n<!-- developed by Raj Patel-->\n<!-- developed by Raj Patel-->\n<!-- developed by Raj Patel-->\n        \n    <script type=\"text/javascript\" >\n       document.addEventListener(\'DOMContentLoaded\', function() { \nvar newYearEvent = new window.NewYearEvent({\"snow\":{\"init\":true,\"options\":{\"particles\":{\"move\":{\"speed\":3,\"bounce\":false,\"enable\":true,\"random\":false,\"attract\":{\"enable\":false,\"rotateX\":600,\"rotateY\":1200},\"out_mode\":\"out\",\"straight\":false,\"direction\":\"bottom\"},\"size\":{\"anim\":{\"sync\":false,\"speed\":40,\"enable\":false,\"size_min\":0.1},\"value\":5,\"random\":true},\"color\":{\"value\":\"#fff\"},\"number\":{\"value\":100,\"density\":{\"enable\":true,\"value_area\":650}},\"opacity\":{\"anim\":{\"sync\":false,\"speed\":1,\"enable\":true,\"opacity_min\":0.9},\"value\":0.9,\"random\":true},\"line_linked\":{\"color\":\"#ffffff\",\"width\":1,\"enable\":false,\"opacity\":0.8,\"distance\":500}},\"interactivity\":{\"modes\":{\"bubble\":{\"size\":4,\"speed\":3,\"opacity\":1,\"distance\":400,\"duration\":0.3},\"repulse\":{\"speed\":3,\"distance\":200,\"duration\":0.4}},\"events\":{\"resize\":true,\"onclick\":{\"mode\":\"repulse\",\"enable\":true},\"onhover\":{\"mode\":\"bubble\",\"enable\":false}},\"detect_on\":\"window\"},\"retina_detect\":true}},\"toys\"', '', 0, '', '', '', 0, NULL, NULL, NULL, NULL, 50, 10, 'apple', 'style2', '0.95', 'slow', 80, 100, 6, 'infinite', '', '', '', '', '', '1', '', '', '', '1', '1', 'GARUDSMM.IN', '1');

-- --------------------------------------------------------

--
-- Table structure for table `earn`
--

CREATE TABLE `earn` (
  `earn_id` int NOT NULL,
  `client_id` int NOT NULL,
  `link` text NOT NULL,
  `earn_note` text NOT NULL,
  `status` enum('Pending','Under Review','Funds Granted','Rejected','Not Eligible') NOT NULL DEFAULT 'Pending'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

-- --------------------------------------------------------

--
-- Table structure for table `files`
--

CREATE TABLE `files` (
  `id` int NOT NULL,
  `name` varchar(100) DEFAULT NULL,
  `link` text,
  `date` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

-- --------------------------------------------------------

--
-- Table structure for table `General_options`
--

CREATE TABLE `General_options` (
  `id` int NOT NULL,
  `coupon_status` enum('1','2') CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL DEFAULT '1',
  `updates_show` enum('1','2') CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL DEFAULT '1',
  `panel_status` enum('Pending','Active','Frozen','Suspended') CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `panel_orders` int NOT NULL,
  `panel_thismonthorders` int NOT NULL,
  `massorder` enum('1','2') CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL DEFAULT '2',
  `balance_format` enum('0.0','0.00','0.000','0.0000') CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL DEFAULT '0.0',
  `currency_format` enum('0','2','3','4') CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL DEFAULT '3',
  `ticket_system` enum('1','2') CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

--
-- Dumping data for table `General_options`
--

INSERT INTO `General_options` (`id`, `coupon_status`, `updates_show`, `panel_status`, `panel_orders`, `panel_thismonthorders`, `massorder`, `balance_format`, `currency_format`, `ticket_system`) VALUES
(1, '', '1', 'Active', 1024, 20, '1', '', '', '2');

-- --------------------------------------------------------

--
-- Table structure for table `integrations`
--

CREATE TABLE `integrations` (
  `id` int NOT NULL,
  `name` varchar(225) NOT NULL,
  `description` varchar(225) NOT NULL,
  `icon_url` varchar(225) NOT NULL,
  `code` text NOT NULL,
  `visibility` int NOT NULL,
  `status` int NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `integrations`
--

INSERT INTO `integrations` (`id`, `name`, `description`, `icon_url`, `code`, `visibility`, `status`) VALUES
(1, 'Beamer', 'Announce updates and get feedback with in-app notification center, widgets and changelog', '/img/integrations/Beamer.svg', '', 1, 1),
(2, 'Getsitecontrol', 'It helps you prevent website visitors from leaving your website without taking any action.', '/img/integrations/Getsitecontrol.svg', '<html>\r\n<body style=\'background-color:black\'>\r\n<canvas id=\'myCanvas\' width=\'800\' height=\'800\'></canvas>\r\n<script>\r\nconst max_fireworks = 5,\r\n  max_sparks = 50;\r\nlet canvas = document.getElementById(\'myCanvas\');\r\nlet context = canvas.getContext(\'2d\');\r\nlet fireworks = [];\r\n \r\nfor (let i = 0; i < max_fireworks; i++) {\r\n  let firework = {\r\n    sparks: []\r\n  };\r\n  for (let n = 0; n < max_sparks; n++) {\r\n    let spark = {\r\n      vx: Math.random() * 5 + .5,\r\n      vy: Math.random() * 5 + .5,\r\n      weight: Math.random() * .3 + .03,\r\n      red: Math.floor(Math.random() * 2),\r\n      green: Math.floor(Math.random() * 2),\r\n      blue: Math.floor(Math.random() * 2)\r\n    };\r\n    if (Math.random() > .5) spark.vx = -spark.vx;\r\n    if (Math.random() > .5) spark.vy = -spark.vy;\r\n    firework.sparks.push(spark);\r\n  }\r\n  fireworks.push(firework);\r\n  resetFirework(firework);\r\n}\r\nwindow.requestAnimationFrame(explode);\r\n \r\nfunction resetFirework(firework) {\r\n  firework.x = Math.floor(Math.random() * canvas.width);\r\n  firework.y = canvas.height;\r\n  firework.age = 0;\r\n  firework.phase = \'fly\';\r\n}\r\n \r\nfunction explode() {\r\n  context.clearRect(0, 0, canvas.width, canvas.height);\r\n  fireworks.forEach((firework,index) => {\r\n    if (firework.phase == \'explode\') {\r\n        firework.sparks.forEach((spark) => {\r\n        for (let i = 0; i < 10; i++) {\r\n          let trailAge = firework.age + i;\r\n          let x = firework.x + spark.vx * trailAge;\r\n          let y = firework.y + spark.vy * trailAge + spark.weight * trailAge * spark.weight * trailAge;\r\n          let fade = i * 20 - firework.age * 2;\r\n          let r = Math.floor(spark.red * fade);\r\n          let g = Math.floor(spark.green * fade);\r\n          let b = Math.floor(spark.blue * fade);\r\n          context.beginPath();\r\n          context.fillStyle = \'rgba(\' + r + \',\' + g + \',\' + b + \',1)\';\r\n          context.rect(x, y, 4, 4);\r\n          context.fill();\r\n        }\r\n      });\r\n      firework.age++;\r\n      if (firework.age > 100 && Math.random() < .05) {\r\n        resetFirework(firework);\r\n      }\r\n    } else {\r\n      firework.y = firework.y - 10;\r\n      for (let spark = 0; spark < 15; spark++) {\r\n        context.beginPath();\r\n        context.fillStyle = \'rgba(\' + index * 50 + \',\' + spark * 17 + \',0,1)\';\r\n        context.rect(firework.x + Math.random() * spark - spark / 2, firework.y + spark * 4, 4, 4);\r\n        context.fill();\r\n      }\r\n      if (Math.random() < .001 || firework.y < 200) firework.phase = \'explode\';\r\n    }\r\n  });\r\n  window.requestAnimationFrame(explode);\r\n}\r\n</script>\r\n</body>\r\n</html>', 1, 1),
(3, 'Google Analytics', 'Statistics and basic analytical tools for search engine optimization (SEO) and marketing purposes', '/img/integrations/Google%20Analytics.svg', '', 1, 1),
(4, 'Google Tag manager', 'Manage all your website tags without editing the code using simple tag management solutions', '/img/integrations/Google%20Tag%20manager.svg', '', 1, 1),
(5, 'JivoChat', 'All-in-one business messenger to talk to customers: live chat, phone, email and social', '/img/integrations/JivoChat.svg', '', 1, 1),
(6, 'Onesignal', 'Leader in customer engagement, empowers mobile push, web push, email, in-app messages', '/img/integrations/Onesignal.svg', '', 1, 1),
(7, 'Push alert', 'Increase reach, revenue, retarget users with Push Notifications on desktop and mobile', '/img/integrations/Push%20alert.svg', '', 1, 1),
(8, 'Smartsupp', 'Live chat, email inbox and Facebook Messenger in one customer messaging platform', '/img/integrations/Smartsupp.svg', '', 1, 1),
(9, 'Tawk.to', 'Track and chat with visitors on your website, mobile app or a free customizable page', '/img/integrations/Tawk.to.svg', '', 1, 1),
(10, 'Tidio', 'Communicator for businesses that keep live chat, chatbots, Messenger and email in one place', '/img/integrations/Tidio.svg', '', 1, 1),
(11, 'Zendesk Chat', 'Helps respond quickly to customer questions, reduce wait times and increase sales', '/img/integrations/Zendesk%20Chat.svg', '', 1, 1),
(12, 'Getbutton.io', 'Chat with website visitors through popular messaging apps. Whatsapp, messenger etc. contact button.', '/img/integrations/Getbutton.svg', '', 1, 1),
(13, 'Google reCAPTCHA v2', 'It uses an advanced risk analysis engine and adaptive challenges to prevent malware from engaging in abusive activities on your website.', '/img/integrations/reCAPTCHA.svg', '', 1, 1),
(14, 'Whatsapp', 'Whatsapp is for Personal Support of your Users', '/img/integrations/whatsapp.svg', '<!-- Start of Async Callbell Code -->\r\n<script>\r\n  window.callbellSettings = {\r\n    token: \"miqUCY6XUYVVEVmiKA2C5iMu\"\r\n  };\r\n</script>\r\n<script>\r\n  (function(){var w=window;var ic=w.callbell;if(typeof ic===\"function\"){ic(\'reattach_activator\');ic(\'update\',callbellSettings);}else{var d=document;var i=function(){i.c(arguments)};i.q=[];i.c=function(args){i.q.push(args)};w.Callbell=i;var l=function(){var s=d.createElement(\'script\');s.type=\'text/javascript\';s.async=true;s.src=\'https://dash.callbell.eu/include/\'+window.callbellSettings.token+\'.js\';var x=d.getElementsByTagName(\'script\')[0];x.parentNode.insertBefore(s,x);};if(w.attachEvent){w.attachEvent(\'onload\',l);}else{w.addEventListener(\'load\',l,false);}}})()\r\n</script>\r\n<!-- End of Async Callbell Code -->\r\n', 1, 1);

-- --------------------------------------------------------

--
-- Table structure for table `kuponlar`
--

CREATE TABLE `kuponlar` (
  `id` int NOT NULL,
  `kuponadi` varchar(255) NOT NULL,
  `adet` int NOT NULL,
  `tutar` double NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

--
-- Dumping data for table `kuponlar`
--

INSERT INTO `kuponlar` (`id`, `kuponadi`, `adet`, `tutar`) VALUES
(2, 'AAPKASMMSTORE', 1, 500);

-- --------------------------------------------------------

--
-- Table structure for table `kupon_kullananlar`
--

CREATE TABLE `kupon_kullananlar` (
  `id` int NOT NULL,
  `uye_id` int NOT NULL,
  `kuponadi` varchar(255) NOT NULL,
  `tutar` double NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;

-- --------------------------------------------------------

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

CREATE TABLE `languages` (
  `id` int NOT NULL,
  `language_name` varchar(225) NOT NULL,
  `language_code` varchar(225) NOT NULL,
  `language_type` enum('2','1') NOT NULL DEFAULT '2',
  `default_language` enum('0','1') NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;

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

INSERT INTO `languages` (`id`, `language_name`, `language_code`, `language_type`, `default_language`) VALUES
(1, 'English', 'en', '2', '1'),
(2, 'Arabic', 'ar', '2', '0');

-- --------------------------------------------------------

--
-- Table structure for table `Mailforms`
--

CREATE TABLE `Mailforms` (
  `id` int NOT NULL,
  `subject` varchar(225) NOT NULL,
  `message` varchar(225) NOT NULL,
  `status` enum('1','2') NOT NULL DEFAULT '1',
  `header` varchar(225) NOT NULL,
  `footer` varchar(225) NOT NULL,
  `type` enum('Admins','Users') NOT NULL DEFAULT 'Users'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

-- --------------------------------------------------------

--
-- Table structure for table `menus`
--

CREATE TABLE `menus` (
  `id` int NOT NULL,
  `name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
  `menu_name_lang` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin,
  `menu_line` double NOT NULL,
  `type` enum('1','2') CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT '2',
  `slug` varchar(225) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '2',
  `icon` varchar(225) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL,
  `menu_status` enum('1','2') CHARACTER SET utf8mb3 COLLATE utf8mb3_general_ci NOT NULL DEFAULT '1',
  `visible` enum('Internal','External') CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'Internal',
  `active` varchar(225) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
  `tiptext` varchar(225) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

--
-- Dumping data for table `menus`
--

INSERT INTO `menus` (`id`, `name`, `menu_name_lang`, `menu_line`, `type`, `slug`, `icon`, `menu_status`, `visible`, `active`, `tiptext`) VALUES
(1, 'New Order', '{\"en\": \"New Order\"}', 1, '2', '/', 'fa fa-shopping-bag', '1', 'Internal', 'neworder', ''),
(2, 'Mass Order', '{\"en\": \"Mass Order\"}', 2, '1', '/massorder', 'fas fa-cart-plus', '1', 'Internal', 'massorder', 'Shown only if Mass Order system enabled for use'),
(3, 'Orders ', '{\"en\": \"Orders \"}', 3, '2', '/orders', 'fas fa-server', '1', 'Internal', 'orders', ''),
(6, 'Services', '{\"en\": \"Services\"}', 5, '2', '/services', 'fas fa-file-alt', '1', 'Internal', 'services', ''),
(7, 'Add Funds', '{\"en\": \"Add Funds\"}', 6, '2', '/addfunds', 'fab fa-cc-amazon-pay', '1', 'Internal', 'addfunds', ''),
(8, 'Api', '{\"en\": \"Api\"}', 9, '2', '/api', 'fal fa-plug', '1', 'Internal', 'api', ''),
(9, 'Tickets ', '{\"en\": \"Tickets \"}', 8, '2', '/tickets', 'fas fa-headset', '1', 'Internal', 'tickets', ''),
(10, 'Child Panels', '{\"en\": \"Child Panels\"}', 10, '2', '/child-panels', 'fas fa-child', '1', 'Internal', 'child-panels', 'Shown only if child panels selling enabled'),
(11, 'Refer & Earn', '{\"en\": \"Refer & Earn\"}', 11, '2', '/refer', 'fas fa-bezier-curve', '1', 'Internal', 'refer', 'Shown only if affiliate system enabled for use'),
(13, 'Terms', '{\"en\": \"Terms\"}', 12, '2', '/terms', 'fas fa-exclamation-triangle', '1', 'Internal', 'terms', ''),
(14, 'Signup ', '{\"en\": \"Signup\"}', 2, '2', '/signup', 'fas fa-arrow-right', '1', 'External', 'signup', 'Shown only if Signup system enabled for use'),
(15, 'Api', '{\"en\": \"Api\"}', 4, '2', '/api', 'fal fa-plug', '1', 'External', 'api', ''),
(17, 'Daily Updates', '{\"en\": \"Daily Updates\"}', 13, '1', '/updates', 'fas fa-bell', '1', 'Internal', '', 'Shown only if Updates System enabled'),
(18, 'Terms', '{\"en\": \"Terms\"}', 3, '2', '/terms', 'fas fa-exclamation-triangle', '1', 'External', 'terms', ''),
(24, 'Services', '{\"en\": \"Services\"}', 14, '2', '/services', 'fas fa-file-alt', '1', 'External', 'services', ''),
(28, 'Transfer Funds ', '{\"en\": \"Transfer Funds \"}', 14, '2', '/transferfunds', 'fas fa-grip-vertical', '1', 'Internal', 'Transfer Funds ', ''),
(31, 'blogs', '{\"en\": \"blogs\"}', 15, '2', '/blog', '', '1', 'External', 'blog', ''),
(32, 'blogs', '{\"en\": \"blogs\"}', 16, '2', '/blog', 'fab fa-500px', '1', 'Internal', 'blog', '');

-- --------------------------------------------------------

--
-- Table structure for table `news`
--

CREATE TABLE `news` (
  `id` int NOT NULL,
  `news_icon` varchar(225) NOT NULL,
  `news_title` varchar(225) NOT NULL,
  `news_title_lang` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin,
  `news_content` varchar(225) NOT NULL,
  `news_content_lang` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin,
  `news_date` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

-- --------------------------------------------------------

--
-- Table structure for table `notifications_popup`
--

CREATE TABLE `notifications_popup` (
  `id` int NOT NULL,
  `title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
  `type` text,
  `action_link` text,
  `isAllUser` enum('1','0') NOT NULL DEFAULT '0',
  `expiry_date` date NOT NULL,
  `status` enum('1','2','0') NOT NULL DEFAULT '1',
  `description` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin,
  `action_text` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

-- --------------------------------------------------------

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

CREATE TABLE `orders` (
  `order_id` int NOT NULL,
  `client_id` int NOT NULL,
  `service_id` int NOT NULL,
  `api_orderid` int NOT NULL DEFAULT '0',
  `order_error` text NOT NULL,
  `order_detail` text,
  `order_api` int NOT NULL DEFAULT '0',
  `api_serviceid` int NOT NULL DEFAULT '0',
  `api_charge` double NOT NULL DEFAULT '0',
  `api_currencycharge` double DEFAULT '1',
  `order_profit` double NOT NULL,
  `order_quantity` double NOT NULL,
  `order_extras` text NOT NULL,
  `order_charge` double NOT NULL,
  `dripfeed` enum('1','2','3') DEFAULT '1' COMMENT '2 -> ON, 1 -> OFF',
  `dripfeed_id` double NOT NULL DEFAULT '0',
  `subscriptions_id` double NOT NULL DEFAULT '0',
  `subscriptions_type` enum('1','2') NOT NULL DEFAULT '1' COMMENT '2 -> ON, 1 -> OFF',
  `dripfeed_totalcharges` double DEFAULT NULL,
  `dripfeed_runs` double DEFAULT NULL,
  `dripfeed_delivery` double NOT NULL DEFAULT '0',
  `dripfeed_interval` double DEFAULT NULL,
  `dripfeed_totalquantity` double DEFAULT NULL,
  `dripfeed_status` enum('active','completed','canceled') NOT NULL DEFAULT 'active',
  `order_url` text NOT NULL,
  `order_start` double NOT NULL DEFAULT '0',
  `order_finish` double NOT NULL DEFAULT '0',
  `order_remains` double NOT NULL DEFAULT '0',
  `order_create` datetime NOT NULL,
  `order_status` enum('pending','inprogress','completed','partial','processing','canceled') NOT NULL DEFAULT 'pending',
  `subscriptions_status` enum('active','paused','completed','canceled','expired','limit') NOT NULL DEFAULT 'active',
  `subscriptions_username` text,
  `subscriptions_posts` double DEFAULT NULL,
  `subscriptions_delivery` double NOT NULL DEFAULT '0',
  `subscriptions_delay` double DEFAULT NULL,
  `subscriptions_min` double DEFAULT NULL,
  `subscriptions_max` double DEFAULT NULL,
  `subscriptions_expiry` date DEFAULT NULL,
  `last_check` datetime NOT NULL,
  `order_where` enum('site','api') NOT NULL DEFAULT 'site',
  `refill_status` enum('Pending','Refilling','Completed','Rejected','Error') NOT NULL DEFAULT 'Pending',
  `is_refill` enum('1','2') NOT NULL DEFAULT '1',
  `refill` varchar(225) NOT NULL DEFAULT '1',
  `cancelbutton` enum('1','2') NOT NULL DEFAULT '1' COMMENT '1 -> ON, 2 -> OFF',
  `show_refill` enum('true','false') NOT NULL DEFAULT 'true',
  `api_refillid` double NOT NULL DEFAULT '0',
  `avg_done` enum('0','1') NOT NULL DEFAULT '1',
  `order_increase` int NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;

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

INSERT INTO `orders` (`order_id`, `client_id`, `service_id`, `api_orderid`, `order_error`, `order_detail`, `order_api`, `api_serviceid`, `api_charge`, `api_currencycharge`, `order_profit`, `order_quantity`, `order_extras`, `order_charge`, `dripfeed`, `dripfeed_id`, `subscriptions_id`, `subscriptions_type`, `dripfeed_totalcharges`, `dripfeed_runs`, `dripfeed_delivery`, `dripfeed_interval`, `dripfeed_totalquantity`, `dripfeed_status`, `order_url`, `order_start`, `order_finish`, `order_remains`, `order_create`, `order_status`, `subscriptions_status`, `subscriptions_username`, `subscriptions_posts`, `subscriptions_delivery`, `subscriptions_delay`, `subscriptions_min`, `subscriptions_max`, `subscriptions_expiry`, `last_check`, `order_where`, `refill_status`, `is_refill`, `refill`, `cancelbutton`, `show_refill`, `api_refillid`, `avg_done`, `order_increase`) VALUES
(1, 1, 93, 331157, '-', '{\"charge\":\"0.025375\",\"start_count\":\"0\",\"status\":\"Inprogress\",\"remains\":\"100\",\"currency\":\"INR\"}', 1, 101, 0.025375, NULL, 0.002543, 100, '', 0.027918, '1', 0, 0, '1', NULL, NULL, 0, NULL, NULL, 'active', 'https://www.instagram.com/reel/DFmiRiHTMzx', 10, 0, 100, '2025-02-03 13:33:39', 'completed', 'active', '', 0, 0, 0, 0, 0, '1970-01-01', '2025-02-03 13:53:16', 'site', 'Pending', '1', '1', '1', 'true', 0, '1', 0),
(2, 1, 82, 331158, '-', '{\"charge\":\"0.0247125\",\"start_count\":\"6\",\"status\":\"Inprogress\",\"remains\":\"10\",\"currency\":\"INR\"}', 1, 89, 0.0247125, NULL, 0.0024575, 10, '', 0.02717, '1', 0, 0, '1', NULL, NULL, 0, NULL, NULL, 'active', 'https://www.instagram.com/reel/DFRXgyfTdjS', 6, 0, 10, '2025-02-03 13:36:13', 'completed', 'active', '', 0, 0, 0, 0, 0, '1970-01-01', '2025-02-03 13:53:26', 'site', 'Pending', '1', '1', '1', 'true', 0, '1', 0);

-- --------------------------------------------------------

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

CREATE TABLE `pages` (
  `page_id` int NOT NULL,
  `page_name` varchar(225) NOT NULL,
  `page_get` varchar(225) NOT NULL,
  `page_content` text NOT NULL,
  `page_status` enum('1','2') NOT NULL DEFAULT '1',
  `active` enum('1','2') NOT NULL DEFAULT '1',
  `seo_title` varchar(225) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
  `seo_keywords` varchar(225) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
  `seo_description` varchar(225) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
  `last_modified` datetime NOT NULL,
  `del` varchar(255) NOT NULL DEFAULT '1',
  `page_content2` text NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;

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

INSERT INTO `pages` (`page_id`, `page_name`, `page_get`, `page_content`, `page_status`, `active`, `seo_title`, `seo_keywords`, `seo_description`, `last_modified`, `del`, `page_content2`) VALUES
(2, 'Add funds', 'addfunds', '', '1', '1', '', '', '', '2023-07-27 09:55:56', '2', ''),
(787, 'Login', 'auth', '', '1', '1', '', '', '', '2023-08-12 09:18:17', '2', ''),
(9, 'New Order', 'neworder', '', '1', '1', '', '', '', '2023-08-02 11:58:29', '2', ''),
(14, 'Terms', 'terms', '', '1', '1', '', '', '', '2022-02-07 08:41:16', '2', ''),
(789, 'Mass Order', 'massorder', '', '1', '1', '', '', '', '2022-02-07 08:43:06', '2', ''),
(790, 'Orders', 'orders', '', '1', '1', '', '', '', '2022-02-07 08:53:20', '2', ''),
(791, 'Services', 'services', '', '1', '1', '', '', '', '2022-01-26 07:22:09', '2', ''),
(792, 'Tickets', 'tickets', '', '1', '1', '', '', '', '2022-01-26 07:22:09', '2', ''),
(793, 'API', 'api', '', '1', '1', '', '', '', '2022-01-24 07:21:07', '2', ''),
(794, 'Signup', 'signup', '', '1', '1', '', '', '', '2022-01-24 07:21:07', '2', ''),
(795, 'Blog', 'blog', '', '1', '1', '', '', '', '2022-01-24 07:21:07', '2', ''),
(909, 'success', 'success', '', '1', '1', '', '', '', '0000-00-00 00:00:00', '1', '');

-- --------------------------------------------------------

--
-- Table structure for table `panel_categories`
--

CREATE TABLE `panel_categories` (
  `id` int NOT NULL,
  `name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci,
  `status` enum('0','1') NOT NULL DEFAULT '1' COMMENT '1 -> ENABLE, 0 -> DISABLE'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

-- --------------------------------------------------------

--
-- Table structure for table `panel_info`
--

CREATE TABLE `panel_info` (
  `panel_id` int NOT NULL,
  `panel_domain` text CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `panel_plan` text CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `panel_status` enum('Pending','Active','Frozen','Suspended') CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `panel_orders` int NOT NULL,
  `panel_thismonthorders` int NOT NULL,
  `date_created` datetime NOT NULL,
  `api_key` varchar(225) CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL,
  `renewal_date` datetime NOT NULL,
  `panel_type` enum('Child','Main') CHARACTER SET utf8mb3 COLLATE utf8mb3_unicode_ci NOT NULL DEFAULT 'Main'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;

--
-- Dumping data for table `panel_info`
--

INSERT INTO `panel_info` (`panel_id`, `panel_domain`, `panel_plan`, `panel_status`, `panel_orders`, `panel_thismonthorders`, `date_created`, `api_key`, `renewal_date`, `panel_type`) VALUES
(1, 'aapkasmmstore.space', 'A', 'Active', 0, 0, '2022-01-24 10:58:08', 'b1fbedd6f1266a8990bf648919068680', '2099-02-23 10:58:08', 'Main');

-- --------------------------------------------------------

--
-- Table structure for table `paymentmethods`
--

CREATE TABLE `paymentmethods` (
  `methodId` int NOT NULL,
  `methodName` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `methodLogo` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `methodVisibleName` varchar(300) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `methodCallback` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `methodMin` int NOT NULL DEFAULT '1',
  `methodMax` int NOT NULL DEFAULT '1',
  `methodFee` float NOT NULL DEFAULT '0',
  `methodBonusPercentage` float NOT NULL DEFAULT '0',
  `methodBonusStartAmount` int NOT NULL DEFAULT '0',
  `methodCurrency` varchar(3) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
  `methodStatus` enum('0','1') CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '0' COMMENT '0 -> off, 1 -> on',
  `methodExtras` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin,
  `methodPosition` int DEFAULT NULL,
  `methodInstructions` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `paymentmethods`
--

INSERT INTO `paymentmethods` (`methodId`, `methodName`, `methodLogo`, `methodVisibleName`, `methodCallback`, `methodMin`, `methodMax`, `methodFee`, `methodBonusPercentage`, `methodBonusStartAmount`, `methodCurrency`, `methodStatus`, `methodExtras`, `methodPosition`, `methodInstructions`) VALUES
(1, 'PayTM Checkout', 'https://i.postimg.cc/WzMm5g97/download.jpg', 'PayTM Checkout', 'payTMCheckout', 1, 100000, 0, 0, 0, 'INR', '0', '{\"merchantId\":\"\",\"merchantKey\":\"\"}', 3, ''),
(2, 'PayTM Merchant', 'https://i.postimg.cc/TPLxrggH/paytm-napdxw.png', 'PayTM / Phone PayQr', 'payTMMerchant', 1, 10000, 0, 0, 0, 'INR', '1', '{\"merchantId\":\"\"}', 2, ''),
(3, 'Perfect Money', 'https://i.postimg.cc/dVnkQ4kC/perfectmoney-wgszxi.png', 'Perfect Money', 'perfectMoney', 10, 1000, 3, 0, 0, 'USD', '0', '{\"accountNumber\":\"\",\"alternatePassPhrase\":\"\"}', 2, ''),
(4, 'Coinbase Commerce', 'https://i.postimg.cc/pXbns9Mm/coinbase-bcpppn.png', 'Coinbase Commerce', 'coinbaseCommerce', 1, 1000, 0, 0, 0, 'USD', '0', '{\"APIKey\":\"\"}', 4, NULL),
(5, 'Kashier', 'https://i.postimg.cc/6pS05WGn/download-4.png', 'Kashier', 'kashier', 1, 1000, 0, 0, 0, 'USD', '0', '{\"MID\":\"\",\"APIKey\":\"\",\"mode\":\"live\"}', 5, NULL),
(6, 'Razorpay', 'https://i.postimg.cc/W4T4Zrrv/download-5.png', 'Razorpay', 'razorPay', 1, 10000, 0, 0, 0, 'INR', '0', '{\"APIPublicKey\":\"\",\"APISecretKey\":\"\",\"gatewayThemeColour\":\"\"}', 6, NULL),
(7, 'PhonePe (Automatic)', 'https://i.postimg.cc/mD97r7GG/download-1.png', 'PhonePe (Automatic)', 'phonepe', 1, 10000, 0, 0, 0, 'INR', '0', '{\"email\":\"sarjeelgamerzone08@gmail.com\",\"password\":\"aobs rgkj vwip iehf\"}', 7, ''),
(8, 'Easypaisa (Automatic)', 'https://i.postimg.cc/SNGQhR31/download-6.png', 'Easypaisa (Automatic)', 'easypaisa', 1, 50000, 0, 0, 0, 'PKR', '0', '{\"email\":\"easypaisaautosmm@gmail.com\",\"password\":\"ismh zmev rllk tgdo\",\"senderEmail\":\"\",\"emailSubject\":\"easypaisa\"}', 8, ''),
(9, 'Jazzcash (Automatic)', 'https://i.postimg.cc/ZqQKMQ2T/download-7.png', 'Jazzcash (Automatic)', 'jazzcash', 1, 50000, 0, 0, 0, 'PKR', '0', '{\"email\":\"\",\"password\":\"\",\"senderEmail\":\"\",\"emailSubject\":\"jazzcash\"}', 9, NULL),
(10, 'Instamojo', 'https://i.postimg.cc/7hmRKFt9/images.png', 'Instamojo', 'instamojo', 1, 1000, 0, 0, 0, 'INR', '0', '{\"APIKey\":\"\",\"authToken\":\"\"}', 10, NULL),
(11, 'Cashmaal', 'https://i.postimg.cc/26q7Z3PC/download-1.jpg', 'Cashmaal', 'cashmaal', 1, 50000, 0, 0, 0, 'PKR', '0', '{\"webId\":\"\"}', 11, NULL),
(12, 'Alipay', 'https://i.postimg.cc/xd8KwcjL/download-8.png', 'Alipay', 'alipay', 1, 10000, 0, 0, 0, 'USD', '0', '{\"partnerId\":\"\",\"privateKey\":\"\"}', 12, NULL),
(13, 'PayU', 'https://i.postimg.cc/bJ21vWtJ/download-9.png', 'PayU', 'payU', 1, 10000, 0, 0, 0, 'INR', '0', '{\"merchantKey\":\"\",\"merchantSalt\":\"\"}', 13, NULL),
(14, 'Upiapi', 'https://i.postimg.cc/xCWhkwpF/download-11.png', 'UPI Api', 'upiapi', 1, 10000, 0, 0, 0, 'INR', '0', '{\"productionAPIToken\":\"\",\"productionAPISecretKey\":\"\"}', 3, ''),
(15, 'Opay Express Checkout', 'https://i.postimg.cc/NjfTX5HZ/download-3.png', 'Opay Express Checkout', 'opay', 1, 10000, 0, 0, 0, 'USD', '0', '{\"merchantId\":\"\",\"publicKey\":\"\",\"secretKey\":\"\"}', 3, ''),
(16, 'Flutterwave', 'https://i.postimg.cc/k5LtLspd/download-10.png', 'Flutterwave', 'flutterwave', 1, 1000, 0, 0, 0, 'USD', '0', '{\"secretKey\":\"\"}', 3, ''),
(17, 'Stripe', 'https://i.postimg.cc/j25KX4qp/download-2.png', 'Stripe', 'stripe', 1, 1000, 0, 0, 0, 'USD', '0', '{\"publishableKey\":\"\",\"secretKey\":\"\"}', 3, ''),
(18, 'Payeer', 'https://i.postimg.cc/q7LtRQNn/payeer-ygcgcj.png', 'Payeer', 'payeer', 1, 1000, 0, 0, 0, 'USD', '0', '{\"shopId\":\"\",\"secretKey\":\"\"}', 3, ''),
(100, 'Manual One', 'https://i.postimg.cc/15LhnN23/images-1.png', 'Manual One', NULL, 1, 1, 0, 0, 0, NULL, '0', NULL, 3, NULL),
(101, 'Manual Two', 'https://i.postimg.cc/15LhnN23/images-1.png', 'Manual Two', NULL, 1, 1, 0, 0, 0, NULL, '0', NULL, 3, NULL),
(102, 'Manual Three', 'https://i.postimg.cc/15LhnN23/images-1.png', 'Manual Three', NULL, 1, 1, 0, 0, 0, NULL, '0', NULL, 4, NULL),
(103, 'Manual Four', 'https://i.postimg.cc/15LhnN23/images-1.png', 'Manual Four', NULL, 1, 1, 0, 0, 0, NULL, '0', NULL, 3, '&lt;p&gt;&lt;strong style=&quot;color: rgb(230, 0, 0);&quot;&gt;Pay Via our what\'s alpp&lt;/strong&gt;&lt;/p&gt;'),
(104, 'Manual Five', 'https://i.postimg.cc/15LhnN23/images-1.png', 'Manual Five', NULL, 1, 1, 0, 0, 0, NULL, '0', NULL, 18, ''),
(105, 'Manual Six', 'https://i.postimg.cc/15LhnN23/images-1.png', 'Manual Six', NULL, 1, 1, 0, 0, 0, NULL, '0', NULL, 19, NULL),
(106, 'Manual Seven', 'https://i.postimg.cc/15LhnN23/images-1.png', 'Manual Seven', NULL, 1, 1, 0, 0, 0, NULL, '0', NULL, 20, NULL),
(107, 'Manual Eight', 'https://i.postimg.cc/15LhnN23/images-1.png', 'Manual Eight', NULL, 1, 1, 0, 0, 0, NULL, '0', NULL, 21, NULL),
(108, 'Manual Nine', 'https://i.postimg.cc/15LhnN23/images-1.png', 'Manual Nine', NULL, 1, 1, 0, 0, 0, NULL, '0', NULL, 22, NULL),
(109, 'Manual Ten', 'https://i.postimg.cc/15LhnN23/images-1.png', 'Manual Ten', NULL, 1, 1, 0, 0, 0, NULL, '0', NULL, 23, NULL);

-- --------------------------------------------------------

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

CREATE TABLE `payments` (
  `payment_id` int NOT NULL,
  `client_id` int NOT NULL,
  `client_balance` decimal(15,2) NOT NULL DEFAULT '0.00',
  `payment_amount` decimal(15,4) NOT NULL,
  `payment_privatecode` double DEFAULT NULL,
  `payment_method` int NOT NULL,
  `payment_status` enum('1','2','3') NOT NULL DEFAULT '1',
  `payment_delivery` enum('1','2') NOT NULL DEFAULT '1',
  `payment_note` varchar(255) NOT NULL DEFAULT 'No',
  `payment_mode` enum('Manual','Automatic') NOT NULL DEFAULT 'Automatic',
  `payment_create_date` datetime NOT NULL,
  `payment_update_date` datetime NOT NULL,
  `payment_ip` varchar(225) NOT NULL,
  `payment_extra` text NOT NULL,
  `payment_bank` int NOT NULL,
  `t_id` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

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

INSERT INTO `payments` (`payment_id`, `client_id`, `client_balance`, `payment_amount`, `payment_privatecode`, `payment_method`, `payment_status`, `payment_delivery`, `payment_note`, `payment_mode`, `payment_create_date`, `payment_update_date`, `payment_ip`, `payment_extra`, `payment_bank`, `t_id`) VALUES
(1, 1, 0.00, 1.0000, NULL, 21, '3', '2', 'No', 'Automatic', '2024-12-30 19:48:51', '0000-00-00 00:00:00', '2405:201:a408:f983:d1f:4e8:74c7:faa2', '138537842390', 0, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `referral`
--

CREATE TABLE `referral` (
  `referral_id` int NOT NULL,
  `referral_client_id` int NOT NULL,
  `referral_clicks` double NOT NULL DEFAULT '0',
  `referral_sign_up` double NOT NULL DEFAULT '0',
  `referral_totalFunds_byReffered` double NOT NULL DEFAULT '0',
  `referral_earned_commision` double DEFAULT '0',
  `referral_requested_commision` varchar(225) DEFAULT '0',
  `referral_total_commision` double DEFAULT '0',
  `referral_status` enum('1','2') NOT NULL DEFAULT '1',
  `referral_code` text NOT NULL,
  `referral_rejected_commision` double NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `referral`
--

INSERT INTO `referral` (`referral_id`, `referral_client_id`, `referral_clicks`, `referral_sign_up`, `referral_totalFunds_byReffered`, `referral_earned_commision`, `referral_requested_commision`, `referral_total_commision`, `referral_status`, `referral_code`, `referral_rejected_commision`) VALUES
(1, 1, 0, 0, 0, 0, '0', 0, '1', '4f549a', 0);

-- --------------------------------------------------------

--
-- Table structure for table `referral_payouts`
--

CREATE TABLE `referral_payouts` (
  `r_p_id` int NOT NULL,
  `r_p_code` text NOT NULL,
  `r_p_status` enum('1','2','3','4','0') NOT NULL DEFAULT '0',
  `r_p_amount_requested` double NOT NULL,
  `r_p_requested_at` datetime NOT NULL,
  `r_p_updated_at` datetime NOT NULL,
  `client_id` int NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

-- --------------------------------------------------------

--
-- Table structure for table `serviceapi_alert`
--

CREATE TABLE `serviceapi_alert` (
  `id` int NOT NULL,
  `service_id` int NOT NULL,
  `serviceapi_alert` text NOT NULL,
  `servicealert_extra` text NOT NULL,
  `servicealert_date` datetime NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;

-- --------------------------------------------------------

--
-- Table structure for table `services`
--

CREATE TABLE `services` (
  `service_id` int NOT NULL,
  `service_api` int NOT NULL DEFAULT '0',
  `api_service` int NOT NULL DEFAULT '0',
  `api_servicetype` enum('1','2') NOT NULL DEFAULT '2',
  `api_detail` text NOT NULL,
  `category_id` int NOT NULL,
  `service_line` double NOT NULL,
  `service_type` enum('1','2') NOT NULL DEFAULT '2',
  `service_package` enum('1','2','3','4','5','6','7','8','9','10','11','12','13','14','15','16','17') NOT NULL,
  `service_name` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
  `service_description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin,
  `service_price` varchar(225) NOT NULL,
  `service_min` double NOT NULL,
  `service_max` double NOT NULL,
  `service_dripfeed` enum('1','2') NOT NULL DEFAULT '1',
  `service_autotime` double NOT NULL DEFAULT '0',
  `service_autopost` double NOT NULL DEFAULT '0',
  `service_speed` enum('1','2','3','4') NOT NULL,
  `want_username` enum('1','2') NOT NULL DEFAULT '1',
  `service_secret` enum('1','2') NOT NULL DEFAULT '2',
  `price_type` enum('normal','percent','amount') NOT NULL DEFAULT 'normal',
  `price_cal` text,
  `instagram_second` enum('1','2') NOT NULL DEFAULT '2',
  `start_count` enum('none','instagram_follower','instagram_photo','') NOT NULL,
  `instagram_private` enum('1','2') NOT NULL,
  `name_lang` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin,
  `description_lang` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin,
  `time_lang` varchar(225) NOT NULL DEFAULT 'Not enough data',
  `time` varchar(225) NOT NULL DEFAULT 'Not enough data',
  `cancelbutton` enum('1','2') NOT NULL DEFAULT '2' COMMENT '1 -> ON, 2 -> OFF',
  `show_refill` enum('true','false') NOT NULL DEFAULT 'false',
  `service_profit` varchar(225) NOT NULL,
  `refill_days` varchar(225) NOT NULL DEFAULT '30',
  `refill_hours` varchar(225) NOT NULL DEFAULT '24',
  `avg_days` int NOT NULL,
  `avg_hours` int NOT NULL,
  `avg_minutes` int NOT NULL,
  `avg_many` int NOT NULL,
  `price_profit` int NOT NULL,
  `service_overflow` int NOT NULL DEFAULT '0',
  `service_sync` enum('0','1') NOT NULL DEFAULT '1',
  `service_deleted` enum('0','1') NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

--
-- Dumping data for table `services`
--

INSERT INTO `services` (`service_id`, `service_api`, `api_service`, `api_servicetype`, `api_detail`, `category_id`, `service_line`, `service_type`, `service_package`, `service_name`, `service_description`, `service_price`, `service_min`, `service_max`, `service_dripfeed`, `service_autotime`, `service_autopost`, `service_speed`, `want_username`, `service_secret`, `price_type`, `price_cal`, `instagram_second`, `start_count`, `instagram_private`, `name_lang`, `description_lang`, `time_lang`, `time`, `cancelbutton`, `show_refill`, `service_profit`, `refill_days`, `refill_hours`, `avg_days`, `avg_hours`, `avg_minutes`, `avg_many`, `price_profit`, `service_overflow`, `service_sync`, `service_deleted`) VALUES
(1, 1, 1, '2', '{\"min\":\"10\",\"max\":\"100000\",\"rate\":\"217.3100\",\"currency\":null}', 1, 1, '2', '1', 'Instagram Followers [USA 🇺🇸 - Real MIxed] [Less Drops] [No Refill] [20k+/Day] 🔥', '', '239.041', 10, 100000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Followers [USA \\ud83c\\uddfa\\ud83c\\uddf8 - Real MIxed] [Less Drops] [No Refill] [20k+\\/Day] \\ud83d\\udd25\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(2, 1, 2, '2', '{\"min\":\"10\",\"max\":\"100000\",\"rate\":\"249.5000\",\"currency\":null}', 1, 2, '2', '1', 'Instagram Followers [USA 🇺🇸 - Females 👩🏻] [Real Mixed] [Less Drops] [No Refill] [10k+/Day]', '', '274.45', 10, 100000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Followers [USA \\ud83c\\uddfa\\ud83c\\uddf8 - Females \\ud83d\\udc69\\ud83c\\udffb] [Real Mixed] [Less Drops] [No Refill] [10k+\\/Day]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(3, 1, 3, '2', '{\"min\":\"10\",\"max\":\"100000\",\"rate\":\"249.5000\",\"currency\":null}', 1, 3, '2', '1', 'Instagram Followers [USA 🇺🇸 - Male 👨] [Real Mixed] [Less Drops] [No Refill] [10k+/Day]', '', '274.45', 10, 100000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Followers [USA \\ud83c\\uddfa\\ud83c\\uddf8 - Male \\ud83d\\udc68] [Real Mixed] [Less Drops] [No Refill] [10k+\\/Day]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(4, 1, 4, '2', '{\"min\":\"10\",\"max\":\"1000000\",\"rate\":\"33.7500\",\"currency\":null}', 2, 4, '2', '1', 'Tiktok Followers [Real People] [R30 ♻] [Must Read Description Before Order ⚠]', '', '37.125', 10, 1000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Tiktok Followers [Real People] [R30 \\u267b] [Must Read Description Before Order \\u26a0]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'true', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(5, 1, 5, '2', '{\"min\":\"10\",\"max\":\"500000\",\"rate\":\"414.1300\",\"currency\":null}', 2, 5, '2', '1', 'Tiktok Followers [HQ - Dp Profiles] [No Refill] [10k-20k/day] [Start: 0-30 Mins]', '', '455.543', 10, 500000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Tiktok Followers [HQ - Dp Profiles] [No Refill] [10k-20k\\/day] [Start: 0-30 Mins]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(6, 1, 6, '2', '{\"min\":\"10\",\"max\":\"10000000\",\"rate\":\"204.3400\",\"currency\":null}', 2, 6, '2', '1', 'Tiktok Followers [HQ - Real] [R30 ♻] [20k-30k/Day] [Start: Instant] [Working] ⭐🔥', '', '224.774', 10, 10000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Tiktok Followers [HQ - Real] [R30 \\u267b] [20k-30k\\/Day] [Start: Instant] [Working] \\u2b50\\ud83d\\udd25\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(7, 1, 8, '2', '{\"min\":\"10\",\"max\":\"10000000\",\"rate\":\"17.7200\",\"currency\":null}', 2, 7, '2', '1', 'Tiktok Likes [Lifetime Refill ♻] [Non Drop] [50k+/day] [Superfast ⚡] [Start: Instant] ⭐', '', '19.492', 10, 10000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Tiktok Likes [Lifetime Refill \\u267b] [Non Drop] [50k+\\/day] [Superfast \\u26a1] [Start: Instant] \\u2b50\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(8, 1, 9, '2', '{\"min\":\"50\",\"max\":\"2147483647\",\"rate\":\"0.2338\",\"currency\":null}', 2, 8, '2', '1', 'Tiktok Views [Max - Unlimited] [Working] [Start Time: Instant] ᵁᴾᴰᴬᵀᴱᴰ⚡', '', '0.25718', 50, 2147483647, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Tiktok Views [Max - Unlimited] [Working] [Start Time: Instant] \\u1d41\\u1d3e\\u1d30\\u1d2c\\u1d40\\u1d31\\u1d30\\u26a1\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(9, 1, 10, '2', '{\"min\":\"100\",\"max\":\"2147483647\",\"rate\":\"18.9400\",\"currency\":null}', 2, 9, '2', '1', 'Tiktok PK BATTLE POİNTS [Max 1M] [10M/day] [Best]', '', '20.834', 100, 2147483647, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Tiktok PK BATTLE PO\\u0130NTS [Max 1M] [10M\\/day] [Best]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(10, 1, 11, '2', '{\"min\":\"10\",\"max\":\"1000000\",\"rate\":\"505.4500\",\"currency\":null}', 2, 10, '2', '1', 'Tiktok Followers [Max 1M] [LQ Profiles]  [1k/Day] [Start Time: Instant]', '', '555.995', 10, 1000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Tiktok Followers [Max 1M] [LQ Profiles]  [1k\\/Day] [Start Time: Instant]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(11, 1, 12, '2', '{\"min\":\"10\",\"max\":\"500000\",\"rate\":\"600.4400\",\"currency\":null}', 2, 11, '2', '1', 'Tiktok Followers [Max 500k] [HQ] [R30] [30k-50k/day] [Start: 0-5 Mins] ⭐⚡', '', '660.484', 10, 500000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Tiktok Followers [Max 500k] [HQ] [R30] [30k-50k\\/day] [Start: 0-5 Mins] \\u2b50\\u26a1\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(12, 1, 13, '2', '{\"min\":\"10\",\"max\":\"10000000\",\"rate\":\"504.4100\",\"currency\":null}', 2, 12, '2', '1', 'Tiktok Followers [HQ - Dp Profiles] [R30] [10k-20k/Day] [Start Time: 0-15 Mins]', '', '554.851', 10, 10000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Tiktok Followers [HQ - Dp Profiles] [R30] [10k-20k\\/Day] [Start Time: 0-15 Mins]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(13, 1, 14, '2', '{\"min\":\"100\",\"max\":\"500000\",\"rate\":\"292.4000\",\"currency\":null}', 2, 13, '2', '1', 'Tiktok Followers [HQ - Dp Profiles] [365 Days Refill ♻] [50k+/Day] [Start Time: 0-1 hr] ⭐⚡', '', '321.64', 100, 500000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Tiktok Followers [HQ - Dp Profiles] [365 Days Refill \\u267b] [50k+\\/Day] [Start Time: 0-1 hr] \\u2b50\\u26a1\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(14, 1, 15, '2', '{\"min\":\"500\",\"max\":\"100000\",\"rate\":\"87.5000\",\"currency\":null}', 3, 14, '2', '1', 'Facebook Page/Profile Followers [Max 100k] [R365] [Non Drop] [50k/day] ⚡', '', '96.25', 500, 100000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Facebook Page\\/Profile Followers [Max 100k] [R365] [Non Drop] [50k\\/day] \\u26a1\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(15, 1, 16, '2', '{\"min\":\"500\",\"max\":\"100000\",\"rate\":\"87.5000\",\"currency\":null}', 3, 15, '2', '1', 'Facebook Page Followers [Max 50k] [R365] [Non Drop] [20k-30k/day]', '', '96.25', 500, 100000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Facebook Page Followers [Max 50k] [R365] [Non Drop] [20k-30k\\/day]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(16, 1, 17, '2', '{\"min\":\"500\",\"max\":\"100000\",\"rate\":\"118.7500\",\"currency\":null}', 3, 16, '2', '1', 'Facebook Indian Profile Followers [R365] [Non Drop] [10k/day] 🇮🇳⭐', '', '130.625', 500, 100000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Facebook Indian Profile Followers [R365] [Non Drop] [10k\\/day] \\ud83c\\uddee\\ud83c\\uddf3\\u2b50\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(17, 1, 18, '2', '{\"min\":\"500\",\"max\":\"100000\",\"rate\":\"118.7500\",\"currency\":null}', 3, 17, '2', '1', 'Facebook Indian Page Followers [R365] [Non Drop] [10k/day] 🇮🇳⭐', '', '130.625', 500, 100000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Facebook Indian Page Followers [R365] [Non Drop] [10k\\/day] \\ud83c\\uddee\\ud83c\\uddf3\\u2b50\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(18, 1, 19, '2', '{\"min\":\"10\",\"max\":\"5000\",\"rate\":\"2,437.5000\",\"currency\":null}', 3, 18, '2', '3', 'Facebook Custom Comments [Indian 🇮🇳] [Max 5k] [1k-2k/day] [Start: 0-3 Hrs] 🆕', '', '2.2', 10, 5000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Facebook Custom Comments [Indian \\ud83c\\uddee\\ud83c\\uddf3] [Max 5k] [1k-2k\\/day] [Start: 0-3 Hrs] \\ud83c\\udd95\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(19, 1, 20, '2', '{\"min\":\"10\",\"max\":\"5000\",\"rate\":\"625.0000\",\"currency\":null}', 3, 19, '2', '1', 'Facebook Random Comments [Indian 🇮🇳] [Max 5k] [1k-2k/day] [Start: 0-3 Hrs] 🆕', '', '687.5', 10, 5000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Facebook Random Comments [Indian \\ud83c\\uddee\\ud83c\\uddf3] [Max 5k] [1k-2k\\/day] [Start: 0-3 Hrs] \\ud83c\\udd95\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(20, 1, 21, '2', '{\"min\":\"500\",\"max\":\"100000\",\"rate\":\"187.5000\",\"currency\":null}', 3, 20, '2', '1', '🇮🇳 Facebook Page/Profile Followers [Indian 🇮🇳] [Non Drop] [Lifetime Guarantee] [5k-10k/day] [Start: 24-48 hours]', '', '206.25', 500, 100000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"\\ud83c\\uddee\\ud83c\\uddf3 Facebook Page\\/Profile Followers [Indian \\ud83c\\uddee\\ud83c\\uddf3] [Non Drop] [Lifetime Guarantee] [5k-10k\\/day] [Start: 24-48 hours]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(21, 1, 22, '2', '{\"min\":\"5000\",\"max\":\"5000\",\"rate\":\"625.0000\",\"currency\":null}', 4, 21, '2', '1', 'Facebook Page Followers [Real - INDIAN] [From ADS] [Min/Max- 5k]', '', '687.5', 5000, 5000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Facebook Page Followers [Real - INDIAN] [From ADS] [Min\\/Max- 5k]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(22, 1, 23, '2', '{\"min\":\"10000\",\"max\":\"10000\",\"rate\":\"500.0000\",\"currency\":null}', 4, 22, '2', '1', 'Facebook Page Followers [Real - INDIAN] [From ADS] [Min/Max- 10k]', '', '550', 10000, 10000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Facebook Page Followers [Real - INDIAN] [From ADS] [Min\\/Max- 10k]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(23, 1, 24, '2', '{\"min\":\"10000\",\"max\":\"10000000\",\"rate\":\"668.6200\",\"currency\":null}', 5, 23, '2', '1', 'Youtube Social Views [USA 🇺🇸] [Min 10k] [R30] [Non Drop] [Speed: 100k/day]', '', '735.482', 10000, 10000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Youtube Social Views [USA \\ud83c\\uddfa\\ud83c\\uddf8] [Min 10k] [R30] [Non Drop] [Speed: 100k\\/day]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(24, 1, 25, '2', '{\"min\":\"1\",\"max\":\"1\",\"rate\":\"6,250.0000\",\"currency\":null}', 6, 24, '2', '2', 'Youtube Watch Hours + Subscribers [Min 4k] [Lifetime Guaranteed] [Non Drop] [Read Description ⚠]', 'Start: 24-48 Hrs\r\nSpeed: 1k-2k hrs/Day\r\nQuality: Real\r\nRefill: Lifetime Guaranteed\r\nComplete: 3-5 days\r\nLink: 5 Mins Video Link\r\n\r\nMust Provide Manager Access To Our Email:\r\naapkasmmstore@gmail.com \r\n\r\n--------------------------------------------------\r\n\r\nImportant Must Read Points -\r\n\r\n- You\'ll need to provide manager access to our email ID. We will upload one video to your channel, which will increase your channel\'s views, watch time, and some subscribers.\r\n\r\n- Channel will also get 600 - 1000 subscribers in this service.\r\n\r\n- Subscribers may drop up to 10% - 20% because they are real subscribers.\r\n\r\n- You can unlist/private your video after monetisation. Please don\'t delete the video because all your watch hr will be gone.\r\n\r\n- You must upload at least 25 - 30 videos new videos related to your channel before applying for monetization, it is to show YouTube that your channel is active.\r\n\r\n- We will only increase your watch time for our uploaded video, if you remove the video while your order is still in process, it will be marked as completed, and there won\'t be a refill or refund.', '6.6', 1, 1, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Youtube Watch Hours + Subscribers [Min 4k] [Lifetime Guaranteed] [Non Drop] [Read Description \\u26a0]\"}', '{\"en\":\"Start: 24-48 Hrs\\r\\nSpeed: 1k-2k hrs\\/Day\\r\\nQuality: Real\\r\\nRefill: Lifetime Guaranteed\\r\\nComplete: 3-5 days\\r\\nLink: 5 Mins Video Link\\r\\n\\r\\nMust Provide Manager Access To Our Email:\\r\\naapkasmmstore@gmail.com \\r\\n\\r\\n--------------------------------------------------\\r\\n\\r\\nImportant Must Read Points -\\r\\n\\r\\n- You\'ll need to provide manager access to our email ID. We will upload one video to your channel, which will increase your channel\'s views, watch time, and some subscribers.\\r\\n\\r\\n- Channel will also get 600 - 1000 subscribers in this service.\\r\\n\\r\\n- Subscribers may drop up to 10% - 20% because they are real subscribers.\\r\\n\\r\\n- You can unlist\\/private your video after monetisation. Please don\'t delete the video because all your watch hr will be gone.\\r\\n\\r\\n- You must upload at least 25 - 30 videos new videos related to your channel before applying for monetization, it is to show YouTube that your channel is active.\\r\\n\\r\\n- We will only increase your watch time for our uploaded video, if you remove the video while your order is still in process, it will be marked as completed, and there won\'t be a refill or refund.\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(25, 1, 26, '2', '{\"min\":\"5\",\"max\":\"100\",\"rate\":\"1,037.5000\",\"currency\":null}', 7, 25, '2', '1', 'Instagram Message [Indian🇮🇳] [100% Real And Active] [Random Message]', '', '1.1', 5, 100, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Message [Indian\\ud83c\\uddee\\ud83c\\uddf3] [100% Real And Active] [Random Message]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(26, 1, 27, '2', '{\"min\":\"5\",\"max\":\"100\",\"rate\":\"1,112.5000\",\"currency\":null}', 7, 26, '2', '3', 'Instagram Message [Indian🇮🇳] [100% Real And Active] [Custom Message]', '', '1.1', 5, 100, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Message [Indian\\ud83c\\uddee\\ud83c\\uddf3] [100% Real And Active] [Custom Message]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(27, 1, 28, '2', '{\"min\":\"5\",\"max\":\"100\",\"rate\":\"1,250.0000\",\"currency\":null}', 7, 27, '2', '1', '🇮🇳 Instagram Indian Female Message [100% Real And Active] [Random Message]', '', '1.1', 5, 100, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"\\ud83c\\uddee\\ud83c\\uddf3 Instagram Indian Female Message [100% Real And Active] [Random Message]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(28, 1, 29, '2', '{\"min\":\"5\",\"max\":\"100\",\"rate\":\"1,375.0000\",\"currency\":null}', 7, 28, '2', '3', '🇮🇳 Instagram Indian Female Message [100% Real And Active] [Custom Message]', '', '1.1', 5, 100, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"\\ud83c\\uddee\\ud83c\\uddf3 Instagram Indian Female Message [100% Real And Active] [Custom Message]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(29, 1, 30, '2', '{\"min\":\"10\",\"max\":\"20000\",\"rate\":\"92.1000\",\"currency\":null}', 8, 29, '2', '1', 'Youtube Likes [Indian🇮🇳] [Max 20k] [Lifetime Guaranteed] [Speed: 20k/day] [Start: 0-30 Mins]', '', '101.31', 10, 20000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Youtube Likes [Indian\\ud83c\\uddee\\ud83c\\uddf3] [Max 20k] [Lifetime Guaranteed] [Speed: 20k\\/day] [Start: 0-30 Mins]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(30, 1, 31, '2', '{\"min\":\"10\",\"max\":\"10000\",\"rate\":\"90.4600\",\"currency\":null}', 9, 30, '2', '1', 'Threads Likes [Max 5k] [No Refill] [5k/day] [0-30 Mins]', '', '99.506', 10, 10000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Threads Likes [Max 5k] [No Refill] [5k\\/day] [0-30 Mins]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(31, 1, 32, '2', '{\"min\":\"10\",\"max\":\"1000000\",\"rate\":\"239.0200\",\"currency\":null}', 9, 31, '2', '1', 'Threads Likes [Max 1M] [R365] [Real] [Non Drop] [50k/day] [0-5 Mins] ⚡', '', '262.922', 10, 1000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Threads Likes [Max 1M] [R365] [Real] [Non Drop] [50k\\/day] [0-5 Mins] \\u26a1\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(32, 1, 33, '2', '{\"min\":\"40\",\"max\":\"50000\",\"rate\":\"520.1700\",\"currency\":null}', 9, 32, '2', '1', 'Threads Likes [Max 50k] [Real] [R30] [0-15 Mins]', '', '572.187', 40, 50000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Threads Likes [Max 50k] [Real] [R30] [0-15 Mins]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(33, 1, 34, '2', '{\"min\":\"100\",\"max\":\"500000\",\"rate\":\"226.0900\",\"currency\":null}', 10, 33, '2', '1', 'Threads Followers [Max 10k] [No Refill] [5k-10k/day] [0-30 Mins]', '', '248.699', 100, 500000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Threads Followers [Max 10k] [No Refill] [5k-10k\\/day] [0-30 Mins]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(34, 1, 35, '2', '{\"min\":\"10\",\"max\":\"50000\",\"rate\":\"534.6200\",\"currency\":null}', 10, 34, '2', '1', 'Threads Followers [Max 50k] [Real] [R30] [0-15 Mins]', '', '588.082', 10, 50000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Threads Followers [Max 50k] [Real] [R30] [0-15 Mins]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(35, 1, 36, '2', '{\"min\":\"1000\",\"max\":\"1000001\",\"rate\":\"168.7500\",\"currency\":null}', 11, 35, '2', '1', 'Instagram Mentions [Custom List] [Max 1M] [10k-20k/day]', '', '185.625', 1000, 1000001, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Mentions [Custom List] [Max 1M] [10k-20k\\/day]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(36, 1, 37, '2', '{\"min\":\"1000\",\"max\":\"1000001\",\"rate\":\"168.7500\",\"currency\":null}', 11, 36, '2', '1', 'Instagram Mentions [User Followers] [Max 1M] [10k-20k/day]', '', '185.625', 1000, 1000001, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Mentions [User Followers] [Max 1M] [10k-20k\\/day]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(37, 1, 38, '2', '{\"min\":\"1000\",\"max\":\"1000001\",\"rate\":\"168.7500\",\"currency\":null}', 11, 37, '2', '1', 'Instagram Mentions [ Media Liker ] [Max 1M] [10k-20k/day]', '', '185.625', 1000, 1000001, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Mentions [ Media Liker ] [Max 1M] [10k-20k\\/day]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(38, 1, 39, '2', '{\"min\":\"10\",\"max\":\"1000000\",\"rate\":\"181.2500\",\"currency\":null}', 12, 38, '2', '1', 'Instagram Followers [Flag Must Off] [R365] [0-5% Drop] [100k/day] [Start: 0-5 Mins] ⭐🔥', '', '199.375', 10, 1000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Followers [Flag Must Off] [R365] [0-5% Drop] [100k\\/day] [Start: 0-5 Mins] \\u2b50\\ud83d\\udd25\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(39, 1, 40, '2', '{\"min\":\"10\",\"max\":\"1000000\",\"rate\":\"252.3000\",\"currency\":null}', 12, 39, '2', '1', 'Instagram Followers [R365] [Non Drop] [Old Accounts] [50k+/day] [Superfast] [⚠Flag Must Off]⭐', '', '277.53', 10, 1000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Followers [R365] [Non Drop] [Old Accounts] [50k+\\/day] [Superfast] [\\u26a0Flag Must Off]\\u2b50\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(40, 1, 42, '2', '{\"min\":\"50\",\"max\":\"1000000\",\"rate\":\"303.6200\",\"currency\":null}', 12, 40, '2', '1', 'Instagram Followers [Max 500k] [Old Accounts] [R365] [30k-50k/day] [Superfast] ⭐🔥', '', '333.982', 50, 1000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Followers [Max 500k] [Old Accounts] [R365] [30k-50k\\/day] [Superfast] \\u2b50\\ud83d\\udd25\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(41, 1, 43, '2', '{\"min\":\"50\",\"max\":\"1000000\",\"rate\":\"215.8800\",\"currency\":null}', 13, 41, '2', '1', 'Instagram Followers [Indian Mixed] [365 Days Refill] [Less Drop] [50k/day] [Start:0-30 Mins]', '', '237.468', 50, 1000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Followers [Indian Mixed] [365 Days Refill] [Less Drop] [50k\\/day] [Start:0-30 Mins]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(42, 1, 45, '2', '{\"min\":\"100\",\"max\":\"100000\",\"rate\":\"128.4900\",\"currency\":null}', 13, 42, '2', '1', 'Instagram Followers [Old Accounts] [No Refill] [50k/day] [Start: 0-5 Mins]', '', '141.339', 100, 100000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Followers [Old Accounts] [No Refill] [50k\\/day] [Start: 0-5 Mins]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(43, 1, 46, '2', '{\"min\":\"50\",\"max\":\"1000000\",\"rate\":\"303.6100\",\"currency\":null}', 13, 43, '2', '1', 'Instagram Followers [Max - 1M] [Old Accounts] [R365] [50k-100k/day] [Superfast]⚡⚡', '', '333.971', 50, 1000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Followers [Max - 1M] [Old Accounts] [R365] [50k-100k\\/day] [Superfast]\\u26a1\\u26a1\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(44, 1, 48, '2', '{\"min\":\"100\",\"max\":\"50000\",\"rate\":\"158.3700\",\"currency\":null}', 13, 44, '2', '1', 'Instagram Followers [Indian🇮🇳] [Real Mixed] [R365] [Less Drop] [1k-3k/day] [Start:0-30 Mins]', '', '174.207', 100, 50000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Followers [Indian\\ud83c\\uddee\\ud83c\\uddf3] [Real Mixed] [R365] [Less Drop] [1k-3k\\/day] [Start:0-30 Mins]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(45, 1, 49, '2', '{\"min\":\"50\",\"max\":\"10000000\",\"rate\":\"407.5600\",\"currency\":null}', 13, 45, '2', '1', 'Instagram Followers [Max 1M] [HQ] [R365] [0-10% Drop] [30k-50k/day]⚡', '', '448.316', 50, 10000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Followers [Max 1M] [HQ] [R365] [0-10% Drop] [30k-50k\\/day]\\u26a1\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(46, 1, 50, '2', '{\"min\":\"20\",\"max\":\"1000000\",\"rate\":\"363.9000\",\"currency\":null}', 14, 46, '2', '1', 'Instagram Followers [Max 1M] [15+ Posts/Old Accounts] [R365] [0-10% Drop] [50k/day] [Instant] ⭐⚡', '', '400.29', 20, 1000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Followers [Max 1M] [15+ Posts\\/Old Accounts] [R365] [0-10% Drop] [50k\\/day] [Instant] \\u2b50\\u26a1\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(47, 1, 51, '2', '{\"min\":\"10\",\"max\":\"1000000\",\"rate\":\"512.9600\",\"currency\":null}', 14, 47, '2', '1', 'Instagram Followers [Real Mixed] [Max 200k] [R365] [Less Drop] [5k-10k/day] [0-5 mins]', '', '564.256', 10, 1000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Followers [Real Mixed] [Max 200k] [R365] [Less Drop] [5k-10k\\/day] [0-5 mins]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(48, 1, 52, '2', '{\"min\":\"10\",\"max\":\"500000\",\"rate\":\"554.0900\",\"currency\":null}', 14, 48, '2', '1', 'Instagram Followers [Max - 1M] [R365] [0-5% Drop] [15k-20k/day] [0-15 Mins] ⭐⚡', '', '609.499', 10, 500000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Followers [Max - 1M] [R365] [0-5% Drop] [15k-20k\\/day] [0-15 Mins] \\u2b50\\u26a1\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(49, 1, 53, '2', '{\"min\":\"50\",\"max\":\"1000000\",\"rate\":\"554.3100\",\"currency\":null}', 14, 49, '2', '1', 'Instagram Followers [Max 1M] [R365] [Non Drop] [30k-50k/day] [Start: Instant]', '', '609.741', 50, 1000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Followers [Max 1M] [R365] [Non Drop] [30k-50k\\/day] [Start: Instant]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(50, 1, 54, '2', '{\"min\":\"100\",\"max\":\"500000\",\"rate\":\"615.9000\",\"currency\":null}', 14, 50, '2', '1', 'Instagram Followers [Max 1M] [R365] [0-5% Drop] [10k-30k/Day] [Start: 0-5 Mins] 🔥', '', '677.49', 100, 500000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Followers [Max 1M] [R365] [0-5% Drop] [10k-30k\\/Day] [Start: 0-5 Mins] \\ud83d\\udd25\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(51, 1, 55, '2', '{\"min\":\"10\",\"max\":\"1000000\",\"rate\":\"533.5700\",\"currency\":null}', 14, 51, '2', '1', 'Instagram Followers [Max 1M] [R365] [10k-20k/day] [0-1 hour] ♻', '', '586.927', 10, 1000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Followers [Max 1M] [R365] [10k-20k\\/day] [0-1 hour] \\u267b\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(52, 1, 56, '2', '{\"min\":\"10\",\"max\":\"5000000\",\"rate\":\"562.8100\",\"currency\":null}', 14, 52, '2', '1', 'Instagram Followers [Max: 1M] [R365] [10k/day] [Start: 0-30 Mins]⭐', '', '619.091', 10, 5000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Followers [Max: 1M] [R365] [10k\\/day] [Start: 0-30 Mins]\\u2b50\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(53, 1, 57, '2', '{\"min\":\"100\",\"max\":\"10000000\",\"rate\":\"568.8900\",\"currency\":null}', 14, 53, '2', '1', 'Instagram Followers [Max - 1M] [R365] [1k-3k/Day] [Start: 0-1 hour] [Slow]', '', '625.779', 100, 10000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Followers [Max - 1M] [R365] [1k-3k\\/Day] [Start: 0-1 hour] [Slow]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(54, 1, 58, '2', '{\"min\":\"10\",\"max\":\"1000000\",\"rate\":\"410.2400\",\"currency\":null}', 14, 54, '2', '1', 'Instagram Followers [R365] [Real Mixed] [0-15% Drop] [50k-80k/day] [Instant] ⚡⚡', '', '451.264', 10, 1000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Followers [R365] [Real Mixed] [0-15% Drop] [50k-80k\\/day] [Instant] \\u26a1\\u26a1\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(55, 1, 59, '2', '{\"min\":\"10\",\"max\":\"1000000\",\"rate\":\"526.4600\",\"currency\":null}', 15, 55, '2', '1', 'Instagram Followers [Max 500k] [Lifetime Guarantee] [Non Drop] [30k/Day]', '', '579.106', 10, 1000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Followers [Max 500k] [Lifetime Guarantee] [Non Drop] [30k\\/Day]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(56, 1, 60, '2', '{\"min\":\"50\",\"max\":\"500000000\",\"rate\":\"567.5200\",\"currency\":null}', 15, 56, '2', '1', 'Instagram Followers [Lifetime Guarantee] [0-5% Drop] [50k-100k/Day] ♻⚡', '', '624.272', 50, 500000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Followers [Lifetime Guarantee] [0-5% Drop] [50k-100k\\/Day] \\u267b\\u26a1\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(57, 1, 61, '2', '{\"min\":\"10\",\"max\":\"2000000\",\"rate\":\"568.6700\",\"currency\":null}', 15, 57, '2', '1', 'Instagram Followers [Max 2M] [Lifetime Refill] [Less Drop] [5k-10k/day] [0-5 Mins] ⚡', '', '625.537', 10, 2000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Followers [Max 2M] [Lifetime Refill] [Less Drop] [5k-10k\\/day] [0-5 Mins] \\u26a1\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(58, 1, 65, '2', '{\"min\":\"10\",\"max\":\"50000\",\"rate\":\"230.0900\",\"currency\":null}', 16, 58, '2', '1', 'Instagram Followers [Real & Engaging] [No Refill] [10k/Day]', '', '253.099', 10, 50000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Followers [Real & Engaging] [No Refill] [10k\\/Day]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(59, 1, 66, '2', '{\"min\":\"100\",\"max\":\"4000\",\"rate\":\"886.7200\",\"currency\":null}', 17, 59, '2', '1', 'Instagram Followers [30K] [R30] [ARAB ]', '', '975.392', 100, 4000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Followers [30K] [R30] [ARAB ]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(60, 1, 67, '2', '{\"min\":\"10\",\"max\":\"150000\",\"rate\":\"891.1400\",\"currency\":null}', 17, 60, '2', '1', 'Instagram Followers [Max - 500K] [IRAN] [R15] [10K/Day] Start 1-12H', '', '980.254', 10, 150000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Followers [Max - 500K] [IRAN] [R15] [10K\\/Day] Start 1-12H\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(61, 1, 68, '2', '{\"min\":\"10\",\"max\":\"5000\",\"rate\":\"788.9400\",\"currency\":null}', 17, 61, '2', '1', 'Instagram Followers [USA 🇺🇸 - Real and Active] [AR30] [1k/Day]', '', '867.834', 10, 5000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Followers [USA \\ud83c\\uddfa\\ud83c\\uddf8 - Real and Active] [AR30] [1k\\/Day]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(62, 1, 69, '2', '{\"min\":\"20\",\"max\":\"3000\",\"rate\":\"1,875.0000\",\"currency\":null}', 17, 62, '2', '1', 'Instagram Followers [Australia 🇦🇺] [Real] [No Refill] [Non Drop] [1k/day] [0-1 Hour]', '', '1.1', 20, 3000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Followers [Australia \\ud83c\\udde6\\ud83c\\uddfa] [Real] [No Refill] [Non Drop] [1k\\/day] [0-1 Hour]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(63, 1, 70, '2', '{\"min\":\"200\",\"max\":\"5000\",\"rate\":\"543.3700\",\"currency\":null}', 17, 63, '2', '1', '🇸🇦🇮🇷Instagram Followers [ARAB - IRAN MIX] [REAL] [2K/Day]', '', '597.707', 200, 5000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"\\ud83c\\uddf8\\ud83c\\udde6\\ud83c\\uddee\\ud83c\\uddf7Instagram Followers [ARAB - IRAN MIX] [REAL] [2K\\/Day]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(64, 1, 71, '2', '{\"min\":\"50\",\"max\":\"200000\",\"rate\":\"737.7500\",\"currency\":null}', 17, 64, '2', '1', '🇧🇷Instagram Followers [BRAZIL] [R30] [2K/Day]', '', '811.525', 50, 200000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"\\ud83c\\udde7\\ud83c\\uddf7Instagram Followers [BRAZIL] [R30] [2K\\/Day]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(65, 1, 72, '2', '{\"min\":\"50\",\"max\":\"200000\",\"rate\":\"1,106.6200\",\"currency\":null}', 17, 65, '2', '1', '🇧🇷Instagram Followers [FEMALE - BRAZIL] [R30] [1K/Day]', '', '1.1', 50, 200000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"\\ud83c\\udde7\\ud83c\\uddf7Instagram Followers [FEMALE - BRAZIL] [R30] [1K\\/Day]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(66, 1, 73, '2', '{\"min\":\"10\",\"max\":\"500000\",\"rate\":\"2.3100\",\"currency\":null}', 18, 66, '2', '1', 'Instagram Likes [Old Accounts] [R365] [Non-Drop] [Superfast] [Start: Instant] ♻⭐⚡', '', '2.541', 10, 500000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Likes [Old Accounts] [R365] [Non-Drop] [Superfast] [Start: Instant] \\u267b\\u2b50\\u26a1\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(67, 1, 74, '2', '{\"min\":\"10\",\"max\":\"500000\",\"rate\":\"4.5900\",\"currency\":null}', 18, 67, '2', '1', 'Instagram Likes [Old Accounts] [Good Quality] [R365] [Non Drop] [100k/Day] ⚡⚡', '', '5.049', 10, 500000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Likes [Old Accounts] [Good Quality] [R365] [Non Drop] [100k\\/Day] \\u26a1\\u26a1\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(68, 1, 75, '2', '{\"min\":\"10\",\"max\":\"150000\",\"rate\":\"5.2500\",\"currency\":null}', 18, 68, '2', '1', 'Instagram Likes [30 Days Refill] [Non Drop] [Post/Reel/IGTV] [0-15 Mins] ♻ 🔥', '', '5.775', 10, 150000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Likes [30 Days Refill] [Non Drop] [Post\\/Reel\\/IGTV] [0-15 Mins] \\u267b \\ud83d\\udd25\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(69, 1, 76, '2', '{\"min\":\"10\",\"max\":\"500000\",\"rate\":\"4.9900\",\"currency\":null}', 18, 69, '2', '1', 'Instagram Likes [Real Mixed] [Lifetime Guarantee] [Refill Button♻] [50k/day] [0-5 Mins]', '', '5.489', 10, 500000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Likes [Real Mixed] [Lifetime Guarantee] [Refill Button\\u267b] [50k\\/day] [0-5 Mins]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(70, 1, 77, '2', '{\"min\":\"50\",\"max\":\"200000\",\"rate\":\"3.9700\",\"currency\":null}', 18, 70, '2', '1', 'Instagram Likes [R365] [Non Drop] [50k-100k/Day] [Start: 0-10 Mins]', '', '4.367', 50, 200000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Likes [R365] [Non Drop] [50k-100k\\/Day] [Start: 0-10 Mins]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(71, 1, 78, '2', '{\"min\":\"10\",\"max\":\"2147483647\",\"rate\":\"2.3100\",\"currency\":null}', 18, 71, '2', '1', 'Instagram Likes [R365] [Non Drop] [100k/day] [Start: 0-5 Mins] 🔥', '', '2.541', 10, 2147483647, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Likes [R365] [Non Drop] [100k\\/day] [Start: 0-5 Mins] \\ud83d\\udd25\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(72, 1, 79, '2', '{\"min\":\"10\",\"max\":\"500000\",\"rate\":\"3.0200\",\"currency\":null}', 18, 72, '2', '1', 'Instagram Likes [R365] [Non Drop] [30k-50k/Day] [Start: 0-5 Mins]', '', '3.322', 10, 500000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Likes [R365] [Non Drop] [30k-50k\\/Day] [Start: 0-5 Mins]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(73, 1, 80, '2', '{\"min\":\"10\",\"max\":\"150000\",\"rate\":\"4.9900\",\"currency\":null}', 18, 73, '2', '1', 'Instagram Likes [R30] [10k-15k/day] [Start Time: 0-10 Mins] ♻', '', '5.489', 10, 150000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Likes [R30] [10k-15k\\/day] [Start Time: 0-10 Mins] \\u267b\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(74, 1, 81, '2', '{\"min\":\"10\",\"max\":\"100000\",\"rate\":\"3.8000\",\"currency\":null}', 18, 74, '2', '1', 'Instagram Likes [Mixed Quality] [R365] [Non Drop] [30k-50k/Day] [Start: 0-5 Mins]', '', '4.18', 10, 100000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Likes [Mixed Quality] [R365] [Non Drop] [30k-50k\\/Day] [Start: 0-5 Mins]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(75, 1, 82, '2', '{\"min\":\"10\",\"max\":\"1000000\",\"rate\":\"11.2900\",\"currency\":null}', 18, 75, '2', '1', 'Instagram Likes [Lifetime Guarantee] [Non Drop] [50k-80k/day] [0-5 Mins] 🔥', '', '12.419', 10, 1000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Likes [Lifetime Guarantee] [Non Drop] [50k-80k\\/day] [0-5 Mins] \\ud83d\\udd25\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(76, 1, 83, '2', '{\"min\":\"20\",\"max\":\"50000\",\"rate\":\"4.8900\",\"currency\":null}', 18, 76, '2', '1', 'Instagram Power Likes [Super High Quality] [Real] [R30] [Non Drop]', '', '5.379', 20, 50000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Power Likes [Super High Quality] [Real] [R30] [Non Drop]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(77, 1, 84, '2', '{\"min\":\"10\",\"max\":\"300000\",\"rate\":\"39.9600\",\"currency\":null}', 18, 77, '2', '1', 'Instagram Likes & Random (Imp + Reach) [Real Mixed] [R30] [Non Drop]', '', '43.956', 10, 300000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Likes & Random (Imp + Reach) [Real Mixed] [R30] [Non Drop]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(78, 1, 85, '2', '{\"min\":\"5\",\"max\":\"20000\",\"rate\":\"19.4800\",\"currency\":null}', 18, 78, '2', '1', 'Instagram Like + Imp + Reach [Real Mixed] [Non Drop] [R30]', '', '21.428', 5, 20000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Like + Imp + Reach [Real Mixed] [Non Drop] [R30]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(79, 1, 86, '2', '{\"min\":\"10\",\"max\":\"200000\",\"rate\":\"22.5000\",\"currency\":null}', 18, 79, '2', '1', 'Instagram Likes + Random [Imp + Reach] [Ranking] [R60]', '', '24.75', 10, 200000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Likes + Random [Imp + Reach] [Ranking] [R60]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(80, 1, 87, '2', '{\"min\":\"1\",\"max\":\"13\",\"rate\":\"118,750.0000\",\"currency\":null}', 18, 80, '2', '1', 'Instagram Likes [FROM VERIFIED ACCOUNTS] [ ₹70 Per 1 Like ]', '', '129.8', 1, 13, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Likes [FROM VERIFIED ACCOUNTS] [ \\u20b970 Per 1 Like ]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(81, 1, 88, '2', '{\"min\":\"10\",\"max\":\"1000000\",\"rate\":\"7.4900\",\"currency\":null}', 18, 81, '2', '1', 'Instagram Likes [HQ / Old Accounts] [R30] [Non Drop] [50k/day] [Start: Instant] ⭐⚡', '', '8.239', 10, 1000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Likes [HQ \\/ Old Accounts] [R30] [Non Drop] [50k\\/day] [Start: Instant] \\u2b50\\u26a1\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(82, 1, 89, '2', '{\"min\":\"10\",\"max\":\"100000\",\"rate\":\"2.4700\",\"currency\":null}', 19, 82, '2', '1', 'Instagram Likes [Max 300k] [No Refill] [10k-30k/hour] [Start:0-5 Mins] ⚡', '', '2.717', 10, 100000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Likes [Max 300k] [No Refill] [10k-30k\\/hour] [Start:0-5 Mins] \\u26a1\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(83, 1, 90, '2', '{\"min\":\"10\",\"max\":\"200000\",\"rate\":\"2.3400\",\"currency\":null}', 19, 83, '2', '1', 'Instagram Likes [Max - 50k] [No Refill] [5k-10k/hour] [Start Time: 0-5 Mins]', '', '2.574', 10, 200000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Likes [Max - 50k] [No Refill] [5k-10k\\/hour] [Start Time: 0-5 Mins]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(84, 1, 91, '2', '{\"min\":\"10\",\"max\":\"500000\",\"rate\":\"4.6400\",\"currency\":null}', 19, 84, '2', '1', 'Instagram Likes [Max - 500k] [No Refill] [Superfast] [50k-100k/hour] ⚡', '', '5.104', 10, 500000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Likes [Max - 500k] [No Refill] [Superfast] [50k-100k\\/hour] \\u26a1\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(85, 1, 93, '2', '{\"min\":\"10\",\"max\":\"2000000\",\"rate\":\"16.9300\",\"currency\":null}', 19, 85, '2', '1', 'Instagram Real likes [Real] [Max 20k] [No Refill] [Non Drop] [5k-20k/day] 🔥', '', '18.623', 10, 2000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Real likes [Real] [Max 20k] [No Refill] [Non Drop] [5k-20k\\/day] \\ud83d\\udd25\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(86, 1, 94, '2', '{\"min\":\"10\",\"max\":\"100000\",\"rate\":\"26.3000\",\"currency\":null}', 19, 86, '2', '1', 'Instagram Likes + Random [Imp + Reach] [Less Drop]', '', '28.93', 10, 100000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Likes + Random [Imp + Reach] [Less Drop]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(87, 1, 95, '2', '{\"min\":\"5\",\"max\":\"20000\",\"rate\":\"17.5300\",\"currency\":null}', 19, 87, '2', '1', 'Instagram Like + Imp + Reach [Real Mixed] [Less Drop]', '', '19.283', 5, 20000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Like + Imp + Reach [Real Mixed] [Less Drop]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(88, 1, 96, '2', '{\"min\":\"10\",\"max\":\"3500\",\"rate\":\"55.1800\",\"currency\":null}', 20, 88, '2', '1', 'Instagram Likes - [ Max - 3k ] [ Mostly Indian ] INSTANT', '', '60.698', 10, 3500, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Likes - [ Max - 3k ] [ Mostly Indian ] INSTANT\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(89, 1, 97, '2', '{\"min\":\"20\",\"max\":\"3000\",\"rate\":\"476.6900\",\"currency\":null}', 20, 89, '2', '1', 'Instagram Likes - [ ARAB ] [ REAL Likes ] [No Refill] INSTANT', '', '524.359', 20, 3000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Likes - [ ARAB ] [ REAL Likes ] [No Refill] INSTANT\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(90, 1, 98, '2', '{\"min\":\"50\",\"max\":\"250000\",\"rate\":\"136.6200\",\"currency\":null}', 21, 90, '2', '1', 'Instagram Power Likes - [High Quality] [ Max - 50k ] [ BEST SERVICE ] INSTANT', '', '150.282', 50, 250000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Power Likes - [High Quality] [ Max - 50k ] [ BEST SERVICE ] INSTANT\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(91, 1, 99, '2', '{\"min\":\"50\",\"max\":\"5000\",\"rate\":\"153.7000\",\"currency\":null}', 21, 91, '2', '1', 'Instagram Power Likes - [ Max - 5k ] [ SUPER HIGH QUALITY ] INSTANT', '', '169.07', 50, 5000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Power Likes - [ Max - 5k ] [ SUPER HIGH QUALITY ] INSTANT\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(92, 1, 100, '2', '{\"min\":\"20\",\"max\":\"250000\",\"rate\":\"119.5400\",\"currency\":null}', 21, 92, '2', '1', 'Instagram Power Likes - [ Max - 50k ] [ Real High Quality Likes ] INSTANT', '', '131.494', 20, 250000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Power Likes - [ Max - 50k ] [ Real High Quality Likes ] INSTANT\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(93, 1, 101, '2', '{\"min\":\"100\",\"max\":\"2147483647\",\"rate\":\"0.2538\",\"currency\":null}', 22, 93, '2', '1', 'Instagram Reels Views [Start Time: 0-5 Mins] 𝗖𝗵𝗲𝗮𝗽𝗲𝘀𝘁', '', '0.27918', 100, 2147483647, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Reels Views [Start Time: 0-5 Mins] \\ud835\\uddd6\\ud835\\uddf5\\ud835\\uddf2\\ud835\\uddee\\ud835\\uddfd\\ud835\\uddf2\\ud835\\ude00\\ud835\\ude01\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(94, 1, 102, '2', '{\"min\":\"100\",\"max\":\"2147483647\",\"rate\":\"0.5513\",\"currency\":null}', 22, 94, '2', '1', 'Instagram Video + Reels Views [Start Time: Instant] [Superfast] ⭐⚡', '', '0.60643', 100, 2147483647, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Video + Reels Views [Start Time: Instant] [Superfast] \\u2b50\\u26a1\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(95, 1, 103, '2', '{\"min\":\"100\",\"max\":\"2147483647\",\"rate\":\"0.715\",\"currency\":null}', 22, 95, '2', '1', 'Instagram Video + Reels Views [Superfast] [Start Time: Instant] ⚡', '', '0.7865', 100, 2147483647, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Video + Reels Views [Superfast] [Start Time: Instant] \\u26a1\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0');
INSERT INTO `services` (`service_id`, `service_api`, `api_service`, `api_servicetype`, `api_detail`, `category_id`, `service_line`, `service_type`, `service_package`, `service_name`, `service_description`, `service_price`, `service_min`, `service_max`, `service_dripfeed`, `service_autotime`, `service_autopost`, `service_speed`, `want_username`, `service_secret`, `price_type`, `price_cal`, `instagram_second`, `start_count`, `instagram_private`, `name_lang`, `description_lang`, `time_lang`, `time`, `cancelbutton`, `show_refill`, `service_profit`, `refill_days`, `refill_hours`, `avg_days`, `avg_hours`, `avg_minutes`, `avg_many`, `price_profit`, `service_overflow`, `service_sync`, `service_deleted`) VALUES
(96, 1, 104, '2', '{\"min\":\"100\",\"max\":\"2147483647\",\"rate\":\"1.6400\",\"currency\":null}', 22, 96, '2', '1', 'Instagram Video + Reels + TV Views [Fast] [Start Time: Instant] 🔥⚡', '', '1.804', 100, 2147483647, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Video + Reels + TV Views [Fast] [Start Time: Instant] \\ud83d\\udd25\\u26a1\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(97, 1, 105, '2', '{\"min\":\"100\",\"max\":\"2147483647\",\"rate\":\"10.0100\",\"currency\":null}', 22, 97, '2', '1', 'Instagram Video + Reels + TV Views [Ultrafast] [Start: Instant] ⚡⚡', '', '11.011', 100, 2147483647, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Video + Reels + TV Views [Ultrafast] [Start: Instant] \\u26a1\\u26a1\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(98, 1, 106, '2', '{\"min\":\"100\",\"max\":\"2147483647\",\"rate\":\"0.5575\",\"currency\":null}', 22, 98, '2', '1', 'Instagram Video + Reels + TV Views [Start Time: SuperInstant] [Fastest] [Working] ⭐⚡', '', '0.61325', 100, 2147483647, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Video + Reels + TV Views [Start Time: SuperInstant] [Fastest] [Working] \\u2b50\\u26a1\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(99, 1, 107, '2', '{\"min\":\"100\",\"max\":\"2147483647\",\"rate\":\"3.7200\",\"currency\":null}', 22, 99, '2', '1', 'Instagram Video/Reels Views [Superfast] [Start Time: Instant] ⚡⚡', '', '4.092', 100, 2147483647, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Video\\/Reels Views [Superfast] [Start Time: Instant] \\u26a1\\u26a1\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(100, 1, 108, '2', '{\"min\":\"100\",\"max\":\"2147483647\",\"rate\":\"26.4700\",\"currency\":null}', 22, 100, '2', '1', 'Instagram Video + Reels Views [Fast] [Working In Updates] ⭐⚡', '', '29.117', 100, 2147483647, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Video + Reels Views [Fast] [Working In Updates] \\u2b50\\u26a1\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(101, 1, 109, '2', '{\"min\":\"100\",\"max\":\"2147483647\",\"rate\":\"0.6625\",\"currency\":null}', 23, 101, '2', '1', 'Instagram Reels Views [Superfast] [Start Time:Instant] ⚡', '', '0.72875', 100, 2147483647, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Reels Views [Superfast] [Start Time:Instant] \\u26a1\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(102, 1, 110, '2', '{\"min\":\"100\",\"max\":\"2147483647\",\"rate\":\"1.2400\",\"currency\":null}', 23, 102, '2', '1', 'Instagram Reels Views [Start Time: Instant] [Superfast] ⚡⚡', '', '1.364', 100, 2147483647, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Reels Views [Start Time: Instant] [Superfast] \\u26a1\\u26a1\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(103, 1, 111, '2', '{\"min\":\"100\",\"max\":\"2147483647\",\"rate\":\"9.2600\",\"currency\":null}', 23, 103, '2', '1', 'Instagram Reels Views [Start Time: Instant] [Superfast]⭐', '', '10.186', 100, 2147483647, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Reels Views [Start Time: Instant] [Superfast]\\u2b50\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(104, 1, 112, '2', '{\"min\":\"50\",\"max\":\"100000\",\"rate\":\"12.4900\",\"currency\":null}', 23, 104, '2', '1', 'Instagram Reels Likes [ Max - 100k ] [R30] [ NON DROP ]', '', '13.739', 50, 100000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Reels Likes [ Max - 100k ] [R30] [ NON DROP ]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(105, 1, 113, '2', '{\"min\":\"10\",\"max\":\"200000\",\"rate\":\"12.4900\",\"currency\":null}', 23, 105, '2', '1', 'Instagram Reels Likes [ High Quality ] Start 0-1 hr', '', '13.739', 10, 200000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Reels Likes [ High Quality ] Start 0-1 hr\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(106, 1, 114, '2', '{\"min\":\"100\",\"max\":\"100000\",\"rate\":\"7.4400\",\"currency\":null}', 23, 106, '2', '1', 'Instagram Reel Shares [Max 1M] [Non Drop] [Superfast] [Start Time: Instant]', '', '8.184', 100, 100000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Reel Shares [Max 1M] [Non Drop] [Superfast] [Start Time: Instant]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(107, 1, 115, '2', '{\"min\":\"10\",\"max\":\"20000\",\"rate\":\"10.4400\",\"currency\":null}', 24, 107, '2', '1', 'Instagram Story Views [All Story] [Working]', '', '11.484', 10, 20000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Story Views [All Story] [Working]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(108, 1, 116, '2', '{\"min\":\"10\",\"max\":\"100000\",\"rate\":\"16.0600\",\"currency\":null}', 24, 108, '2', '1', 'Instagram Story Views [All Story] [Max 50k] [Start Time: Instant] [Username Only]', '', '17.666', 10, 100000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Story Views [All Story] [Max 50k] [Start Time: Instant] [Username Only]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(109, 1, 117, '2', '{\"min\":\"500\",\"max\":\"1000000000\",\"rate\":\"1,313.6600\",\"currency\":null}', 24, 109, '2', '1', 'Instagram Automatic Story Views [Every Story For 30 Days] [WW] [Start: Instant]🆕', '', '1.1', 500, 1000000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Automatic Story Views [Every Story For 30 Days] [WW] [Start: Instant]\\ud83c\\udd95\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(110, 1, 118, '2', '{\"min\":\"10\",\"max\":\"200000\",\"rate\":\"196.8900\",\"currency\":null}', 24, 110, '2', '1', 'Instagram Story Poll Votes [10k-50k/day] [0-5 Mins] [Read Description]🔥⚡', '', '216.579', 10, 200000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Story Poll Votes [10k-50k\\/day] [0-5 Mins] [Read Description]\\ud83d\\udd25\\u26a1\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(111, 1, 119, '2', '{\"min\":\"5\",\"max\":\"10000\",\"rate\":\"697.9700\",\"currency\":null}', 25, 111, '2', '3', 'Instagram Comments [Real Mixed] [HQ] [Custom] [1k-5k/day] [0-30 Mins] ⭐', '', '767.767', 5, 10000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Comments [Real Mixed] [HQ] [Custom] [1k-5k\\/day] [0-30 Mins] \\u2b50\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(112, 1, 120, '2', '{\"min\":\"1\",\"max\":\"1000\",\"rate\":\"1,804.2800\",\"currency\":null}', 25, 112, '2', '3', 'Instagram Comments [Custom] [Real Mixed] [Non Drop] [1k/day] [Start: 0-30 Mins]', '', '1.1', 1, 1000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Comments [Custom] [Real Mixed] [Non Drop] [1k\\/day] [Start: 0-30 Mins]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(113, 1, 121, '2', '{\"min\":\"5\",\"max\":\"5000\",\"rate\":\"528.0000\",\"currency\":null}', 25, 113, '2', '3', 'Instagram Comments [Indian Mixed] [Custom] [1k-2k/Day]', '', '580.8', 5, 5000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Comments [Indian Mixed] [Custom] [1k-2k\\/Day]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(114, 1, 122, '2', '{\"min\":\"5\",\"max\":\"100000\",\"rate\":\"697.9700\",\"currency\":null}', 26, 114, '2', '1', 'Instagram Comments [Random] [Real Mixed] [Non Drop] [1k-3k/day] [Start: 0-30 Mins]', '', '767.767', 5, 100000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Comments [Random] [Real Mixed] [Non Drop] [1k-3k\\/day] [Start: 0-30 Mins]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(115, 1, 123, '2', '{\"min\":\"5\",\"max\":\"5000\",\"rate\":\"528.0000\",\"currency\":null}', 26, 115, '2', '1', 'Instagram Comments [Indian Mixed] [Random] [1k-2k/Day]', '', '580.8', 5, 5000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Comments [Indian Mixed] [Random] [1k-2k\\/Day]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(116, 1, 124, '2', '{\"min\":\"1000\",\"max\":\"1000\",\"rate\":\"125,000.0000\",\"currency\":null}', 26, 116, '2', '1', '---------------------------------', '', '137.5', 1000, 1000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"---------------------------------\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(117, 1, 125, '2', '{\"min\":\"1000\",\"max\":\"1000\",\"rate\":\"83.0000\",\"currency\":null}', 26, 117, '2', '1', 'Instagram Comments [Random 3 Comments from 30K+ Followers accounts] [Read Description]', '', '91.3', 1000, 1000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Comments [Random 3 Comments from 30K+ Followers accounts] [Read Description]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(118, 1, 126, '2', '{\"min\":\"1000\",\"max\":\"1000\",\"rate\":\"119.8800\",\"currency\":null}', 26, 118, '2', '1', 'Instagram Comments [Random 6 Comments from 30K+ Followers accounts] [Read Description]', '', '131.868', 1000, 1000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Comments [Random 6 Comments from 30K+ Followers accounts] [Read Description]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(119, 1, 127, '2', '{\"min\":\"1000\",\"max\":\"1000\",\"rate\":\"110.6600\",\"currency\":null}', 26, 119, '2', '1', 'Instagram Comments [Random 3 Comments from 100K+ Followers accounts] [Read Description]', '', '121.726', 1000, 1000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Comments [Random 3 Comments from 100K+ Followers accounts] [Read Description]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(120, 1, 128, '2', '{\"min\":\"1000\",\"max\":\"1000\",\"rate\":\"165.9900\",\"currency\":null}', 26, 120, '2', '1', 'Instagram Comments [Random 6 Comments from 100K+ Followers accounts] [Read Description]', '', '182.589', 1000, 1000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Comments [Random 6 Comments from 100K+ Followers accounts] [Read Description]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(121, 1, 129, '2', '{\"min\":\"1\",\"max\":\"12\",\"rate\":\"150,000.0000\",\"currency\":null}', 26, 121, '2', '1', 'Instagram Comments [Random Comments From Verified Accounts☑] [₹80 Per 1 Comment]', '', '165', 1, 12, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Comments [Random Comments From Verified Accounts\\u2611] [\\u20b980 Per 1 Comment]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(122, 1, 130, '2', '{\"min\":\"1000\",\"max\":\"1000\",\"rate\":\"125,000.0000\",\"currency\":null}', 26, 122, '2', '3', '---------------------------------', '', '137.5', 1000, 1000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"---------------------------------\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(123, 1, 131, '2', '{\"min\":\"1\",\"max\":\"1\",\"rate\":\"140.0200\",\"currency\":null}', 27, 123, '2', '2', 'Instagram Verified Comment [From 7 Million+ Follower Profile] 🔥', '', '154.022', 1, 1, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Verified Comment [From 7 Million+ Follower Profile] \\ud83d\\udd25\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(124, 1, 132, '2', '{\"min\":\"1000\",\"max\":\"1000\",\"rate\":\"29.7500\",\"currency\":null}', 27, 124, '2', '1', 'Instagram Random Comments [5 Comments From 10k-50k+ Followers Accounts] [Complete Time: 1-12 Hrs]', '', '32.725', 1000, 1000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Random Comments [5 Comments From 10k-50k+ Followers Accounts] [Complete Time: 1-12 Hrs]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(125, 1, 133, '2', '{\"min\":\"1000\",\"max\":\"1000\",\"rate\":\"19.8400\",\"currency\":null}', 27, 125, '2', '1', 'Instagram Random Comments [5 Comments From 30k-200k+ Followers Accounts] [Complete Time: 1-12 Hrs]', '', '21.824', 1000, 1000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Random Comments [5 Comments From 30k-200k+ Followers Accounts] [Complete Time: 1-12 Hrs]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(126, 1, 134, '2', '{\"min\":\"1000\",\"max\":\"1000\",\"rate\":\"85.0000\",\"currency\":null}', 27, 126, '2', '1', 'Instagram Random Comments [5 Comments From 200k-500k+ Followers Accounts] [Complete Time: 1-12 Hrs]', '', '93.5', 1000, 1000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Random Comments [5 Comments From 200k-500k+ Followers Accounts] [Complete Time: 1-12 Hrs]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(127, 1, 135, '2', '{\"min\":\"1000\",\"max\":\"1000\",\"rate\":\"320.1800\",\"currency\":null}', 27, 127, '2', '1', 'Instagram Random Comments [5 Comments From 500k-1M+ Followers Accounts] [Complete Time: 1-12 Hrs]', '', '352.198', 1000, 1000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Random Comments [5 Comments From 500k-1M+ Followers Accounts] [Complete Time: 1-12 Hrs]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(128, 1, 136, '2', '{\"min\":\"1000\",\"max\":\"1000\",\"rate\":\"442.0200\",\"currency\":null}', 27, 128, '2', '1', 'Instagram Random Comments [5 Comments From 1 Million+ Followers Accounts] [Complete Time: 1-12 Hrs]', '', '486.222', 1000, 1000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Random Comments [5 Comments From 1 Million+ Followers Accounts] [Complete Time: 1-12 Hrs]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(129, 1, 137, '2', '{\"min\":\"1000\",\"max\":\"1000\",\"rate\":\"470.3500\",\"currency\":null}', 27, 129, '2', '1', 'Instagram Random Comments [3 Comments From 2M-6M+ Followers Accounts] [Complete Time: 1-12 Hrs]', '', '517.385', 1000, 1000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Random Comments [3 Comments From 2M-6M+ Followers Accounts] [Complete Time: 1-12 Hrs]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(130, 1, 138, '2', '{\"min\":\"1000\",\"max\":\"1000\",\"rate\":\"212.5100\",\"currency\":null}', 27, 130, '2', '1', 'Instagram Power Comments [10K+ Followers] [WW 🌎] [Random 5 Comments] [EXPLORE PAGE] [Max: 5] [Start Time: 0-1 Hour]', '', '233.761', 1000, 1000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Power Comments [10K+ Followers] [WW \\ud83c\\udf0e] [Random 5 Comments] [EXPLORE PAGE] [Max: 5] [Start Time: 0-1 Hour]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(131, 1, 139, '2', '{\"min\":\"1000\",\"max\":\"1000\",\"rate\":\"354.1800\",\"currency\":null}', 27, 131, '2', '1', 'Instagram Power Comments [10K+ Followers] [WW 🌎] [Random 10 Comments] [EXPLORE PAGE] [Max: 10] [Start Time: 0-1 Hour] [Speed: 1 Hour Delivery]', '', '389.598', 1000, 1000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Power Comments [10K+ Followers] [WW \\ud83c\\udf0e] [Random 10 Comments] [EXPLORE PAGE] [Max: 10] [Start Time: 0-1 Hour] [Speed: 1 Hour Delivery]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(132, 1, 140, '2', '{\"min\":\"1000\",\"max\":\"1000\",\"rate\":\"566.6900\",\"currency\":null}', 27, 132, '2', '1', 'Instagram Power Comments [10K+ Followers] [WW 🌎] [Random 20 Comments] [EXPLORE PAGE] [Max: 20] [Start Time: 0-1 Hour] [Speed: 1 Hour Delivery]', '', '623.359', 1000, 1000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Power Comments [10K+ Followers] [WW \\ud83c\\udf0e] [Random 20 Comments] [EXPLORE PAGE] [Max: 20] [Start Time: 0-1 Hour] [Speed: 1 Hour Delivery]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(133, 1, 141, '2', '{\"min\":\"1000\",\"max\":\"1000\",\"rate\":\"708.3600\",\"currency\":null}', 27, 133, '2', '1', 'Instagram Power Comments [10K+ Followers] [WW 🌎] [Random 40 Comments] [EXPLORE PAGE] [Max: 40] [Start Time: 0-1 Hour] [Speed: 1 Hour Delivery]', '', '779.196', 1000, 1000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Power Comments [10K+ Followers] [WW \\ud83c\\udf0e] [Random 40 Comments] [EXPLORE PAGE] [Max: 40] [Start Time: 0-1 Hour] [Speed: 1 Hour Delivery]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(134, 1, 142, '2', '{\"min\":\"1000\",\"max\":\"1000\",\"rate\":\"850.0300\",\"currency\":null}', 27, 134, '2', '1', 'Instagram Power Comments [10K+ Followers] [WW 🌎] [Random 80 Comments] [EXPLORE PAGE] [Max: 80] [Start Time: 0-1 Hour] [Speed: 1 Hour Delivery]', '', '935.033', 1000, 1000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Power Comments [10K+ Followers] [WW \\ud83c\\udf0e] [Random 80 Comments] [EXPLORE PAGE] [Max: 80] [Start Time: 0-1 Hour] [Speed: 1 Hour Delivery]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(135, 1, 143, '2', '{\"min\":\"1000\",\"max\":\"1000\",\"rate\":\"1,062.5400\",\"currency\":null}', 27, 135, '2', '1', 'Instagram Power Comments [10K+ Followers] [WW 🌎] [Random 100 Comments] [EXPLORE PAGE] [Max: 100] [Start Time: 0-1 Hour] [Speed: 1 Hour Delivery]', '', '1.1', 1000, 1000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Power Comments [10K+ Followers] [WW \\ud83c\\udf0e] [Random 100 Comments] [EXPLORE PAGE] [Max: 100] [Start Time: 0-1 Hour] [Speed: 1 Hour Delivery]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(136, 1, 144, '2', '{\"min\":\"1000\",\"max\":\"1000\",\"rate\":\"1,416.7200\",\"currency\":null}', 27, 136, '2', '1', 'Instagram Power Comments [10K+ Followers] [WW 🌎] [Random 200 Comments] [EXPLORE PAGE] [Max: 200] [Start Time: 0-1 Hour] [Speed: 1 Hour Delivery]', '', '1.1', 1000, 1000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Power Comments [10K+ Followers] [WW \\ud83c\\udf0e] [Random 200 Comments] [EXPLORE PAGE] [Max: 200] [Start Time: 0-1 Hour] [Speed: 1 Hour Delivery]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(137, 1, 145, '2', '{\"min\":\"20\",\"max\":\"20000\",\"rate\":\"369.1900\",\"currency\":null}', 28, 137, '2', '1', 'Instagram Comment Likes [Max 5k] [100% Real Profiles] [Start Time: 0-5 Mins] ⚡', '', '406.109', 20, 20000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Comment Likes [Max 5k] [100% Real Profiles] [Start Time: 0-5 Mins] \\u26a1\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(138, 1, 146, '2', '{\"min\":\"20\",\"max\":\"50000\",\"rate\":\"306.2500\",\"currency\":null}', 28, 138, '2', '1', 'Instagram Comment Likes [Max 50k] [HQ] [Start Time: 0-1 hr] 🔥🆕', '', '336.875', 20, 50000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Comment Likes [Max 50k] [HQ] [Start Time: 0-1 hr] \\ud83d\\udd25\\ud83c\\udd95\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(139, 1, 147, '2', '{\"min\":\"10\",\"max\":\"100000\",\"rate\":\"13.6700\",\"currency\":null}', 29, 139, '2', '1', 'IGTV Likes [No Refill] [5k/Day]', '', '15.037', 10, 100000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"IGTV Likes [No Refill] [5k\\/Day]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(140, 1, 148, '2', '{\"min\":\"10\",\"max\":\"250000\",\"rate\":\"4.4700\",\"currency\":null}', 29, 140, '2', '1', 'Instagram TV Likes [Max - 100k] [HQ] [10k/day]', '', '4.917', 10, 250000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram TV Likes [Max - 100k] [HQ] [10k\\/day]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(141, 1, 149, '2', '{\"min\":\"10\",\"max\":\"30000\",\"rate\":\"16.4400\",\"currency\":null}', 29, 141, '2', '1', 'IGTV Supper Power Likes + Random [Imp + Reach] [Power Likes] [Non Drop]', '', '18.084', 10, 30000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"IGTV Supper Power Likes + Random [Imp + Reach] [Power Likes] [Non Drop]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(142, 1, 150, '2', '{\"min\":\"100\",\"max\":\"100000000\",\"rate\":\"13.4200\",\"currency\":null}', 29, 142, '2', '1', 'Instagram TV Views [ Max - 1M ] INSTANT', '', '14.762', 100, 100000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram TV Views [ Max - 1M ] INSTANT\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(143, 1, 151, '2', '{\"min\":\"50\",\"max\":\"200000\",\"rate\":\"5.8800\",\"currency\":null}', 29, 143, '2', '1', 'IG TV Likes [Non Drop] [R30] [Start: 0-15 Mins]', '', '6.468', 50, 200000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"IG TV Likes [Non Drop] [R30] [Start: 0-15 Mins]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(144, 1, 152, '2', '{\"min\":\"10\",\"max\":\"20000\",\"rate\":\"63.5800\",\"currency\":null}', 30, 144, '2', '1', 'Instagram Live Views [Max 5k] [15 Mins] [Start: Instant]', '', '69.938', 10, 20000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Live Views [Max 5k] [15 Mins] [Start: Instant]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(145, 1, 153, '2', '{\"min\":\"10\",\"max\":\"20000\",\"rate\":\"123.7900\",\"currency\":null}', 30, 145, '2', '1', 'Instagram Live Views [Max 10k] [30 Mins] [Start: Instant]', '', '136.169', 10, 20000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Live Views [Max 10k] [30 Mins] [Start: Instant]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(146, 1, 154, '2', '{\"min\":\"10\",\"max\":\"20000\",\"rate\":\"256.9800\",\"currency\":null}', 30, 146, '2', '1', 'Instagram Live Views [Max 10k] [60 Mins] [Start: Instant]', '', '282.678', 10, 20000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Live Views [Max 10k] [60 Mins] [Start: Instant]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(147, 1, 155, '2', '{\"min\":\"10\",\"max\":\"20000\",\"rate\":\"388.9400\",\"currency\":null}', 30, 147, '2', '1', 'Instagram Live Views [Max 10k] [90 Mins] [Start: Instant]', '', '427.834', 10, 20000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Live Views [Max 10k] [90 Mins] [Start: Instant]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(148, 1, 156, '2', '{\"min\":\"10\",\"max\":\"20000\",\"rate\":\"505.5500\",\"currency\":null}', 30, 148, '2', '1', 'Instagram Live Views [Max 10k] [120 Mins] [Start: Instant]', '', '556.105', 10, 20000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Live Views [Max 10k] [120 Mins] [Start: Instant]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(149, 1, 157, '2', '{\"min\":\"10\",\"max\":\"20000\",\"rate\":\"778.9700\",\"currency\":null}', 30, 149, '2', '1', 'Instagram Live Views [Max 10k] [180 Mins] [Start: Instant]', '', '856.867', 10, 20000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Live Views [Max 10k] [180 Mins] [Start: Instant]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(150, 1, 158, '2', '{\"min\":\"10\",\"max\":\"20000\",\"rate\":\"1,557.9300\",\"currency\":null}', 30, 150, '2', '1', 'Instagram Live Views [Max 10k] [360 Mins] [Start: Instant]', '', '1.1', 10, 20000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Live Views [Max 10k] [360 Mins] [Start: Instant]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(151, 1, 159, '2', '{\"min\":\"10\",\"max\":\"20000\",\"rate\":\"3,114.1100\",\"currency\":null}', 30, 151, '2', '1', 'Instagram Live Views [Max 10k] [720 Mins] [Start: Instant]', '', '3.3', 10, 20000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Live Views [Max 10k] [720 Mins] [Start: Instant]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(152, 1, 160, '2', '{\"min\":\"100\",\"max\":\"50000\",\"rate\":\"25.5900\",\"currency\":null}', 30, 152, '2', '1', 'Instagram Live Video Likes [Max 50k] [Start: Instant]', '', '28.149', 100, 50000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Live Video Likes [Max 50k] [Start: Instant]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(153, 1, 161, '2', '{\"min\":\"50\",\"max\":\"2000\",\"rate\":\"780.3000\",\"currency\":null}', 30, 153, '2', '1', 'Instagram Live Video Comments [RANDOM] Instant', '', '858.33', 50, 2000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Live Video Comments [RANDOM] Instant\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(154, 1, 162, '2', '{\"min\":\"10\",\"max\":\"1000000\",\"rate\":\"6.0700\",\"currency\":null}', 31, 154, '2', '1', 'Instagram Post/Video/Reel Saves [Max - 1M] [Start: 0-5 Mins] ⚡', '', '6.677', 10, 1000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Post\\/Video\\/Reel Saves [Max - 1M] [Start: 0-5 Mins] \\u26a1\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(155, 1, 163, '2', '{\"min\":\"100\",\"max\":\"5000000\",\"rate\":\"14.6800\",\"currency\":null}', 31, 155, '2', '1', 'Instagram Profile Visits [Start Time: Instant] [Superfast] 🔥', '', '16.148', 100, 5000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Profile Visits [Start Time: Instant] [Superfast] \\ud83d\\udd25\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(156, 1, 164, '2', '{\"min\":\"10\",\"max\":\"200000\",\"rate\":\"5.8400\",\"currency\":null}', 31, 156, '2', '1', 'Instagram Post Reach And Impression [Non Drop] [100k/day]', '', '6.424', 10, 200000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Post Reach And Impression [Non Drop] [100k\\/day]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(157, 1, 165, '2', '{\"min\":\"100\",\"max\":\"10000000\",\"rate\":\"2.6300\",\"currency\":null}', 31, 157, '2', '1', 'Instagram Post Shares [Max 1M] [Non Drop] [Start: Instant] ⚡🔥', '', '2.893', 100, 10000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Post Shares [Max 1M] [Non Drop] [Start: Instant] \\u26a1\\ud83d\\udd25\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(158, 1, 166, '2', '{\"min\":\"100\",\"max\":\"100000\",\"rate\":\"8.0400\",\"currency\":null}', 31, 158, '2', '1', 'Instagram Post Shares [Max 5M] [Non Drop] [Start: Instant]', '', '8.844', 100, 100000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Post Shares [Max 5M] [Non Drop] [Start: Instant]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(159, 1, 167, '2', '{\"min\":\"100\",\"max\":\"100000000\",\"rate\":\"10.0100\",\"currency\":null}', 32, 159, '2', '11', 'Instagram Auto Views [Start Time: Instant]', '', '11.011', 100, 100000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Auto Views [Start Time: Instant]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(160, 1, 168, '2', '{\"min\":\"50\",\"max\":\"200000\",\"rate\":\"5.0000\",\"currency\":null}', 32, 160, '2', '11', 'Instagram Auto Likes [R365] [Non Drop] [100k-200k/Day] [Start: Instant]', '', '5.5', 50, 200000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Auto Likes [R365] [Non Drop] [100k-200k\\/Day] [Start: Instant]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(161, 1, 169, '2', '{\"min\":\"10\",\"max\":\"70000\",\"rate\":\"6.2400\",\"currency\":null}', 32, 161, '2', '11', 'Instagram Auto Likes [Max - 100k] [R30] [Non Drop]', '', '6.864', 10, 70000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Auto Likes [Max - 100k] [R30] [Non Drop]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(162, 1, 170, '2', '{\"min\":\"20\",\"max\":\"50000\",\"rate\":\"6.5200\",\"currency\":null}', 32, 162, '2', '11', 'Instagram Auto Likes [Super High Quality] [Real] [R30] [Non Drop]', '', '7.172', 20, 50000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Auto Likes [Super High Quality] [Real] [R30] [Non Drop]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(163, 1, 171, '2', '{\"min\":\"10\",\"max\":\"10000\",\"rate\":\"328.7400\",\"currency\":null}', 33, 163, '2', '1', 'Instagram Followers [Turkey 🇹🇷 - Female] [High Quality] [R30] [10k/Day]', '', '361.614', 10, 10000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Followers [Turkey \\ud83c\\uddf9\\ud83c\\uddf7 - Female] [High Quality] [R30] [10k\\/Day]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(164, 1, 172, '2', '{\"min\":\"10\",\"max\":\"100000\",\"rate\":\"27.5000\",\"currency\":null}', 34, 164, '2', '1', '🇮🇳Instagram Likes [100% Indian Real Profiles] [HQ] [Lifetime Refill] [Non Drop] [50k/day]⭐', '', '30.25', 10, 100000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"\\ud83c\\uddee\\ud83c\\uddf3Instagram Likes [100% Indian Real Profiles] [HQ] [Lifetime Refill] [Non Drop] [50k\\/day]\\u2b50\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(165, 1, 173, '2', '{\"min\":\"10\",\"max\":\"100000\",\"rate\":\"11.7100\",\"currency\":null}', 34, 165, '2', '1', 'Instagram Likes [Indian Majority] [HQ] [Non Drop] [R365] [50k-60k/day]', '', '12.881', 10, 100000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Likes [Indian Majority] [HQ] [Non Drop] [R365] [50k-60k\\/day]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(166, 1, 174, '2', '{\"min\":\"10\",\"max\":\"100000\",\"rate\":\"11.7100\",\"currency\":null}', 34, 166, '2', '1', 'Instagram Likes [Indian Majority] [HQ] [No Refill] [20k-30k/day] [Instant]', '', '12.881', 10, 100000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Likes [Indian Majority] [HQ] [No Refill] [20k-30k\\/day] [Instant]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(167, 1, 175, '2', '{\"min\":\"10\",\"max\":\"1500000\",\"rate\":\"16.9300\",\"currency\":null}', 34, 167, '2', '1', 'Instagram Likes [Indian Mixed] [Max 15k] [R30] [Non Drop] [10k-15k/day]', '', '18.623', 10, 1500000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Likes [Indian Mixed] [Max 15k] [R30] [Non Drop] [10k-15k\\/day]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(168, 1, 176, '2', '{\"min\":\"50\",\"max\":\"100000\",\"rate\":\"18.9900\",\"currency\":null}', 34, 168, '2', '1', '🇮🇳Instagram Likes [Mostly Real Indian] [R30] [Non Drop] [100k/day] 🔥', '', '20.889', 50, 100000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"\\ud83c\\uddee\\ud83c\\uddf3Instagram Likes [Mostly Real Indian] [R30] [Non Drop] [100k\\/day] \\ud83d\\udd25\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(169, 1, 177, '2', '{\"min\":\"20\",\"max\":\"10000\",\"rate\":\"44.7500\",\"currency\":null}', 34, 169, '2', '1', '🇮🇳Instagram Likes [70-80% Real Indian] [R30] [Non Drop] [20k/day] [Instant] ⭐', '', '49.225', 20, 10000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"\\ud83c\\uddee\\ud83c\\uddf3Instagram Likes [70-80% Real Indian] [R30] [Non Drop] [20k\\/day] [Instant] \\u2b50\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(170, 1, 178, '2', '{\"min\":\"50\",\"max\":\"100000\",\"rate\":\"13.0400\",\"currency\":null}', 34, 170, '2', '1', '🇮🇳Instagram Likes [Many Real Indian Profiles] [No Refill] [10k-20k/day] [Instant] 🔥', '', '14.344', 50, 100000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"\\ud83c\\uddee\\ud83c\\uddf3Instagram Likes [Many Real Indian Profiles] [No Refill] [10k-20k\\/day] [Instant] \\ud83d\\udd25\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(171, 1, 179, '2', '{\"min\":\"10\",\"max\":\"70000\",\"rate\":\"56.2500\",\"currency\":null}', 34, 171, '2', '1', '🇮🇳Instagram Likes [Indian] [High Quality] [Lifetime Guarantee] [10k-30k/day]', '', '61.875', 10, 70000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"\\ud83c\\uddee\\ud83c\\uddf3Instagram Likes [Indian] [High Quality] [Lifetime Guarantee] [10k-30k\\/day]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(172, 1, 180, '2', '{\"min\":\"10\",\"max\":\"3000\",\"rate\":\"28.8400\",\"currency\":null}', 34, 172, '2', '1', '🇮🇳Instagram Likes [Indian Females 👩🏻] [Max 3k] [R365] [Start Time: Instant]', '', '31.724', 10, 3000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"\\ud83c\\uddee\\ud83c\\uddf3Instagram Likes [Indian Females \\ud83d\\udc69\\ud83c\\udffb] [Max 3k] [R365] [Start Time: Instant]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(173, 1, 181, '2', '{\"min\":\"10\",\"max\":\"50000\",\"rate\":\"114.5000\",\"currency\":null}', 34, 173, '2', '1', 'Instagram VIP Likes [ 🇮🇳Indian] [Real Users] [Non Drop] [3k-5k/day]', '', '125.95', 10, 50000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram VIP Likes [ \\ud83c\\uddee\\ud83c\\uddf3Indian] [Real Users] [Non Drop] [3k-5k\\/day]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(174, 1, 182, '2', '{\"min\":\"10\",\"max\":\"30000\",\"rate\":\"59.0800\",\"currency\":null}', 34, 174, '2', '1', '🇮🇳Instagram Likes [100% Indian Profiles 🇮🇳] [Real Majority] [Non Drop] [Start: Instant] 🔥', '', '64.988', 10, 30000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"\\ud83c\\uddee\\ud83c\\uddf3Instagram Likes [100% Indian Profiles \\ud83c\\uddee\\ud83c\\uddf3] [Real Majority] [Non Drop] [Start: Instant] \\ud83d\\udd25\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(175, 1, 183, '2', '{\"min\":\"10\",\"max\":\"100000\",\"rate\":\"24.1600\",\"currency\":null}', 34, 175, '2', '1', 'Instagram Likes [100% Real Indian 👥🇮🇳] [R365] [Non Drop] [50k-100k/day] ⭐💥', '', '26.576', 10, 100000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Likes [100% Real Indian \\ud83d\\udc65\\ud83c\\uddee\\ud83c\\uddf3] [R365] [Non Drop] [50k-100k\\/day] \\u2b50\\ud83d\\udca5\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(176, 1, 185, '2', '{\"min\":\"10\",\"max\":\"1000000\",\"rate\":\"339.1900\",\"currency\":null}', 35, 176, '2', '1', '🇮🇳Instagram Followers [Real Indian] [Lifetime Guarantee] [Less Drop] [30k-50k/Day] [Flag Must Off] ⭐🔥', '', '373.109', 10, 1000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"\\ud83c\\uddee\\ud83c\\uddf3Instagram Followers [Real Indian] [Lifetime Guarantee] [Less Drop] [30k-50k\\/Day] [Flag Must Off] \\u2b50\\ud83d\\udd25\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(177, 1, 186, '2', '{\"min\":\"100\",\"max\":\"50000\",\"rate\":\"173.7400\",\"currency\":null}', 35, 177, '2', '1', '🇮🇳Instagram Followers [Indian 🇮🇳] [Real Mixed] [R365] [Less Drop] [300-1k/day]', '', '191.114', 100, 50000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"\\ud83c\\uddee\\ud83c\\uddf3Instagram Followers [Indian \\ud83c\\uddee\\ud83c\\uddf3] [Real Mixed] [R365] [Less Drop] [300-1k\\/day]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(178, 1, 187, '2', '{\"min\":\"10\",\"max\":\"1000000\",\"rate\":\"372.0100\",\"currency\":null}', 35, 178, '2', '1', 'Instagram Followers [Real Mixed] [Indian Majority🇮🇳] [R365] [Less Drops] [Superfast ⚡] [100k/day]', '', '409.211', 10, 1000000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Followers [Real Mixed] [Indian Majority\\ud83c\\uddee\\ud83c\\uddf3] [R365] [Less Drops] [Superfast \\u26a1] [100k\\/day]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(179, 1, 188, '2', '{\"min\":\"100\",\"max\":\"50000\",\"rate\":\"171.5600\",\"currency\":null}', 35, 179, '2', '1', '🇮🇳Instagram Real Indian Active Followers [R30] [2k-5k/day] 🔥', '', '188.716', 100, 50000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"\\ud83c\\uddee\\ud83c\\uddf3Instagram Real Indian Active Followers [R30] [2k-5k\\/day] \\ud83d\\udd25\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(180, 1, 189, '2', '{\"min\":\"100\",\"max\":\"50000\",\"rate\":\"128.5800\",\"currency\":null}', 35, 180, '2', '1', 'Instagram Followers [R30] [Indian🇮🇳] [Many Real With Stories] [Start: Instant] ⭐', '', '141.438', 100, 50000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Followers [R30] [Indian\\ud83c\\uddee\\ud83c\\uddf3] [Many Real With Stories] [Start: Instant] \\u2b50\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(181, 1, 190, '2', '{\"min\":\"50\",\"max\":\"20000\",\"rate\":\"14.1500\",\"currency\":null}', 35, 181, '2', '1', 'Instagram Story Views [100% Real Indian] [Real And Active] [Only Username] 🔥', '', '15.565', 50, 20000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Story Views [100% Real Indian] [Real And Active] [Only Username] \\ud83d\\udd25\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(182, 1, 192, '2', '{\"min\":\"100\",\"max\":\"100000\",\"rate\":\"189.2900\",\"currency\":null}', 35, 182, '2', '1', '🇮🇳 Instagram Followers [INDIAN Majority] [High Quality] [No Refill] [2k/day] 🤩', '', '208.219', 100, 100000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"\\ud83c\\uddee\\ud83c\\uddf3 Instagram Followers [INDIAN Majority] [High Quality] [No Refill] [2k\\/day] \\ud83e\\udd29\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(183, 1, 193, '2', '{\"min\":\"100\",\"max\":\"500000\",\"rate\":\"495.9600\",\"currency\":null}', 35, 183, '2', '1', 'Instagram Followers [Real - HQ] [Indian Majority] [No Refill] [20k-30k/day]', '', '545.556', 100, 500000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Followers [Real - HQ] [Indian Majority] [No Refill] [20k-30k\\/day]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(184, 1, 194, '2', '{\"min\":\"10\",\"max\":\"250000\",\"rate\":\"301.2000\",\"currency\":null}', 35, 184, '2', '1', 'Instagram Followers [Indian] [Real - HQ] [No Refill] [1k-2k/day] [Start: 0-5 Mins]', '', '331.32', 10, 250000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Followers [Indian] [Real - HQ] [No Refill] [1k-2k\\/day] [Start: 0-5 Mins]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(185, 1, 195, '2', '{\"min\":\"100000\",\"max\":\"100000\",\"rate\":\"123.7500\",\"currency\":null}', 35, 185, '2', '1', '~~~~~~~~~~~~~~~~~~~~~~~', '', '136.125', 100000, 100000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"~~~~~~~~~~~~~~~~~~~~~~~\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(186, 1, 196, '2', '{\"min\":\"10\",\"max\":\"5000\",\"rate\":\"71.5700\",\"currency\":null}', 35, 186, '2', '1', '🇮🇳 Instagram Story Views + Likes [100% Real Indian] [0-1 hour]', '', '78.727', 10, 5000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"\\ud83c\\uddee\\ud83c\\uddf3 Instagram Story Views + Likes [100% Real Indian] [0-1 hour]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(187, 1, 197, '2', '{\"min\":\"100\",\"max\":\"2147483647\",\"rate\":\"41.6700\",\"currency\":null}', 35, 187, '2', '1', 'Instagram Video Views + Imp [INDIAN] Start 0-1 Hr', '', '45.837', 100, 2147483647, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"Instagram Video Views + Imp [INDIAN] Start 0-1 Hr\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0'),
(188, 1, 198, '2', '{\"min\":\"10\",\"max\":\"30000\",\"rate\":\"18.0700\",\"currency\":null}', 35, 188, '2', '1', 'IGTV Likes [No Refill] [India Mixed] [Less Drop]', '', '19.877', 10, 30000, '1', 0, 0, '1', '1', '2', 'normal', NULL, '2', 'none', '1', '{\"en\":\"IGTV Likes [No Refill] [India Mixed] [Less Drop]\"}', '{\"en\":\"\"}', 'Not enough data', 'Not enough data', '2', 'false', '', '30', '24', 0, 0, 0, 0, 10, 0, '1', '0');

-- --------------------------------------------------------

--
-- Table structure for table `service_api`
--

CREATE TABLE `service_api` (
  `id` int NOT NULL,
  `api_name` varchar(225) NOT NULL,
  `api_url` text NOT NULL,
  `api_key` varchar(225) NOT NULL,
  `api_type` int NOT NULL,
  `api_limit` double NOT NULL DEFAULT '0',
  `currency` varchar(200) DEFAULT NULL,
  `api_alert` enum('1','2') NOT NULL DEFAULT '2' COMMENT '2 -> Gönder, 1 -> Gönderildi',
  `status` enum('1','2') NOT NULL DEFAULT '2',
  `api_sync` enum('0','1') NOT NULL DEFAULT '1',
  `api_login_credentials` varchar(255) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `service_api`
--

INSERT INTO `service_api` (`id`, `api_name`, `api_url`, `api_key`, `api_type`, `api_limit`, `currency`, `api_alert`, `status`, `api_sync`, `api_login_credentials`) VALUES
(1, 'aapkasmmstore.space', 'https://aapkasmmstore.space/api/v2', '1770b24ae28a1516363dcdc90335d58f', 1, 0, NULL, '1', '2', '1', '{\"username\":\"\",\"password\":\"\"}');

-- --------------------------------------------------------

--
-- Table structure for table `settings`
--

CREATE TABLE `settings` (
  `id` int NOT NULL,
  `site_seo` text NOT NULL,
  `site_title` text,
  `site_description` text,
  `site_keywords` text,
  `site_logo` text,
  `site_name` text,
  `site_currency` varchar(2555) NOT NULL DEFAULT 'try',
  `site_base_currency` varchar(20) DEFAULT NULL,
  `site_currency_converter` tinyint(1) NOT NULL DEFAULT '0',
  `site_update_rates_automatically` int NOT NULL DEFAULT '0',
  `last_updated_currency_rates` datetime DEFAULT NULL,
  `favicon` text,
  `site_language` varchar(225) NOT NULL DEFAULT 'tr',
  `site_theme` text NOT NULL,
  `site_theme_alt` text,
  `recaptcha` enum('1','2') NOT NULL DEFAULT '1',
  `recaptcha_key` text,
  `recaptcha_secret` text,
  `custom_header` text,
  `custom_footer` text,
  `ticket_system` enum('1','2') NOT NULL DEFAULT '2',
  `register_page` enum('1','2') NOT NULL DEFAULT '2',
  `service_speed` enum('1','2') NOT NULL,
  `service_list` enum('1','2') NOT NULL,
  `dolar_charge` double NOT NULL,
  `euro_charge` double NOT NULL,
  `smtp_user` text NOT NULL,
  `smtp_pass` text NOT NULL,
  `smtp_server` text NOT NULL,
  `smtp_port` varchar(225) NOT NULL,
  `smtp_protocol` enum('0','ssl','tls') NOT NULL,
  `alert_type` enum('1','2','3') NOT NULL,
  `alert_apimail` enum('1','2') NOT NULL,
  `alert_newmanuelservice` enum('1','2') NOT NULL,
  `alert_newticket` enum('1','2') NOT NULL,
  `alert_apibalance` enum('1','2') NOT NULL,
  `alert_serviceapialert` enum('1','2') NOT NULL,
  `sms_provider` varchar(225) NOT NULL,
  `sms_title` varchar(225) NOT NULL,
  `sms_user` varchar(225) NOT NULL,
  `sms_pass` varchar(225) NOT NULL,
  `sms_validate` enum('0','1') NOT NULL DEFAULT '0' COMMENT '1 -> OK, 0 -> NO',
  `admin_mail` varchar(225) NOT NULL,
  `admin_telephone` varchar(225) NOT NULL,
  `resetpass_page` enum('1','2') NOT NULL,
  `resetpass_sms` enum('1','2') NOT NULL,
  `resetpass_email` enum('1','2') NOT NULL,
  `site_maintenance` enum('1','2') NOT NULL DEFAULT '2',
  `servis_siralama` varchar(255) NOT NULL,
  `bronz_statu` int NOT NULL,
  `silver_statu` int NOT NULL,
  `gold_statu` int NOT NULL,
  `bayi_statu` int NOT NULL,
  `child_panel_nameservers` varchar(255) NOT NULL DEFAULT '{"ns1":"ns1.scriptlux.com","ns2":"ns2.scriptlux.com"}',
  `childpanel_price` double DEFAULT NULL,
  `snow_effect` enum('1','2') NOT NULL DEFAULT '2',
  `snow_colour` text NOT NULL,
  `promotion` enum('1','2') DEFAULT '2',
  `referral_commision` double NOT NULL,
  `referral_payout` double NOT NULL,
  `referral_status` enum('1','2') NOT NULL DEFAULT '1',
  `childpanel_selling` enum('1','2') NOT NULL DEFAULT '1' COMMENT '1 -> OFF , 2 -> ON',
  `tickets_per_user` double NOT NULL DEFAULT '5',
  `name_fileds` enum('1','2') NOT NULL DEFAULT '1' COMMENT '1 -> ON, 2 -> NO',
  `skype_feilds` enum('1','2') NOT NULL DEFAULT '1' COMMENT '1 -> ON, 2 -> NO',
  `otp_login` enum('1','2','0') NOT NULL DEFAULT '0',
  `auto_deactivate_payment` enum('1','2') NOT NULL DEFAULT '1',
  `service_avg_time` enum('1','0') NOT NULL DEFAULT '0',
  `alert_orderfail` enum('1','2') NOT NULL DEFAULT '2',
  `alert_welcomemail` enum('1','2') NOT NULL DEFAULT '2',
  `freebalance` enum('1','2') NOT NULL DEFAULT '1',
  `freeamount` double DEFAULT '0',
  `alert_newmessage` enum('1','2') NOT NULL DEFAULT '1',
  `email_confirmation` enum('1','2') NOT NULL DEFAULT '2',
  `resend_max` int NOT NULL,
  `status` varchar(255) NOT NULL DEFAULT '1',
  `fundstransfer_fees` varchar(10) NOT NULL,
  `permissions` text,
  `fake_order_service_enabled` tinyint(1) NOT NULL DEFAULT '0',
  `fake_order_min` int DEFAULT NULL,
  `fake_order_max` int DEFAULT NULL,
  `panel_orders` int DEFAULT NULL,
  `panel_orders_pattern` varchar(255) NOT NULL DEFAULT '{"panel_orders_prefix":"","panel_orders_suffix":""}',
  `downloaded_category_icons` tinyint(1) NOT NULL DEFAULT '0',
  `summary_card_background_color` varchar(100) DEFAULT 'theme_colour',
  `google_login` varchar(100) NOT NULL DEFAULT '{"purchased":"1","status":"1"}',
  `services_average_time` tinyint(1) NOT NULL DEFAULT '1'
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `settings`
--

INSERT INTO `settings` (`id`, `site_seo`, `site_title`, `site_description`, `site_keywords`, `site_logo`, `site_name`, `site_currency`, `site_base_currency`, `site_currency_converter`, `site_update_rates_automatically`, `last_updated_currency_rates`, `favicon`, `site_language`, `site_theme`, `site_theme_alt`, `recaptcha`, `recaptcha_key`, `recaptcha_secret`, `custom_header`, `custom_footer`, `ticket_system`, `register_page`, `service_speed`, `service_list`, `dolar_charge`, `euro_charge`, `smtp_user`, `smtp_pass`, `smtp_server`, `smtp_port`, `smtp_protocol`, `alert_type`, `alert_apimail`, `alert_newmanuelservice`, `alert_newticket`, `alert_apibalance`, `alert_serviceapialert`, `sms_provider`, `sms_title`, `sms_user`, `sms_pass`, `sms_validate`, `admin_mail`, `admin_telephone`, `resetpass_page`, `resetpass_sms`, `resetpass_email`, `site_maintenance`, `servis_siralama`, `bronz_statu`, `silver_statu`, `gold_statu`, `bayi_statu`, `child_panel_nameservers`, `childpanel_price`, `snow_effect`, `snow_colour`, `promotion`, `referral_commision`, `referral_payout`, `referral_status`, `childpanel_selling`, `tickets_per_user`, `name_fileds`, `skype_feilds`, `otp_login`, `auto_deactivate_payment`, `service_avg_time`, `alert_orderfail`, `alert_welcomemail`, `freebalance`, `freeamount`, `alert_newmessage`, `email_confirmation`, `resend_max`, `status`, `fundstransfer_fees`, `permissions`, `fake_order_service_enabled`, `fake_order_min`, `fake_order_max`, `panel_orders`, `panel_orders_pattern`, `downloaded_category_icons`, `summary_card_background_color`, `google_login`, `services_average_time`) VALUES
(1, 'Grow World ', 'Grow World', 'Grow World is the Best and Cheap SMM Panel for Instagram, Tiktok, Facebook, Youtube and Twitter. Buy IG Reels views and Followers, Buy Instagram Likes, Views and Comments, Buy TikTok Likes and Followers, Buy Facebook Likes and Comments, Buy Youtube Likes, Views and Subscribers.', 'Grow World,smm panel,smmpanel,SMM Panel India,SMM Panel Paytm,SMM Panel Cheap India,SMM Reseller Panel,SMM Reseller Panel India,Cheap SMM Panel,cheapest SMM panel,cheap SMM panel india,Cheapest SMM Reseller Panel,Cheapest SMM Panel Paytm,Cheapest SMM Panel Paytm,indian smm panel,IndianSMM Reseller Panel,Best SMM panel,Best SMM Panel India,Top SMM Panel', '', 'Grow World', '', 'INR', 1, 1, '2025-02-03 13:53:08', '', 'en', 'TechSMM', 'green', '1', '', '', '', '', '1', '2', '1', '2', 0, 0, 'support@aapkasmmstore.space', 'Sanjit', 'aapkasmmstore.space', '465', 'ssl', '2', '2', '2', '2', '2', '2', 'bizimsms', '', '', '', '1', 'support@aapkasmmstore.space', '', '2', '1', '2', '2', 'asc', 0, 0, 0, 0, '{\"ns1\":\"ns1.sketchleader.com\",\"ns2\":\"ns2.sketchleader.com\"}', 499, '', '', '1', 5, 100, '2', '2', 9999999999, '1', '1', '0', '1', '1', '2', '2', '1', 0, '2', '2', 2, '0', '3', '{\"admin access\":{\"admin_access\":{\"name\":\"Admin Access\",\"value\":\"admin_access\"}},\"pages\":{\"users\":{\"name\":\"Users\",\"value\":\"users\"},\"services\":{\"name\":\"Services\",\"value\":\"services\"},\"update-prices\":{\"name\":\"Update Prices\",\"value\":\"update-prices\"},\"bulk\":{\"name\":\"Bulk Services Editor\",\"value\":\"bulk\"},\"bulkc\":{\"name\":\"Bulk Category Editor\",\"value\":\"services\"},\"synced-logs\":{\"name\":\"Seller Sync Logs\",\"value\":\"synced-logs\"},\"orders\":{\"name\":\"Orders\",\"value\":\"orders\"},\"subscriptions\":{\"name\":\"Subscriptions\",\"value\":\"subscriptions\"},\"dripfeed\":{\"name\":\"Dripfeed\",\"value\":\"dripfeed\"},\"tasks\":{\"name\":\"Order Refill and Cancel Tasks\",\"value\":\"tasks\"},\"payments\":{\"name\":\"Payments\",\"value\":\"payments\"},\"tickets\":{\"name\":\"Tickets\",\"value\":\"tickets\"}},\"additionals\":{\"additionals\":{\"name\":\"Additionals\",\"value\":\"additionals\"},\"referral\":{\"name\":\"Affiliates\",\"value\":\"referral\"},\"broadcast\":{\"name\":\"Broadcasts\",\"value\":\"broadcast\"},\"logs\":{\"name\":\"Panel Logs\",\"value\":\"logs\"},\"reports\":{\"name\":\"Reports\",\"value\":\"reports\"},\"videop\":{\"name\":\"Promotion\",\"value\":\"videop\"},\"coupon\":{\"name\":\"Coupons\",\"value\":\"coupon\"},\"child-panels\":{\"name\":\"Child Panels\",\"value\":\"child-panels\"},\"updates\":{\"name\":\"Updates\",\"value\":\"updates\"}},\"appearance\":{\"appearance\":{\"name\":\"Appearance\",\"value\":\"appearance\"},\"themes\":{\"name\":\"Themes\",\"value\":\"themes\"},\"new_year\":{\"name\":\"New Year\",\"value\":\"new_year\"},\"pages\":{\"name\":\"Pages\",\"value\":\"pages\"},\"news\":{\"name\":\"Announcements\",\"value\":\"news\"},\"meta\":{\"name\":\"Meta (SEO) Settings\",\"value\":\"meta\"},\"blog\":{\"name\":\"Blogs\",\"value\":\"blog\"},\"menu\":{\"name\":\"Menu\",\"value\":\"menu\"},\"inte\":{\"name\":\"Integrations\",\"value\":\"inte\"},\"language\":{\"name\":\"Languages\",\"value\":\"language\"},\"files\":{\"name\":\"Uploaded Images\",\"value\":\"files\"}},\"settings\":{\"settings\":{\"name\":\"Settings\",\"value\":\"settings\"},\"general_settings\":{\"name\":\"General Settings\",\"value\":\"general_settings\"},\"providers\":{\"name\":\"Sellers\",\"value\":\"providers\"},\"payments_settings\":{\"name\":\"Payment Methods\",\"value\":\"payments_settings\"},\"bank_accounts\":{\"name\":\"Bank Accounts\",\"value\":\"bank_accounts\"},\"modules\":{\"name\":\"Modules\",\"value\":\"modules\"},\"subject\":{\"name\":\"Support Settings\",\"value\":\"subject\"},\"payments_bonus\":{\"name\":\"Payment Bonuses\",\"value\":\"payments_bonus\"},\"currency-manager\":{\"name\":\"Site Currency Manager\",\"value\":\"currency-manager\"},\"alert_settings\":{\"name\":\"Notification Settings\",\"value\":\"alert_settings\"},\"site_count\":{\"name\":\"Fake Orders\",\"value\":\"site_count\"},\"manager\":{\"name\":\"Manager\",\"value\":\"manager\"}}}', 0, 1, 3, 2, '{\"panel_orders_prefix\":\"\",\"panel_orders_suffix\":\"\"}', 0, 'theme_colour', '{\"purchased\":\"1\",\"status\":\"1\"}', 0);

-- --------------------------------------------------------

--
-- Table structure for table `sync_logs`
--

CREATE TABLE `sync_logs` (
  `id` int NOT NULL,
  `service_id` int NOT NULL,
  `action` varchar(225) NOT NULL,
  `date` datetime NOT NULL,
  `description` varchar(225) NOT NULL,
  `api_id` int NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `sync_logs`
--

INSERT INTO `sync_logs` (`id`, `service_id`, `action`, `date`, `description`, `api_id`) VALUES
(1, 110, 'SERVICE PRICE UPDATED', '2025-02-03 13:36:28', 'Service rate changed from <b>₹ 216.63</b> to <b>₹ 216.58</b>', 1),
(2, 108, 'SERVICE PRICE UPDATED', '2025-02-03 13:41:26', 'Service rate changed from <b>₹ 17.53</b> to <b>₹ 17.67</b>', 1);

-- --------------------------------------------------------

--
-- Table structure for table `tasks`
--

CREATE TABLE `tasks` (
  `task_id` int NOT NULL,
  `client_id` int DEFAULT NULL,
  `order_id` int DEFAULT NULL,
  `service_id` int DEFAULT NULL,
  `task_api` int DEFAULT NULL,
  `task_type` varchar(225) DEFAULT NULL,
  `task_status` varchar(225) DEFAULT 'pending',
  `task_response` text,
  `task_created_at` datetime DEFAULT NULL,
  `task_updated_at` datetime DEFAULT NULL,
  `task_by` text,
  `check_refill_status` int DEFAULT NULL,
  `refill_orderid` varchar(225) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

-- --------------------------------------------------------

--
-- Table structure for table `themes`
--

CREATE TABLE `themes` (
  `id` int NOT NULL,
  `theme_name` text NOT NULL,
  `theme_dirname` text NOT NULL,
  `theme_extras` text NOT NULL,
  `last_modified` datetime NOT NULL,
  `newpage` text NOT NULL,
  `colour` enum('1','2') NOT NULL DEFAULT '1'
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `themes`
--

INSERT INTO `themes` (`id`, `theme_name`, `theme_dirname`, `theme_extras`, `last_modified`, `newpage`, `colour`) VALUES
(1, 'Simplify', 'Simplify', '', '2022-11-16 09:28:01', '{% include \'header.twig\' %}\r\n	<br><br><br>\r\n	\r\n	<div class=\"container-fluid container-fluid-spacious\">\r\n		<div class=\"row\">\r\n			<div class=\"col-md-12\">\r\n			{% if contentText %}\r\n{{ contentText }}\r\n{% endif %}\r\n				{% if contentText2 %}\r\n{{ contentText2 }}\r\n{% endif %}\r\n				\r\n			</div>\r\n		</div>\r\n	</div>\r\n   \r\n      \r\n        \r\n   ', '2'),
(4, 'Eternity', 'Eternity', '', '0000-00-00 00:00:00', '', '2'),
(2, 'Clementine', 'pitchy', '{\"stylesheets\":[\"public/pitchy/bootstrap.css\",\"public/pitchy/black.css\",\"https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css\",\"public/datepicker/css/bootstrap-datepicker3.min.css\"],\"scripts\":[\"https://code.jquery.com/jquery-3.3.1.min.js\",\"public/pitchy/js/script.js\",\"public/pitchy/js/snowfall.min.js\",\"public/pitchy/js/bundle.js\",\"public/pitchy/js/main.js\",\"public/ajax.js\",\"public/datepicker/js/bootstrap-datepicker.min.js\"]}', '2022-11-21 09:29:47', '', '2'),
(5, 'X Blur', 'xblur', '', '2023-11-07 09:29:47', '', '1'),
(9, 'TechSMM', 'TechSMM', '', '2024-07-03 06:45:09', '', '1');

-- --------------------------------------------------------

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

CREATE TABLE `tickets` (
  `ticket_id` int NOT NULL,
  `client_id` int NOT NULL,
  `subject` varchar(225) NOT NULL,
  `time` datetime NOT NULL,
  `lastupdate_time` datetime NOT NULL,
  `client_new` enum('1','2') NOT NULL DEFAULT '2',
  `status` enum('pending','answered','closed') NOT NULL DEFAULT 'pending',
  `support_new` enum('1','2') NOT NULL DEFAULT '1',
  `canmessage` enum('1','2') NOT NULL DEFAULT '2'
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;

-- --------------------------------------------------------

--
-- Table structure for table `ticket_reply`
--

CREATE TABLE `ticket_reply` (
  `id` int NOT NULL,
  `ticket_id` int NOT NULL,
  `client_id` int NOT NULL,
  `time` datetime NOT NULL,
  `support` enum('1','2') NOT NULL DEFAULT '1',
  `message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
  `readed` enum('1','2') NOT NULL DEFAULT '1'
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb3;

-- --------------------------------------------------------

--
-- Table structure for table `ticket_subjects`
--

CREATE TABLE `ticket_subjects` (
  `subject_id` int NOT NULL,
  `subject` varchar(225) NOT NULL,
  `content` text,
  `auto_reply` enum('0','1') NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 ROW_FORMAT=COMPACT;

--
-- Dumping data for table `ticket_subjects`
--

INSERT INTO `ticket_subjects` (`subject_id`, `subject`, `content`, `auto_reply`) VALUES
(1, 'Order', '', '0'),
(2, 'Payment', '', '0'),
(4, 'Complaint & Suggestion', '', '0'),
(6, 'Others', 'You will be answered within minutes', '1');

-- --------------------------------------------------------

--
-- Table structure for table `units_per_page`
--

CREATE TABLE `units_per_page` (
  `id` int NOT NULL,
  `unit` int NOT NULL,
  `page` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `units_per_page`
--

INSERT INTO `units_per_page` (`id`, `unit`, `page`) VALUES
(1, 50, 'clients'),
(2, 50, 'orders'),
(3, 50, 'payments'),
(4, 50, 'refill'),
(5, 50, 'bulk'),
(6, 8, 'services');

-- --------------------------------------------------------

--
-- Table structure for table `updates`
--

CREATE TABLE `updates` (
  `u_id` int NOT NULL,
  `service_id` int NOT NULL,
  `action` varchar(225) NOT NULL,
  `date` datetime NOT NULL,
  `description` varchar(225) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT 'Not enough data'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;

--
-- Dumping data for table `updates`
--

INSERT INTO `updates` (`u_id`, `service_id`, `action`, `date`, `description`) VALUES
(1, 4, 'Activated', '2025-02-03 13:29:27', 'Refill Button has been activated');

--
-- Indexes for dumped tables
--

--
-- Indexes for table `admins`
--
ALTER TABLE `admins`
  ADD PRIMARY KEY (`admin_id`);

--
-- Indexes for table `admin_constants`
--
ALTER TABLE `admin_constants`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `article`
--
ALTER TABLE `article`
  ADD PRIMARY KEY (`id`),
  ADD KEY `title` (`title`);

--
-- Indexes for table `bank_accounts`
--
ALTER TABLE `bank_accounts`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `blogs`
--
ALTER TABLE `blogs`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `bulkedit`
--
ALTER TABLE `bulkedit`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `categories`
--
ALTER TABLE `categories`
  ADD PRIMARY KEY (`category_id`);

--
-- Indexes for table `childpanels`
--
ALTER TABLE `childpanels`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `clients`
--
ALTER TABLE `clients`
  ADD PRIMARY KEY (`client_id`);

--
-- Indexes for table `clients_category`
--
ALTER TABLE `clients_category`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `clients_price`
--
ALTER TABLE `clients_price`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `clients_service`
--
ALTER TABLE `clients_service`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `client_report`
--
ALTER TABLE `client_report`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `currencies`
--
ALTER TABLE `currencies`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `decoration`
--
ALTER TABLE `decoration`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `earn`
--
ALTER TABLE `earn`
  ADD PRIMARY KEY (`earn_id`);

--
-- Indexes for table `files`
--
ALTER TABLE `files`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `General_options`
--
ALTER TABLE `General_options`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `integrations`
--
ALTER TABLE `integrations`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `kuponlar`
--
ALTER TABLE `kuponlar`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `kupon_kullananlar`
--
ALTER TABLE `kupon_kullananlar`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `languages`
--
ALTER TABLE `languages`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `Mailforms`
--
ALTER TABLE `Mailforms`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `menus`
--
ALTER TABLE `menus`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `news`
--
ALTER TABLE `news`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `notifications_popup`
--
ALTER TABLE `notifications_popup`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `orders`
--
ALTER TABLE `orders`
  ADD PRIMARY KEY (`order_id`),
  ADD KEY `order_id` (`order_id`);

--
-- Indexes for table `pages`
--
ALTER TABLE `pages`
  ADD PRIMARY KEY (`page_id`);

--
-- Indexes for table `panel_categories`
--
ALTER TABLE `panel_categories`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `panel_info`
--
ALTER TABLE `panel_info`
  ADD PRIMARY KEY (`panel_id`);

--
-- Indexes for table `paymentmethods`
--
ALTER TABLE `paymentmethods`
  ADD PRIMARY KEY (`methodId`),
  ADD KEY `methodId` (`methodId`);

--
-- Indexes for table `payments`
--
ALTER TABLE `payments`
  ADD PRIMARY KEY (`payment_id`);

--
-- Indexes for table `referral`
--
ALTER TABLE `referral`
  ADD PRIMARY KEY (`referral_id`);

--
-- Indexes for table `referral_payouts`
--
ALTER TABLE `referral_payouts`
  ADD PRIMARY KEY (`r_p_id`);

--
-- Indexes for table `serviceapi_alert`
--
ALTER TABLE `serviceapi_alert`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `services`
--
ALTER TABLE `services`
  ADD PRIMARY KEY (`service_id`);

--
-- Indexes for table `service_api`
--
ALTER TABLE `service_api`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `settings`
--
ALTER TABLE `settings`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `sync_logs`
--
ALTER TABLE `sync_logs`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `tasks`
--
ALTER TABLE `tasks`
  ADD PRIMARY KEY (`task_id`);

--
-- Indexes for table `themes`
--
ALTER TABLE `themes`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `tickets`
--
ALTER TABLE `tickets`
  ADD PRIMARY KEY (`ticket_id`);

--
-- Indexes for table `ticket_reply`
--
ALTER TABLE `ticket_reply`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `ticket_subjects`
--
ALTER TABLE `ticket_subjects`
  ADD PRIMARY KEY (`subject_id`);

--
-- Indexes for table `units_per_page`
--
ALTER TABLE `units_per_page`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `updates`
--
ALTER TABLE `updates`
  ADD PRIMARY KEY (`u_id`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `admins`
--
ALTER TABLE `admins`
  MODIFY `admin_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=35;

--
-- AUTO_INCREMENT for table `article`
--
ALTER TABLE `article`
  MODIFY `id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `bank_accounts`
--
ALTER TABLE `bank_accounts`
  MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `blogs`
--
ALTER TABLE `blogs`
  MODIFY `id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `bulkedit`
--
ALTER TABLE `bulkedit`
  MODIFY `id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `categories`
--
ALTER TABLE `categories`
  MODIFY `category_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=111;

--
-- AUTO_INCREMENT for table `childpanels`
--
ALTER TABLE `childpanels`
  MODIFY `id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `clients`
--
ALTER TABLE `clients`
  MODIFY `client_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `clients_category`
--
ALTER TABLE `clients_category`
  MODIFY `id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `clients_price`
--
ALTER TABLE `clients_price`
  MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=39;

--
-- AUTO_INCREMENT for table `clients_service`
--
ALTER TABLE `clients_service`
  MODIFY `id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `client_report`
--
ALTER TABLE `client_report`
  MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `currencies`
--
ALTER TABLE `currencies`
  MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15;

--
-- AUTO_INCREMENT for table `earn`
--
ALTER TABLE `earn`
  MODIFY `earn_id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `files`
--
ALTER TABLE `files`
  MODIFY `id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `General_options`
--
ALTER TABLE `General_options`
  MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `integrations`
--
ALTER TABLE `integrations`
  MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15;

--
-- AUTO_INCREMENT for table `kuponlar`
--
ALTER TABLE `kuponlar`
  MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `kupon_kullananlar`
--
ALTER TABLE `kupon_kullananlar`
  MODIFY `id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `languages`
--
ALTER TABLE `languages`
  MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `Mailforms`
--
ALTER TABLE `Mailforms`
  MODIFY `id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `menus`
--
ALTER TABLE `menus`
  MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=33;

--
-- AUTO_INCREMENT for table `news`
--
ALTER TABLE `news`
  MODIFY `id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `notifications_popup`
--
ALTER TABLE `notifications_popup`
  MODIFY `id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `orders`
--
ALTER TABLE `orders`
  MODIFY `order_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `pages`
--
ALTER TABLE `pages`
  MODIFY `page_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=913;

--
-- AUTO_INCREMENT for table `panel_categories`
--
ALTER TABLE `panel_categories`
  MODIFY `id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `panel_info`
--
ALTER TABLE `panel_info`
  MODIFY `panel_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `paymentmethods`
--
ALTER TABLE `paymentmethods`
  MODIFY `methodId` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=140;

--
-- AUTO_INCREMENT for table `payments`
--
ALTER TABLE `payments`
  MODIFY `payment_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `referral`
--
ALTER TABLE `referral`
  MODIFY `referral_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `referral_payouts`
--
ALTER TABLE `referral_payouts`
  MODIFY `r_p_id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `serviceapi_alert`
--
ALTER TABLE `serviceapi_alert`
  MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=53367;

--
-- AUTO_INCREMENT for table `services`
--
ALTER TABLE `services`
  MODIFY `service_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=189;

--
-- AUTO_INCREMENT for table `service_api`
--
ALTER TABLE `service_api`
  MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `settings`
--
ALTER TABLE `settings`
  MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `sync_logs`
--
ALTER TABLE `sync_logs`
  MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `tasks`
--
ALTER TABLE `tasks`
  MODIFY `task_id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `themes`
--
ALTER TABLE `themes`
  MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;

--
-- AUTO_INCREMENT for table `tickets`
--
ALTER TABLE `tickets`
  MODIFY `ticket_id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `ticket_reply`
--
ALTER TABLE `ticket_reply`
  MODIFY `id` int NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `ticket_subjects`
--
ALTER TABLE `ticket_subjects`
  MODIFY `subject_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `units_per_page`
--
ALTER TABLE `units_per_page`
  MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `updates`
--
ALTER TABLE `updates`
  MODIFY `u_id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
COMMIT;

/*!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 */;
